From 0e1f20f6336f4cfa53dbb5b444bbdad305d6c8dc Mon Sep 17 00:00:00 2001 From: Jonathan Hendler Date: Fri, 20 Mar 2026 22:46:28 -0700 Subject: [PATCH 1/3] don't allow null agent_id --- jacs-cli/src/main.rs | 87 ++++++---- .../docs/jacsbook/book/advanced/security.html | 8 +- .../book/getting-started/quick-start.html | 2 +- jacs/docs/jacsbook/book/print.html | 33 ++-- .../jacsbook/book/reference/cli-commands.html | 23 +-- jacs/docs/jacsbook/book/searchindex.js | 2 +- jacs/docs/jacsbook/book/searchindex.json | 2 +- jacs/docs/jacsbook/src/advanced/security.md | 8 +- .../src/getting-started/quick-start.md | 2 +- .../jacsbook/src/reference/cli-commands.md | 24 +-- jacs/src/agent/loaders.rs | 24 ++- jacs/src/agent/mod.rs | 16 +- jacs/src/cli_utils/create.rs | 25 +-- jacs/src/crypt/aes_encrypt.rs | 37 ++-- jacs/src/crypt/mod.rs | 31 ++-- jacs/src/keystore/keychain.rs | 158 ++++++++---------- jacs/src/keystore/mod.rs | 25 ++- jacs/src/simple/advanced.rs | 9 +- jacs/src/simple/core.rs | 2 +- jacs/tests/keychain_linux_tests.rs | 54 +++--- jacs/tests/keychain_macos_tests.rs | 59 +++++-- jacs/tests/security_hardening_tests.rs | 6 +- 22 files changed, 345 insertions(+), 292 deletions(-) diff --git a/jacs-cli/src/main.rs b/jacs-cli/src/main.rs index 2e9356b1..b434eb79 100644 --- a/jacs-cli/src/main.rs +++ b/jacs-cli/src/main.rs @@ -1105,10 +1105,17 @@ pub fn main() -> Result<(), Box> { #[cfg(feature = "keychain")] let matches = matches.subcommand( Command::new("keychain") - .about("Manage private key passwords in the OS keychain") + .about("Manage private key passwords in the OS keychain (per-agent)") .subcommand( Command::new("set") - .about("Store a password in the OS keychain") + .about("Store a password in the OS keychain for an agent") + .arg( + Arg::new("agent-id") + .long("agent-id") + .help("Agent ID to associate the password with") + .value_name("AGENT_ID") + .required(true), + ) .arg( Arg::new("password") .long("password") @@ -1117,13 +1124,37 @@ pub fn main() -> Result<(), Box> { ), ) .subcommand( - Command::new("get").about("Retrieve the stored password (prints to stdout)"), + Command::new("get") + .about("Retrieve the stored password for an agent (prints to stdout)") + .arg( + Arg::new("agent-id") + .long("agent-id") + .help("Agent ID to look up") + .value_name("AGENT_ID") + .required(true), + ), ) .subcommand( - Command::new("delete").about("Remove the stored password from the OS keychain"), + Command::new("delete") + .about("Remove the stored password for an agent from the OS keychain") + .arg( + Arg::new("agent-id") + .long("agent-id") + .help("Agent ID whose password to delete") + .value_name("AGENT_ID") + .required(true), + ), ) .subcommand( - Command::new("status").about("Check if a password is stored in the OS keychain"), + Command::new("status") + .about("Check if a password is stored for an agent in the OS keychain") + .arg( + Arg::new("agent-id") + .long("agent-id") + .help("Agent ID to check") + .value_name("AGENT_ID") + .required(true), + ), ) .arg_required_else_help(true), ); @@ -2092,16 +2123,8 @@ pub fn main() -> Result<(), Box> { env::set_var("JACS_PRIVATE_KEY_PASSWORD", &password); } - // Store in OS keychain so future commands "just work" - #[cfg(feature = "keychain")] - { - if jacs::keystore::keychain::is_available() { - match jacs::keystore::keychain::store_password(&password) { - Ok(()) => eprintln!("Password stored in OS keychain."), - Err(e) => eprintln!("Warning: Could not store in OS keychain: {}", e), - } - } - } + // Note: keychain storage is handled by quickstart() after agent + // creation, when the agent_id is known. } let (agent, info) = @@ -2541,6 +2564,7 @@ pub fn main() -> Result<(), Box> { match keychain_matches.subcommand() { Some(("set", sub)) => { + let agent_id = sub.get_one::("agent-id").unwrap(); let password = if let Some(pw) = sub.get_one::("password") { pw.clone() } else { @@ -2556,29 +2580,36 @@ pub fn main() -> Result<(), Box> { eprintln!("Error: {}", e); process::exit(1); } - keychain::store_password(&password)?; - eprintln!("Password stored in OS keychain."); + keychain::store_password(agent_id, &password)?; + eprintln!("Password stored in OS keychain for agent {}.", agent_id); } - Some(("get", _)) => match keychain::get_password()? { - Some(pw) => println!("{}", pw), - None => { - eprintln!("No password found in OS keychain."); - process::exit(1); + Some(("get", sub)) => { + let agent_id = sub.get_one::("agent-id").unwrap(); + match keychain::get_password(agent_id)? { + Some(pw) => println!("{}", pw), + None => { + eprintln!("No password found in OS keychain for agent {}.", agent_id); + process::exit(1); + } } - }, - Some(("delete", _)) => { - keychain::delete_password()?; - eprintln!("Password removed from OS keychain."); } - Some(("status", _)) => { + Some(("delete", sub)) => { + let agent_id = sub.get_one::("agent-id").unwrap(); + keychain::delete_password(agent_id)?; + eprintln!("Password removed from OS keychain for agent {}.", agent_id); + } + Some(("status", sub)) => { + let agent_id = sub.get_one::("agent-id").unwrap(); if keychain::is_available() { - match keychain::get_password() { + match keychain::get_password(agent_id) { Ok(Some(_)) => { eprintln!("Keychain backend: available"); + eprintln!("Agent: {}", agent_id); eprintln!("Password: stored"); } Ok(None) => { eprintln!("Keychain backend: available"); + eprintln!("Agent: {}", agent_id); eprintln!("Password: not stored"); } Err(e) => { diff --git a/jacs/docs/jacsbook/book/advanced/security.html b/jacs/docs/jacsbook/book/advanced/security.html index 6c3b6c22..bc772c5c 100644 --- a/jacs/docs/jacsbook/book/advanced/security.html +++ b/jacs/docs/jacsbook/book/advanced/security.html @@ -311,7 +311,7 @@

Key Protection< export JACS_PRIVATE_KEY_PASSWORD="secure-password" # Option 2: OS keychain (recommended for developer workstations) -jacs keychain set +jacs keychain set --agent-id <YOUR_AGENT_UUID>

Important: The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain.

@@ -322,11 +322,11 @@

Key Protection<
  • macOS: Uses Security.framework (Keychain Access)
  • Linux: Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC)
  • -

    Store your password once with jacs keychain set, and all subsequent JACS operations will find it automatically. The password resolution order is:

    +

    Each password is keyed by agent ID, so multiple agents can coexist on the same machine without overwriting each other. Store your password once with jacs keychain set --agent-id <ID>, and all subsequent JACS operations will find it automatically. The password resolution order is:

    1. JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins)
    2. JACS_PASSWORD_FILE / legacy .jacs_password file
    3. -
    4. OS keychain (lowest priority among explicit sources)
    5. +
    6. OS keychain keyed by agent ID (lowest priority among explicit sources)

    To disable keychain lookups (recommended for CI and headless environments):

    export JACS_KEYCHAIN_BACKEND=disabled
    @@ -622,7 +622,7 @@ 

    2. Pa export JACS_PRIVATE_KEY_PASSWORD="$(pass show jacs/key-password)" # Option B: Use OS keychain (developer workstations) -jacs keychain set # stores password securely in OS credential store +jacs keychain set --agent-id <AGENT_UUID> # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments export JACS_KEYCHAIN_BACKEND=disabled diff --git a/jacs/docs/jacsbook/book/getting-started/quick-start.html b/jacs/docs/jacsbook/book/getting-started/quick-start.html index 3003b37d..cc25ea49 100644 --- a/jacs/docs/jacsbook/book/getting-started/quick-start.html +++ b/jacs/docs/jacsbook/book/getting-started/quick-start.html @@ -184,7 +184,7 @@

    Passwor export JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations) -jacs keychain set # prompts once, then all JACS commands find the password automatically +jacs keychain set --agent-id <YOUR_AGENT_UUID> # prompts once, then JACS finds the password automatically # Option C: Password file (CLI convenience) export JACS_PASSWORD_FILE=/secure/path/jacs-password.txt diff --git a/jacs/docs/jacsbook/book/print.html b/jacs/docs/jacsbook/book/print.html index 050f3378..e68fa159 100644 --- a/jacs/docs/jacsbook/book/print.html +++ b/jacs/docs/jacsbook/book/print.html @@ -812,7 +812,7 @@

    Passwor export JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations) -jacs keychain set # prompts once, then all JACS commands find the password automatically +jacs keychain set --agent-id <YOUR_AGENT_UUID> # prompts once, then JACS finds the password automatically # Option C: Password file (CLI convenience) export JACS_PASSWORD_FILE=/secure/path/jacs-password.txt @@ -10519,7 +10519,7 @@

    Key Protection< export JACS_PRIVATE_KEY_PASSWORD="secure-password" # Option 2: OS keychain (recommended for developer workstations) -jacs keychain set +jacs keychain set --agent-id <YOUR_AGENT_UUID>

    Important: The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain.

    @@ -10530,11 +10530,11 @@

    Key Protection<
  • macOS: Uses Security.framework (Keychain Access)
  • Linux: Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC)
  • -

    Store your password once with jacs keychain set, and all subsequent JACS operations will find it automatically. The password resolution order is:

    +

    Each password is keyed by agent ID, so multiple agents can coexist on the same machine without overwriting each other. Store your password once with jacs keychain set --agent-id <ID>, and all subsequent JACS operations will find it automatically. The password resolution order is:

    1. JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins)
    2. JACS_PASSWORD_FILE / legacy .jacs_password file
    3. -
    4. OS keychain (lowest priority among explicit sources)
    5. +
    6. OS keychain keyed by agent ID (lowest priority among explicit sources)

    To disable keychain lookups (recommended for CI and headless environments):

    export JACS_KEYCHAIN_BACKEND=disabled
    @@ -10830,7 +10830,7 @@ 

    2. Pa export JACS_PRIVATE_KEY_PASSWORD="$(pass show jacs/key-password)" # Option B: Use OS keychain (developer workstations) -jacs keychain set # stores password securely in OS credential store +jacs keychain set --agent-id <AGENT_UUID> # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments export JACS_KEYCHAIN_BACKEND=disabled @@ -17255,27 +17255,28 @@

    jacs keycha

    Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments.

    +

    Every keychain command requires --agent-id so that each agent's password is stored separately. This prevents collisions when multiple agents coexist on the same machine.

    # Store a password interactively (prompts for input)
    -jacs keychain set
    +jacs keychain set --agent-id <AGENT_UUID>
     
     # Store a password non-interactively (for scripting)
    -jacs keychain set --password "YourStr0ng!Pass#Here"
    +jacs keychain set --agent-id <AGENT_UUID> --password "YourStr0ng!Pass#Here"
     
     # Retrieve the stored password (prints to stdout, for piping)
    -export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get)
    +export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get --agent-id <AGENT_UUID>)
     
     # Remove the stored password
    -jacs keychain delete
    +jacs keychain delete --agent-id <AGENT_UUID>
     
     # Check keychain availability and whether a password is stored
    -jacs keychain status
    +jacs keychain status --agent-id <AGENT_UUID>
     
    - - - - - + + + + +
    SubcommandDescription
    jacs keychain setStore a password (prompts interactively)
    jacs keychain set --password <pw>Store a specific password (for scripting)
    jacs keychain getPrint stored password to stdout
    jacs keychain deleteRemove stored password from OS keychain
    jacs keychain statusCheck keychain availability and storage state
    jacs keychain set --agent-id <ID>Store a password for an agent (prompts interactively)
    jacs keychain set --agent-id <ID> --password <pw>Store a specific password (for scripting)
    jacs keychain get --agent-id <ID>Print stored password to stdout
    jacs keychain delete --agent-id <ID>Remove stored password from OS keychain
    jacs keychain status --agent-id <ID>Check keychain availability and storage state

    Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable.

    @@ -17283,7 +17284,7 @@

    jacs keycha
    1. JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority)
    2. JACS_PASSWORD_FILE / legacy .jacs_password file
    3. -
    4. OS keychain (if keychain feature is enabled and not disabled)
    5. +
    6. OS keychain keyed by agent ID (if keychain feature is enabled and not disabled)

    jacs init

    Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup.

    diff --git a/jacs/docs/jacsbook/book/reference/cli-commands.html b/jacs/docs/jacsbook/book/reference/cli-commands.html index 756eda95..3d48e747 100644 --- a/jacs/docs/jacsbook/book/reference/cli-commands.html +++ b/jacs/docs/jacsbook/book/reference/cli-commands.html @@ -245,27 +245,28 @@

    jacs keycha

    Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments.

    +

    Every keychain command requires --agent-id so that each agent's password is stored separately. This prevents collisions when multiple agents coexist on the same machine.

    # Store a password interactively (prompts for input)
    -jacs keychain set
    +jacs keychain set --agent-id <AGENT_UUID>
     
     # Store a password non-interactively (for scripting)
    -jacs keychain set --password "YourStr0ng!Pass#Here"
    +jacs keychain set --agent-id <AGENT_UUID> --password "YourStr0ng!Pass#Here"
     
     # Retrieve the stored password (prints to stdout, for piping)
    -export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get)
    +export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get --agent-id <AGENT_UUID>)
     
     # Remove the stored password
    -jacs keychain delete
    +jacs keychain delete --agent-id <AGENT_UUID>
     
     # Check keychain availability and whether a password is stored
    -jacs keychain status
    +jacs keychain status --agent-id <AGENT_UUID>
     
    - - - - - + + + + +
    SubcommandDescription
    jacs keychain setStore a password (prompts interactively)
    jacs keychain set --password <pw>Store a specific password (for scripting)
    jacs keychain getPrint stored password to stdout
    jacs keychain deleteRemove stored password from OS keychain
    jacs keychain statusCheck keychain availability and storage state
    jacs keychain set --agent-id <ID>Store a password for an agent (prompts interactively)
    jacs keychain set --agent-id <ID> --password <pw>Store a specific password (for scripting)
    jacs keychain get --agent-id <ID>Print stored password to stdout
    jacs keychain delete --agent-id <ID>Remove stored password from OS keychain
    jacs keychain status --agent-id <ID>Check keychain availability and storage state

    Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable.

    @@ -273,7 +274,7 @@

    jacs keycha
    1. JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority)
    2. JACS_PASSWORD_FILE / legacy .jacs_password file
    3. -
    4. OS keychain (if keychain feature is enabled and not disabled)
    5. +
    6. OS keychain keyed by agent ID (if keychain feature is enabled and not disabled)

    jacs init

    Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup.

    diff --git a/jacs/docs/jacsbook/book/searchindex.js b/jacs/docs/jacsbook/book/searchindex.js index 8d10ef51..303a2bf1 100644 --- a/jacs/docs/jacsbook/book/searchindex.js +++ b/jacs/docs/jacsbook/book/searchindex.js @@ -1 +1 @@ -Object.assign(window.search, {"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#start-with-the-deployment","index.html#what-jacs-gives-you","index.html#best-entry-points","index.html#implementations","index.html#rust","index.html#python-jacs","index.html#nodejs-haiaijacs","index.html#go-jacsgo","index.html#quick-start","index.html#rust-cli","index.html#python","index.html#nodejs","index.html#go","index.html#what-this-book-does-not-claim","index.html#community","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/decision-tree.html#which-jacs-path-should-i-use","getting-started/decision-tree.html#start-here","getting-started/decision-tree.html#when-you-probably-do-not-need-jacs","getting-started/decision-tree.html#recommended-adoption-order","usecases.html#use-cases","usecases.html#1-secure-a-local-mcp-tool-server","usecases.html#2-add-provenance-to-langchain-or-langgraph","usecases.html#3-exchange-signed-artifacts-across-organizations","usecases.html#4-sign-http-or-api-boundaries-without-mcp","usecases.html#5-run-multi-agent-approval-workflows","usecases.html#6-keep-signed-files-or-json-as-durable-artifacts","usecases.html#7-publish-public-identity-without-a-central-auth-service","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#zero-config-quick-start","getting-started/quick-start.html#password-bootstrap","getting-started/quick-start.html#macos-homebrew-install-rust-cli","getting-started/quick-start.html#mcp-server-rust-cli","getting-started/quick-start.html#advanced-explicit-agent-setup","getting-started/quick-start.html#install","getting-started/quick-start.html#initialize","getting-started/quick-start.html#sign-a-document","getting-started/quick-start.html#install-1","getting-started/quick-start.html#load-and-use","getting-started/quick-start.html#install-2","getting-started/quick-start.html#load-and-use-1","getting-started/quick-start.html#programmatic-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","getting-started/multi-agent-agreement.html#multi-agent-agreements","getting-started/multi-agent-agreement.html#the-lifecycle","getting-started/multi-agent-agreement.html#python","getting-started/multi-agent-agreement.html#nodejs--typescript","getting-started/multi-agent-agreement.html#what-just-happened","getting-started/multi-agent-agreement.html#next-steps","getting-started/verification.html#verifying-signed-documents","getting-started/verification.html#cli-jacs-verify","getting-started/verification.html#python","getting-started/verification.html#with-an-agent-loaded","getting-started/verification.html#without-an-agent-standalone","getting-started/verification.html#verify-by-document-id","getting-started/verification.html#nodejs","getting-started/verification.html#with-an-agent-loaded-1","getting-started/verification.html#without-an-agent-standalone-1","getting-started/verification.html#verify-by-document-id-1","getting-started/verification.html#verification-links","getting-started/verification.html#dns-verification","getting-started/verification.html#publishing-a-dns-record","getting-started/verification.html#looking-up-an-agent-by-domain","getting-started/verification.html#cli-verification-with-dns","getting-started/verification.html#cross-language-verification","getting-started/verification.html#key-resolution-order","getting-started/attestation.html#what-is-an-attestation","getting-started/attestation.html#signing-vs-attestation","getting-started/attestation.html#key-concepts","getting-started/attestation.html#subject","getting-started/attestation.html#claims","getting-started/attestation.html#evidence","getting-started/attestation.html#derivation-chain","getting-started/attestation.html#architecture-layers","getting-started/attestation.html#quick-example","getting-started/attestation.html#attestation-vs-a2a-trust-policy","getting-started/attestation.html#when-to-use-attestations","getting-started/trust-layers.html#jacs-trust-layers","getting-started/trust-layers.html#the-three-layers","getting-started/trust-layers.html#layer-a-identity--integrity-jacs-core","getting-started/trust-layers.html#layer-b-exchange--discovery-a2a-integration","getting-started/trust-layers.html#layer-c-trust-context-attestation","getting-started/trust-layers.html#terminology-glossary","getting-started/trust-layers.html#quick-decision-flow","getting-started/trust-layers.html#common-misconceptions","getting-started/deployment.html#deployment-compatibility","getting-started/deployment.html#supported-platforms","getting-started/deployment.html#not-yet-supported","getting-started/deployment.html#version-requirements","getting-started/deployment.html#docker-example","getting-started/deployment.html#lambda-deployment","getting-started/deployment.html#building-from-source","getting-started/troubleshooting.html#troubleshooting","getting-started/troubleshooting.html#installation-issues","getting-started/troubleshooting.html#pip-install-fails","getting-started/troubleshooting.html#npm-install-fails","getting-started/troubleshooting.html#alpine-linux--musl-libc","getting-started/troubleshooting.html#configuration-issues","getting-started/troubleshooting.html#config-not-found","getting-started/troubleshooting.html#private-key-decryption-failed","getting-started/troubleshooting.html#algorithm-detection-failed","getting-started/troubleshooting.html#runtime-issues","getting-started/troubleshooting.html#agent-creation-fails","getting-started/troubleshooting.html#signature-verification-fails","getting-started/troubleshooting.html#documents-not-found","getting-started/troubleshooting.html#building-from-source","getting-started/troubleshooting.html#getting-help","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-homebrew-macos","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#mcp-server","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-tutorial","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#mcp-server","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#detailed-service-example","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#agreement-options-v062","rust/agreements.html#timeout","rust/agreements.html#quorum-m-of-n-signing","rust/agreements.html#algorithm-constraints","rust/agreements.html#combined-options","rust/agreements.html#using-jacsclient-instance-based-api","rust/agreements.html#python","rust/agreements.html#nodejs","rust/agreements.html#mcp-tools-for-agreements","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability-rust-api","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-and-simple-api","nodejs/installation.html#instance-based-client-recommended-for-new-code","nodejs/installation.html#mcp-haiaijacsmcp","nodejs/installation.html#http--framework-adapters","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#local-indexed-sqlite","nodejs/installation.html#aws-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#v070-async-first-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#quickstartoptions","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#v070-async-first-api","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#mcp-integration-nodejs","nodejs/mcp.html#install","nodejs/mcp.html#1-wrap-a-transport","nodejs/mcp.html#with-a-loaded-client","nodejs/mcp.html#with-only-a-config-path","nodejs/mcp.html#2-register-jacs-tools-on-your-mcp-server","nodejs/mcp.html#failure-behavior","nodejs/mcp.html#common-pattern","nodejs/mcp.html#example-paths-in-this-repo","nodejs/mcp.html#when-to-use-langchain-instead","nodejs/langchain.html#langchainjs-integration","nodejs/langchain.html#choose-the-pattern","nodejs/langchain.html#give-the-agent-jacs-tools","nodejs/langchain.html#auto-sign-existing-tools","nodejs/langchain.html#install","nodejs/langchain.html#strict-mode","nodejs/langchain.html#examples-in-this-repo","nodejs/langchain.html#when-to-use-mcp-instead","nodejs/vercel-ai.html#vercel-ai-sdk","nodejs/vercel-ai.html#5-minute-quickstart","nodejs/vercel-ai.html#1-install","nodejs/vercel-ai.html#2-create-a-jacs-client","nodejs/vercel-ai.html#3-sign-every-model-output","nodejs/vercel-ai.html#quick-start","nodejs/vercel-ai.html#installation","nodejs/vercel-ai.html#two-ways-to-use","nodejs/vercel-ai.html#withprovenance-convenience","nodejs/vercel-ai.html#jacsprovenance-composable","nodejs/vercel-ai.html#options","nodejs/vercel-ai.html#streaming","nodejs/vercel-ai.html#tool-call-signing","nodejs/vercel-ai.html#provenance-record","nodejs/vercel-ai.html#strict-mode","nodejs/vercel-ai.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#5-minute-quickstart","nodejs/express.html#1-install","nodejs/express.html#2-create-a-jacs-client","nodejs/express.html#3-add-signing-middleware","nodejs/express.html#quick-start","nodejs/express.html#options","nodejs/express.html#what-the-middleware-does","nodejs/express.html#verify-incoming-requests","nodejs/express.html#auth-replay-protection-auth-endpoints","nodejs/express.html#auto-sign-responses","nodejs/express.html#manual-signing-in-routes","nodejs/express.html#per-route-middleware","nodejs/express.html#multiple-agents","nodejs/express.html#migration-from-jacsexpressmiddleware","nodejs/express.html#next-steps","nodejs/koa.html#koa-middleware","nodejs/koa.html#quick-start","nodejs/koa.html#options","nodejs/koa.html#how-it-works","nodejs/koa.html#auth-replay-protection-auth-endpoints","nodejs/koa.html#auto-sign-responses","nodejs/koa.html#manual-signing","nodejs/koa.html#comparison-with-express","nodejs/koa.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#v070-async-first-api","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath--agentloadsyncconfigpath","nodejs/api.html#agentcreatedocument--agentcreatedocumentsync","nodejs/api.html#agentverifydocument--agentverifydocumentsync","nodejs/api.html#agentverifysignature--agentverifysignaturesync","nodejs/api.html#agentupdatedocument--agentupdatedocumentsync","nodejs/api.html#agentcreateagreement--agentcreateagreementsync","nodejs/api.html#agentsignagreement--agentsignagreementsync","nodejs/api.html#agentcheckagreement--agentcheckagreementsync","nodejs/api.html#agentsignartifact--agentsignartifactsync","nodejs/api.html#agentwrapa2aartifact--agentwrapa2aartifactsync","nodejs/api.html#agentsignstring--agentsignstringsync","nodejs/api.html#agentverifystring--agentverifystringsync","nodejs/api.html#agentsignrequestparams----v8-thread-only","nodejs/api.html#agentverifyresponsedocumentstring----v8-thread-only","nodejs/api.html#agentverifyresponsewithagentiddocumentstring----v8-thread-only","nodejs/api.html#agentverifyagent--agentverifyagentsync","nodejs/api.html#agentupdateagent--agentupdateagentsync","nodejs/api.html#agentsignagent--agentsignagentsync","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#local-indexed-sqlite","python/installation.html#aws-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#quickstartname-domain-descriptionnone-algorithmnone-config_pathnone","python/simple-api.html#loadconfig_pathnone-strictnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#verify_by_iddocument_id","python/simple-api.html#reencrypt_keyold_password-new_password","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration-python","python/mcp.html#what-is-supported","python/mcp.html#important-constraints","python/mcp.html#1-secure-a-fastmcp-server","python/mcp.html#2-secure-a-fastmcp-client","python/mcp.html#3-register-jacs-as-mcp-tools","python/mcp.html#useful-helper-apis","python/mcp.html#example-paths-in-this-repo","python/mcp.html#when-to-use-adapters-instead","python/adapters.html#framework-adapters","python/adapters.html#choose-the-adapter","python/adapters.html#langchain--langgraph","python/adapters.html#langchain-middleware","python/adapters.html#langgraph-toolnode","python/adapters.html#wrap-one-tool-instead-of-the-whole-graph","python/adapters.html#fastapi--starlette","python/adapters.html#crewai","python/adapters.html#anthropic--claude-sdk","python/adapters.html#when-to-use-mcp-instead","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentwrap_a2a_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","go/installation.html#go-jacsgo-installation-and-quick-start","go/installation.html#install","go/installation.html#minimal-sign--verify","go/installation.html#programmatic-agent-creation","go/installation.html#concurrent-use","go/installation.html#common-go-use-cases","go/installation.html#mcp-and-http-patterns","go/installation.html#identity-and-trust-notes","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#config-file-schema","schemas/configuration.html#schema-location","schemas/configuration.html#minimal-configuration","schemas/configuration.html#fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-fields","schemas/configuration.html#environment-variables","schemas/configuration.html#see-also","concepts/attestation-comparison.html#jacs-attestation-vs-other-standards","concepts/attestation-comparison.html#comparison-table","concepts/attestation-comparison.html#jacs-vs-in-toto--slsa","concepts/attestation-comparison.html#jacs-vs-sigstore--cosign","concepts/attestation-comparison.html#jacs-vs-scitt","concepts/attestation-comparison.html#jacs-vs-ietf-rats--eat","concepts/attestation-comparison.html#jacs-vs-csa-agentic-trust-framework","concepts/attestation-comparison.html#when-to-use-jacs","concepts/attestation-comparison.html#when-to-use-jacs-alongside-other-tools","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/algorithm-guide.html#algorithm-selection-guide","advanced/algorithm-guide.html#supported-algorithms","advanced/algorithm-guide.html#how-to-choose","advanced/algorithm-guide.html#when-to-choose-post-quantum","advanced/algorithm-guide.html#cross-algorithm-verification","advanced/algorithm-guide.html#configuration","advanced/algorithm-guide.html#current-limitations","advanced/storage.html#storage-backends","advanced/storage.html#built-in-core-backends","advanced/storage.html#filesystem-fs","advanced/storage.html#local-indexed-sqlite-rusqlite","advanced/storage.html#aws-aws","advanced/storage.html#memory-memory","advanced/storage.html#extracted-backend-crates","advanced/storage.html#choosing-a-backend","advanced/storage.html#migration-notes","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/trust-store.html#trust-store-operations","advanced/trust-store.html#how-it-works","advanced/trust-store.html#api","advanced/trust-store.html#python-example","advanced/trust-store.html#nodejs-example","advanced/trust-store.html#cross-organization-scenario","advanced/trust-store.html#security-notes","advanced/infrastructure.html#infrastructure-vs-tools-jacs-as-middleware","advanced/infrastructure.html#the-difference","advanced/infrastructure.html#transport-level-mcp-proxies","advanced/infrastructure.html#framework-level-express--fastapi-middleware","advanced/infrastructure.html#protocol-level-a2a-agent-cards","advanced/infrastructure.html#why-this-matters","advanced/infrastructure.html#when-to-use-each-approach","advanced/dns-trust.html#dns-trust-anchoring","advanced/dns-trust.html#how-it-works","advanced/dns-trust.html#four-configuration-levels","advanced/dns-trust.html#security-model-assumptions","advanced/dns-trust.html#known-attack-vectors","advanced/dns-trust.html#what-jacs-provides","advanced/dns-trust.html#what-jacs-does-not-yet-provide","advanced/dns-trust.html#recommendations","advanced/dns-trust.html#see-also","advanced/failure-modes.html#failure-modes","advanced/failure-modes.html#partial-signing-agent-crash","advanced/failure-modes.html#quorum-not-met","advanced/failure-modes.html#tampered-signature","advanced/failure-modes.html#tampered-document-body","advanced/failure-modes.html#in-memory-consistency-after-signing","advanced/failure-modes.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#mcp-overview","integrations/mcp.html#choose-the-mcp-path","integrations/mcp.html#best-fit-by-runtime","integrations/mcp.html#important-constraints","integrations/mcp.html#1-ready-made-server-jacs-mcp","integrations/mcp.html#2-transport-security-around-your-existing-mcp-code","integrations/mcp.html#python","integrations/mcp.html#nodejs","integrations/mcp.html#3-register-jacs-operations-as-mcp-tools","integrations/mcp.html#python-1","integrations/mcp.html#nodejs-1","integrations/mcp.html#example-paths-in-this-repo","integrations/mcp.html#related-guides","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds-to-a2a","integrations/a2a.html#the-core-flow","integrations/a2a.html#1-export-an-agent-card","integrations/a2a.html#2-serve-discovery-documents","integrations/a2a.html#3-sign-and-verify-artifacts","integrations/a2a.html#trust-policies","integrations/a2a.html#python","integrations/a2a.html#nodejs","integrations/a2a.html#bootstrap-patterns","integrations/a2a.html#current-runtime-differences","integrations/a2a.html#example-paths-in-this-repo","guides/a2a-quickstart.html#a2a-quickstart","guides/a2a-quickstart.html#jacs-for-a2a-developers","guides/a2a-quickstart.html#what-stays-the-same","guides/a2a-quickstart.html#what-jacs-adds","guides/a2a-quickstart.html#minimal-integration-add-jacs-to-existing-a2a-code","guides/a2a-quickstart.html#dual-key-architecture","guides/a2a-quickstart.html#troubleshooting-faq","guides/a2a-quickstart.html#next-steps","guides/a2a-serve.html#serve-your-agent-card","guides/a2a-serve.html#production-mount-into-your-own-fastapi-app","guides/a2a-serve.html#what-gets-served","guides/a2a-serve.html#next-steps","guides/a2a-discover.html#discover--trust-remote-agents","guides/a2a-discover.html#add-to-your-trust-store","guides/a2a-discover.html#async-api","guides/a2a-discover.html#add-to-your-trust-store-1","guides/a2a-discover.html#trust-policies","guides/a2a-discover.html#how-trust-flows","guides/a2a-discover.html#next-steps","guides/a2a-exchange.html#exchange-signed-artifacts","guides/a2a-exchange.html#sign-and-verify","guides/a2a-exchange.html#chain-of-custody","guides/a2a-exchange.html#build-an-audit-trail","guides/a2a-exchange.html#sign-and-verify-1","guides/a2a-exchange.html#chain-of-custody-1","guides/a2a-exchange.html#artifact-types","guides/a2a-exchange.html#what-gets-signed","guides/a2a-exchange.html#next-steps","guides/sign-vs-attest.html#sign-vs-attest-when-to-use-which","guides/sign-vs-attest.html#decision-tree","guides/sign-vs-attest.html#quick-reference","guides/sign-vs-attest.html#examples","guides/sign-vs-attest.html#just-need-integrity-use-signing","guides/sign-vs-attest.html#need-trust-context-use-attestation","guides/sign-vs-attest.html#already-signed-lift-to-attestation","guides/sign-vs-attest.html#common-patterns","guides/sign-vs-attest.html#ai-agent-action-logging","guides/sign-vs-attest.html#human-review-attestation","guides/sign-vs-attest.html#multi-step-pipeline","guides/sign-vs-attest.html#cross-system-verification","guides/attestation-tutorial.html#tutorial-add-attestations-to-your-workflow","guides/attestation-tutorial.html#prerequisites","guides/attestation-tutorial.html#step-1-create-an-agent","guides/attestation-tutorial.html#step-2-sign-a-document","guides/attestation-tutorial.html#step-3-create-an-attestation","guides/attestation-tutorial.html#step-4-verify-the-attestation","guides/attestation-tutorial.html#local-verification-fast----signature--hash-only","guides/attestation-tutorial.html#full-verification-thorough----includes-evidence--derivation-chain","guides/attestation-tutorial.html#step-5-add-evidence-optional","guides/attestation-tutorial.html#step-6-export-as-dsse-optional","guides/attestation-tutorial.html#whats-next","guides/custom-adapters.html#writing-a-custom-evidence-adapter","guides/custom-adapters.html#what-is-an-evidenceadapter","guides/custom-adapters.html#the-normalize-contract","guides/custom-adapters.html#the-verify_evidence-contract","guides/custom-adapters.html#step-by-step-building-a-jwt-adapter","guides/custom-adapters.html#testing-your-adapter","guides/custom-adapters.html#registering-your-adapter-with-the-agent","guides/custom-adapters.html#privacy-considerations","guides/framework-attestation.html#framework-adapter-attestation-guide","guides/framework-attestation.html#common-patterns","guides/framework-attestation.html#default-claims","guides/framework-attestation.html#custom-claims","guides/framework-attestation.html#evidence-attachment","guides/framework-attestation.html#langchain","guides/framework-attestation.html#enabling-attestation-on-tool-calls","guides/framework-attestation.html#using-the-signed_tool-decorator","guides/framework-attestation.html#with-langchain-chains","guides/framework-attestation.html#fastapi","guides/framework-attestation.html#attestation-middleware","guides/framework-attestation.html#per-route-attestation","guides/framework-attestation.html#crewai","guides/framework-attestation.html#attestation-guardrails","guides/framework-attestation.html#signed-tasks","guides/framework-attestation.html#jacssignedtool","guides/framework-attestation.html#anthropic","guides/framework-attestation.html#tool-hook-attestation","guides/framework-attestation.html#with-the-anthropic-sdk","guides/framework-attestation.html#verifying-framework-attestations","guides/framework-attestation.html#strict-vs-permissive-mode","guides/a2a-attestation-composition.html#a2a--attestation-using-both-together","guides/a2a-attestation-composition.html#when-you-need-both","guides/a2a-attestation-composition.html#the-composition-rule","guides/a2a-attestation-composition.html#example-workflow","guides/a2a-attestation-composition.html#python","guides/a2a-attestation-composition.html#nodejs","guides/a2a-attestation-composition.html#what-not-to-do","guides/a2a-attestation-composition.html#further-reading","guides/observability.html#observability--monitoring-guide","guides/observability.html#structured-event-reference","guides/observability.html#signing-events","guides/observability.html#verification-events","guides/observability.html#agreement-events","guides/observability.html#enabling-otel-export","guides/observability.html#otel-collector-configuration","guides/observability.html#pointing-jacs-at-the-collector","guides/observability.html#feeding-events-to-datadog","guides/observability.html#feeding-events-to-splunk","guides/observability.html#agreement-monitoring","guides/observability.html#agreements-approaching-timeout","guides/observability.html#failed-quorum-detection","guides/observability.html#signature-velocity","guides/observability.html#expiry-alerts","guides/observability.html#latency-tracking","guides/observability.html#next-steps","guides/email-signing.html#email-signing-and-verification","guides/email-signing.html#signing-an-email","guides/email-signing.html#the-emailsigner-trait","guides/email-signing.html#what-sign_email-does-internally","guides/email-signing.html#forwarding-re-signing","guides/email-signing.html#verifying-an-email","guides/email-signing.html#one-call-api-recommended","guides/email-signing.html#two-step-api-when-you-need-the-jacs-document","guides/email-signing.html#field-level-results","guides/email-signing.html#the-jacs-signature-document","guides/email-signing.html#public-api-summary","guides/streaming.html#streaming-signing","guides/streaming.html#how-it-works-by-framework","guides/streaming.html#vercel-ai-sdk-streamtext","guides/streaming.html#langchain--langgraph","guides/streaming.html#express--koa--fastapi","guides/streaming.html#raw-llm-apis-no-framework-adapter","guides/streaming.html#when-not-to-buffer","guides/streaming.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#mcp","examples/integrations.html#langchain--langgraph","examples/integrations.html#a2a","examples/integrations.html#http--app-middleware","examples/integrations.html#rule-of-thumb","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-quickstart","reference/cli-commands.html#jacs-verify","reference/cli-commands.html#jacs-keychain","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#zero-config-path","reference/configuration.html#minimal-configuration","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#os-keychain-configuration","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#documentservice-guarantees","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/attestation-errors.html#attestation-verification-results","reference/attestation-errors.html#result-structure","reference/attestation-errors.html#top-level-fields","reference/attestation-errors.html#crypto-object","reference/attestation-errors.html#evidence-array-full-tier-only","reference/attestation-errors.html#chain-object-full-tier-only","reference/attestation-errors.html#verification-tiers","reference/attestation-errors.html#local-tier-verify_attestation","reference/attestation-errors.html#full-tier-verify_attestationfulltrue","reference/attestation-errors.html#troubleshooting","reference/attestation-errors.html#valid-is-false-but-crypto-shows-all-true","reference/attestation-errors.html#evidence-is-empty","reference/attestation-errors.html#chain-is-null","reference/attestation-errors.html#signature_valid-is-false-after-serialization","reference/attest-cli.html#cli-reference-jacs-attest","reference/attest-cli.html#jacs-attest-create","reference/attest-cli.html#synopsis","reference/attest-cli.html#options","reference/attest-cli.html#examples","reference/attest-cli.html#jacs-attest-verify","reference/attest-cli.html#synopsis-1","reference/attest-cli.html#arguments","reference/attest-cli.html#options-1","reference/attest-cli.html#examples-1","reference/attest-cli.html#piping-and-scripting-patterns","reference/attest-cli.html#create-and-verify-in-one-pipeline","reference/attest-cli.html#check-validity-in-a-script","reference/attest-cli.html#batch-verify-multiple-attestations","reference/attest-cli.html#exit-codes","reference/attest-cli.html#environment-variables","reference/attest-cli.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-nodejs-from-06x-to-070","reference/migration.html#breaking-change-async-first-api","reference/migration.html#method-renaming-summary","reference/migration.html#v8-thread-only-methods-no-change","reference/migration.html#simplified-api-module-level","reference/migration.html#pure-sync-functions-no-change","reference/migration.html#migration-steps","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#deprecated-method-aliases-090","reference/migration.html#runtime-deprecation-warnings","reference/migration.html#deprecated-alias-table","reference/migration.html#migration-examples","reference/migration.html#module-level-function-deprecation-reminder","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps-1","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":18,"breadcrumbs":6,"title":5},"1":{"body":67,"breadcrumbs":3,"title":2},"10":{"body":10,"breadcrumbs":3,"title":2},"100":{"body":42,"breadcrumbs":6,"title":3},"1000":{"body":0,"breadcrumbs":4,"title":2},"1001":{"body":53,"breadcrumbs":4,"title":2},"1002":{"body":11,"breadcrumbs":4,"title":2},"1003":{"body":0,"breadcrumbs":4,"title":2},"1004":{"body":45,"breadcrumbs":4,"title":2},"1005":{"body":23,"breadcrumbs":4,"title":2},"1006":{"body":0,"breadcrumbs":4,"title":2},"1007":{"body":23,"breadcrumbs":4,"title":2},"1008":{"body":288,"breadcrumbs":4,"title":2},"1009":{"body":23,"breadcrumbs":4,"title":2},"101":{"body":11,"breadcrumbs":4,"title":1},"1010":{"body":9,"breadcrumbs":5,"title":3},"1011":{"body":21,"breadcrumbs":5,"title":3},"1012":{"body":35,"breadcrumbs":4,"title":2},"1013":{"body":34,"breadcrumbs":4,"title":2},"1014":{"body":10,"breadcrumbs":5,"title":3},"1015":{"body":37,"breadcrumbs":3,"title":1},"1016":{"body":24,"breadcrumbs":5,"title":3},"1017":{"body":41,"breadcrumbs":6,"title":4},"1018":{"body":24,"breadcrumbs":4,"title":2},"1019":{"body":11,"breadcrumbs":4,"title":2},"102":{"body":122,"breadcrumbs":4,"title":1},"1020":{"body":43,"breadcrumbs":4,"title":2},"1021":{"body":12,"breadcrumbs":5,"title":3},"1022":{"body":74,"breadcrumbs":4,"title":2},"1023":{"body":19,"breadcrumbs":4,"title":2},"1024":{"body":41,"breadcrumbs":4,"title":2},"1025":{"body":33,"breadcrumbs":4,"title":2},"1026":{"body":6,"breadcrumbs":5,"title":3},"1027":{"body":22,"breadcrumbs":3,"title":1},"1028":{"body":6,"breadcrumbs":3,"title":1},"1029":{"body":23,"breadcrumbs":4,"title":2},"103":{"body":119,"breadcrumbs":5,"title":2},"1030":{"body":8,"breadcrumbs":5,"title":3},"1031":{"body":17,"breadcrumbs":4,"title":2},"1032":{"body":20,"breadcrumbs":4,"title":2},"1033":{"body":119,"breadcrumbs":5,"title":3},"1034":{"body":31,"breadcrumbs":4,"title":2},"1035":{"body":6,"breadcrumbs":4,"title":2},"1036":{"body":23,"breadcrumbs":4,"title":2},"1037":{"body":26,"breadcrumbs":4,"title":2},"1038":{"body":3,"breadcrumbs":4,"title":2},"1039":{"body":22,"breadcrumbs":4,"title":2},"104":{"body":53,"breadcrumbs":4,"title":1},"1040":{"body":8,"breadcrumbs":4,"title":2},"1041":{"body":0,"breadcrumbs":4,"title":2},"1042":{"body":23,"breadcrumbs":4,"title":2},"1043":{"body":28,"breadcrumbs":4,"title":2},"1044":{"body":0,"breadcrumbs":5,"title":3},"1045":{"body":17,"breadcrumbs":5,"title":3},"1046":{"body":35,"breadcrumbs":5,"title":3},"1047":{"body":15,"breadcrumbs":5,"title":3},"1048":{"body":6,"breadcrumbs":5,"title":3},"1049":{"body":10,"breadcrumbs":5,"title":3},"105":{"body":22,"breadcrumbs":5,"title":2},"1050":{"body":0,"breadcrumbs":4,"title":2},"1051":{"body":14,"breadcrumbs":3,"title":1},"1052":{"body":80,"breadcrumbs":3,"title":1},"1053":{"body":15,"breadcrumbs":3,"title":1},"1054":{"body":0,"breadcrumbs":4,"title":2},"1055":{"body":11,"breadcrumbs":4,"title":2},"1056":{"body":13,"breadcrumbs":4,"title":2},"1057":{"body":12,"breadcrumbs":3,"title":1},"1058":{"body":0,"breadcrumbs":5,"title":3},"1059":{"body":168,"breadcrumbs":5,"title":3},"106":{"body":30,"breadcrumbs":6,"title":3},"1060":{"body":34,"breadcrumbs":5,"title":3},"1061":{"body":26,"breadcrumbs":6,"title":4},"1062":{"body":22,"breadcrumbs":5,"title":3},"1063":{"body":16,"breadcrumbs":3,"title":1},"1064":{"body":25,"breadcrumbs":4,"title":2},"1065":{"body":0,"breadcrumbs":5,"title":3},"1066":{"body":19,"breadcrumbs":5,"title":3},"1067":{"body":22,"breadcrumbs":4,"title":2},"1068":{"body":24,"breadcrumbs":4,"title":2},"1069":{"body":12,"breadcrumbs":4,"title":2},"107":{"body":116,"breadcrumbs":6,"title":3},"1070":{"body":52,"breadcrumbs":4,"title":2},"1071":{"body":27,"breadcrumbs":4,"title":2},"1072":{"body":12,"breadcrumbs":5,"title":3},"1073":{"body":28,"breadcrumbs":4,"title":2},"1074":{"body":42,"breadcrumbs":5,"title":3},"1075":{"body":35,"breadcrumbs":5,"title":3},"1076":{"body":0,"breadcrumbs":5,"title":3},"1077":{"body":33,"breadcrumbs":5,"title":3},"1078":{"body":24,"breadcrumbs":4,"title":2},"1079":{"body":56,"breadcrumbs":5,"title":3},"108":{"body":0,"breadcrumbs":4,"title":1},"1080":{"body":80,"breadcrumbs":5,"title":3},"1081":{"body":9,"breadcrumbs":6,"title":4},"1082":{"body":70,"breadcrumbs":4,"title":2},"1083":{"body":22,"breadcrumbs":5,"title":3},"1084":{"body":42,"breadcrumbs":5,"title":3},"1085":{"body":7,"breadcrumbs":6,"title":4},"1086":{"body":33,"breadcrumbs":6,"title":4},"1087":{"body":9,"breadcrumbs":5,"title":3},"1088":{"body":0,"breadcrumbs":4,"title":2},"1089":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":11,"breadcrumbs":5,"title":2},"1090":{"body":24,"breadcrumbs":4,"title":2},"1091":{"body":14,"breadcrumbs":4,"title":2},"1092":{"body":0,"breadcrumbs":4,"title":2},"1093":{"body":15,"breadcrumbs":4,"title":2},"1094":{"body":19,"breadcrumbs":5,"title":3},"1095":{"body":21,"breadcrumbs":5,"title":3},"1096":{"body":15,"breadcrumbs":3,"title":1},"1097":{"body":18,"breadcrumbs":4,"title":2},"1098":{"body":54,"breadcrumbs":4,"title":2},"1099":{"body":4,"breadcrumbs":5,"title":3},"11":{"body":3,"breadcrumbs":2,"title":1},"110":{"body":23,"breadcrumbs":6,"title":3},"1100":{"body":13,"breadcrumbs":3,"title":1},"1101":{"body":24,"breadcrumbs":3,"title":1},"1102":{"body":3,"breadcrumbs":3,"title":1},"1103":{"body":11,"breadcrumbs":4,"title":2},"1104":{"body":21,"breadcrumbs":3,"title":1},"1105":{"body":7,"breadcrumbs":4,"title":2},"1106":{"body":14,"breadcrumbs":3,"title":1},"1107":{"body":24,"breadcrumbs":3,"title":1},"1108":{"body":3,"breadcrumbs":3,"title":1},"1109":{"body":10,"breadcrumbs":4,"title":2},"111":{"body":9,"breadcrumbs":6,"title":3},"1110":{"body":12,"breadcrumbs":3,"title":1},"1111":{"body":7,"breadcrumbs":5,"title":3},"1112":{"body":18,"breadcrumbs":3,"title":1},"1113":{"body":27,"breadcrumbs":3,"title":1},"1114":{"body":3,"breadcrumbs":3,"title":1},"1115":{"body":14,"breadcrumbs":4,"title":2},"1116":{"body":13,"breadcrumbs":3,"title":1},"1117":{"body":8,"breadcrumbs":4,"title":2},"1118":{"body":18,"breadcrumbs":3,"title":1},"1119":{"body":20,"breadcrumbs":3,"title":1},"112":{"body":0,"breadcrumbs":4,"title":1},"1120":{"body":2,"breadcrumbs":3,"title":1},"1121":{"body":12,"breadcrumbs":4,"title":2},"1122":{"body":8,"breadcrumbs":3,"title":1},"1123":{"body":0,"breadcrumbs":5,"title":3},"1124":{"body":26,"breadcrumbs":4,"title":2},"1125":{"body":41,"breadcrumbs":4,"title":2},"1126":{"body":20,"breadcrumbs":4,"title":2},"1127":{"body":30,"breadcrumbs":4,"title":2},"1128":{"body":46,"breadcrumbs":4,"title":2},"1129":{"body":20,"breadcrumbs":3,"title":1},"113":{"body":13,"breadcrumbs":5,"title":2},"1130":{"body":56,"breadcrumbs":4,"title":2},"1131":{"body":32,"breadcrumbs":4,"title":2},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":15,"breadcrumbs":4,"title":2},"1134":{"body":13,"breadcrumbs":4,"title":2},"1135":{"body":19,"breadcrumbs":4,"title":2},"1136":{"body":14,"breadcrumbs":3,"title":1},"1137":{"body":18,"breadcrumbs":6,"title":3},"1138":{"body":53,"breadcrumbs":5,"title":2},"1139":{"body":45,"breadcrumbs":4,"title":1},"114":{"body":15,"breadcrumbs":6,"title":3},"1140":{"body":77,"breadcrumbs":6,"title":3},"1141":{"body":37,"breadcrumbs":6,"title":3},"1142":{"body":45,"breadcrumbs":4,"title":1},"1143":{"body":32,"breadcrumbs":5,"title":2},"1144":{"body":61,"breadcrumbs":4,"title":2},"1145":{"body":60,"breadcrumbs":5,"title":3},"1146":{"body":33,"breadcrumbs":4,"title":2},"1147":{"body":53,"breadcrumbs":6,"title":4},"1148":{"body":44,"breadcrumbs":4,"title":2},"1149":{"body":13,"breadcrumbs":4,"title":2},"115":{"body":6,"breadcrumbs":6,"title":3},"1150":{"body":29,"breadcrumbs":5,"title":3},"1151":{"body":26,"breadcrumbs":4,"title":2},"1152":{"body":28,"breadcrumbs":4,"title":2},"1153":{"body":18,"breadcrumbs":4,"title":2},"1154":{"body":24,"breadcrumbs":3,"title":1},"1155":{"body":0,"breadcrumbs":5,"title":3},"1156":{"body":48,"breadcrumbs":4,"title":2},"1157":{"body":161,"breadcrumbs":5,"title":3},"1158":{"body":0,"breadcrumbs":5,"title":3},"1159":{"body":7,"breadcrumbs":5,"title":3},"116":{"body":46,"breadcrumbs":5,"title":2},"1160":{"body":16,"breadcrumbs":4,"title":2},"1161":{"body":19,"breadcrumbs":5,"title":3},"1162":{"body":33,"breadcrumbs":5,"title":3},"1163":{"body":0,"breadcrumbs":5,"title":3},"1164":{"body":31,"breadcrumbs":4,"title":2},"1165":{"body":28,"breadcrumbs":4,"title":2},"1166":{"body":13,"breadcrumbs":4,"title":2},"1167":{"body":13,"breadcrumbs":4,"title":2},"1168":{"body":0,"breadcrumbs":4,"title":2},"1169":{"body":56,"breadcrumbs":5,"title":3},"117":{"body":30,"breadcrumbs":5,"title":2},"1170":{"body":0,"breadcrumbs":3,"title":1},"1171":{"body":31,"breadcrumbs":4,"title":2},"1172":{"body":42,"breadcrumbs":4,"title":2},"1173":{"body":0,"breadcrumbs":4,"title":2},"1174":{"body":58,"breadcrumbs":4,"title":2},"1175":{"body":59,"breadcrumbs":4,"title":2},"1176":{"body":54,"breadcrumbs":5,"title":3},"1177":{"body":0,"breadcrumbs":4,"title":2},"1178":{"body":2,"breadcrumbs":4,"title":2},"1179":{"body":6,"breadcrumbs":4,"title":2},"118":{"body":19,"breadcrumbs":6,"title":3},"1180":{"body":15,"breadcrumbs":4,"title":2},"1181":{"body":12,"breadcrumbs":3,"title":1},"1182":{"body":28,"breadcrumbs":5,"title":3},"1183":{"body":32,"breadcrumbs":3,"title":1},"1184":{"body":37,"breadcrumbs":3,"title":1},"1185":{"body":46,"breadcrumbs":4,"title":2},"1186":{"body":26,"breadcrumbs":4,"title":2},"1187":{"body":82,"breadcrumbs":5,"title":3},"1188":{"body":41,"breadcrumbs":4,"title":2},"1189":{"body":29,"breadcrumbs":8,"title":5},"119":{"body":16,"breadcrumbs":7,"title":4},"1190":{"body":18,"breadcrumbs":4,"title":1},"1191":{"body":41,"breadcrumbs":7,"title":4},"1192":{"body":40,"breadcrumbs":8,"title":5},"1193":{"body":24,"breadcrumbs":8,"title":5},"1194":{"body":61,"breadcrumbs":4,"title":1},"1195":{"body":49,"breadcrumbs":6,"title":3},"1196":{"body":26,"breadcrumbs":6,"title":3},"1197":{"body":45,"breadcrumbs":4,"title":1},"1198":{"body":92,"breadcrumbs":6,"title":3},"1199":{"body":52,"breadcrumbs":6,"title":3},"12":{"body":3,"breadcrumbs":2,"title":1},"120":{"body":32,"breadcrumbs":6,"title":3},"1200":{"body":56,"breadcrumbs":6,"title":3},"1201":{"body":48,"breadcrumbs":5,"title":2},"1202":{"body":40,"breadcrumbs":5,"title":2},"1203":{"body":54,"breadcrumbs":4,"title":1},"1204":{"body":20,"breadcrumbs":4,"title":1},"1205":{"body":18,"breadcrumbs":4,"title":2},"1206":{"body":46,"breadcrumbs":6,"title":4},"1207":{"body":44,"breadcrumbs":4,"title":2},"1208":{"body":59,"breadcrumbs":4,"title":2},"1209":{"body":56,"breadcrumbs":5,"title":3},"121":{"body":59,"breadcrumbs":6,"title":3},"1210":{"body":49,"breadcrumbs":5,"title":3},"1211":{"body":18,"breadcrumbs":3,"title":1},"1212":{"body":14,"breadcrumbs":2,"title":1},"1213":{"body":0,"breadcrumbs":3,"title":2},"1214":{"body":23,"breadcrumbs":4,"title":3},"1215":{"body":169,"breadcrumbs":3,"title":2},"1216":{"body":0,"breadcrumbs":3,"title":2},"1217":{"body":63,"breadcrumbs":4,"title":3},"1218":{"body":64,"breadcrumbs":3,"title":2},"1219":{"body":33,"breadcrumbs":5,"title":4},"122":{"body":35,"breadcrumbs":6,"title":3},"1220":{"body":187,"breadcrumbs":7,"title":6},"1221":{"body":28,"breadcrumbs":4,"title":3},"1222":{"body":0,"breadcrumbs":3,"title":2},"1223":{"body":125,"breadcrumbs":4,"title":3},"1224":{"body":63,"breadcrumbs":4,"title":3},"1225":{"body":0,"breadcrumbs":2,"title":1},"1226":{"body":93,"breadcrumbs":4,"title":3},"1227":{"body":27,"breadcrumbs":4,"title":3},"1228":{"body":0,"breadcrumbs":3,"title":2},"1229":{"body":96,"breadcrumbs":3,"title":2},"123":{"body":22,"breadcrumbs":2,"title":1},"1230":{"body":13,"breadcrumbs":3,"title":2},"1231":{"body":10,"breadcrumbs":3,"title":2},"1232":{"body":0,"breadcrumbs":3,"title":2},"1233":{"body":55,"breadcrumbs":3,"title":2},"1234":{"body":7,"breadcrumbs":4,"title":3},"1235":{"body":22,"breadcrumbs":5,"title":4},"1236":{"body":140,"breadcrumbs":3,"title":2},"1237":{"body":15,"breadcrumbs":4,"title":3},"1238":{"body":39,"breadcrumbs":4,"title":3},"1239":{"body":12,"breadcrumbs":2,"title":1},"124":{"body":31,"breadcrumbs":4,"title":3},"1240":{"body":22,"breadcrumbs":5,"title":4},"1241":{"body":31,"breadcrumbs":5,"title":4},"1242":{"body":0,"breadcrumbs":3,"title":2},"1243":{"body":17,"breadcrumbs":4,"title":3},"1244":{"body":33,"breadcrumbs":5,"title":4},"1245":{"body":21,"breadcrumbs":5,"title":4},"1246":{"body":20,"breadcrumbs":5,"title":4},"1247":{"body":15,"breadcrumbs":2,"title":1},"1248":{"body":16,"breadcrumbs":4,"title":2},"1249":{"body":44,"breadcrumbs":5,"title":3},"125":{"body":0,"breadcrumbs":3,"title":2},"1250":{"body":38,"breadcrumbs":5,"title":3},"1251":{"body":35,"breadcrumbs":4,"title":2},"1252":{"body":42,"breadcrumbs":8,"title":6},"1253":{"body":0,"breadcrumbs":9,"title":7},"1254":{"body":54,"breadcrumbs":3,"title":1},"1255":{"body":52,"breadcrumbs":3,"title":1},"1256":{"body":16,"breadcrumbs":8,"title":6},"1257":{"body":24,"breadcrumbs":3,"title":1},"1258":{"body":47,"breadcrumbs":3,"title":1},"1259":{"body":6,"breadcrumbs":5,"title":3},"126":{"body":16,"breadcrumbs":2,"title":1},"1260":{"body":11,"breadcrumbs":4,"title":2},"1261":{"body":17,"breadcrumbs":4,"title":2},"1262":{"body":24,"breadcrumbs":5,"title":3},"1263":{"body":0,"breadcrumbs":4,"title":2},"1264":{"body":26,"breadcrumbs":6,"title":4},"1265":{"body":63,"breadcrumbs":6,"title":4},"1266":{"body":28,"breadcrumbs":6,"title":4},"1267":{"body":55,"breadcrumbs":4,"title":2},"1268":{"body":9,"breadcrumbs":3,"title":1},"1269":{"body":11,"breadcrumbs":3,"title":1},"127":{"body":19,"breadcrumbs":2,"title":1},"1270":{"body":25,"breadcrumbs":4,"title":2},"1271":{"body":27,"breadcrumbs":5,"title":3},"1272":{"body":9,"breadcrumbs":5,"title":3},"1273":{"body":52,"breadcrumbs":4,"title":2},"1274":{"body":9,"breadcrumbs":5,"title":3},"1275":{"body":33,"breadcrumbs":4,"title":2},"1276":{"body":47,"breadcrumbs":4,"title":2},"1277":{"body":72,"breadcrumbs":9,"title":7},"1278":{"body":36,"breadcrumbs":5,"title":3},"1279":{"body":166,"breadcrumbs":4,"title":2},"128":{"body":18,"breadcrumbs":2,"title":1},"1280":{"body":51,"breadcrumbs":4,"title":2},"1281":{"body":28,"breadcrumbs":8,"title":3},"1282":{"body":50,"breadcrumbs":9,"title":4},"1283":{"body":55,"breadcrumbs":7,"title":2},"1284":{"body":21,"breadcrumbs":7,"title":2},"1285":{"body":16,"breadcrumbs":10,"title":4},"1286":{"body":40,"breadcrumbs":9,"title":3},"1287":{"body":25,"breadcrumbs":8,"title":2},"1288":{"body":34,"breadcrumbs":9,"title":3},"1289":{"body":23,"breadcrumbs":8,"title":2},"129":{"body":19,"breadcrumbs":3,"title":2},"1290":{"body":50,"breadcrumbs":8,"title":2},"1291":{"body":20,"breadcrumbs":8,"title":2},"1292":{"body":8,"breadcrumbs":8,"title":3},"1293":{"body":28,"breadcrumbs":7,"title":2},"1294":{"body":45,"breadcrumbs":7,"title":2},"1295":{"body":11,"breadcrumbs":8,"title":3},"1296":{"body":31,"breadcrumbs":7,"title":2},"1297":{"body":43,"breadcrumbs":7,"title":2},"1298":{"body":27,"breadcrumbs":7,"title":2},"1299":{"body":44,"breadcrumbs":7,"title":2},"13":{"body":18,"breadcrumbs":2,"title":1},"130":{"body":45,"breadcrumbs":3,"title":2},"1300":{"body":27,"breadcrumbs":7,"title":2},"1301":{"body":8,"breadcrumbs":9,"title":4},"1302":{"body":90,"breadcrumbs":7,"title":2},"1303":{"body":63,"breadcrumbs":7,"title":2},"1304":{"body":0,"breadcrumbs":6,"title":1},"1305":{"body":7,"breadcrumbs":9,"title":4},"1306":{"body":21,"breadcrumbs":10,"title":5},"1307":{"body":16,"breadcrumbs":9,"title":4},"1308":{"body":0,"breadcrumbs":7,"title":2},"1309":{"body":14,"breadcrumbs":9,"title":4},"131":{"body":42,"breadcrumbs":3,"title":2},"1310":{"body":14,"breadcrumbs":8,"title":3},"1311":{"body":14,"breadcrumbs":8,"title":3},"1312":{"body":13,"breadcrumbs":8,"title":3},"1313":{"body":22,"breadcrumbs":6,"title":4},"1314":{"body":11,"breadcrumbs":3,"title":1},"1315":{"body":42,"breadcrumbs":6,"title":4},"1316":{"body":32,"breadcrumbs":6,"title":4},"1317":{"body":70,"breadcrumbs":6,"title":4},"1318":{"body":0,"breadcrumbs":6,"title":4},"1319":{"body":30,"breadcrumbs":7,"title":5},"132":{"body":44,"breadcrumbs":6,"title":5},"1320":{"body":29,"breadcrumbs":9,"title":7},"1321":{"body":90,"breadcrumbs":7,"title":5},"1322":{"body":35,"breadcrumbs":7,"title":5},"1323":{"body":17,"breadcrumbs":4,"title":2},"1324":{"body":24,"breadcrumbs":8,"title":4},"1325":{"body":83,"breadcrumbs":5,"title":1},"1326":{"body":55,"breadcrumbs":6,"title":2},"1327":{"body":43,"breadcrumbs":6,"title":2},"1328":{"body":215,"breadcrumbs":9,"title":5},"1329":{"body":72,"breadcrumbs":6,"title":2},"133":{"body":40,"breadcrumbs":3,"title":2},"1330":{"body":39,"breadcrumbs":7,"title":3},"1331":{"body":41,"breadcrumbs":6,"title":2},"1332":{"body":21,"breadcrumbs":8,"title":4},"1333":{"body":5,"breadcrumbs":6,"title":2},"1334":{"body":27,"breadcrumbs":6,"title":2},"1335":{"body":17,"breadcrumbs":6,"title":2},"1336":{"body":23,"breadcrumbs":6,"title":2},"1337":{"body":0,"breadcrumbs":5,"title":1},"1338":{"body":38,"breadcrumbs":8,"title":4},"1339":{"body":21,"breadcrumbs":7,"title":3},"134":{"body":22,"breadcrumbs":5,"title":3},"1340":{"body":12,"breadcrumbs":6,"title":2},"1341":{"body":0,"breadcrumbs":5,"title":1},"1342":{"body":32,"breadcrumbs":6,"title":2},"1343":{"body":42,"breadcrumbs":7,"title":3},"1344":{"body":0,"breadcrumbs":5,"title":1},"1345":{"body":28,"breadcrumbs":6,"title":2},"1346":{"body":19,"breadcrumbs":6,"title":2},"1347":{"body":29,"breadcrumbs":5,"title":1},"1348":{"body":0,"breadcrumbs":5,"title":1},"1349":{"body":50,"breadcrumbs":7,"title":3},"135":{"body":0,"breadcrumbs":4,"title":2},"1350":{"body":30,"breadcrumbs":6,"title":2},"1351":{"body":20,"breadcrumbs":7,"title":3},"1352":{"body":36,"breadcrumbs":8,"title":4},"1353":{"body":9,"breadcrumbs":8,"title":5},"1354":{"body":46,"breadcrumbs":5,"title":2},"1355":{"body":40,"breadcrumbs":5,"title":2},"1356":{"body":26,"breadcrumbs":5,"title":2},"1357":{"body":74,"breadcrumbs":4,"title":1},"1358":{"body":66,"breadcrumbs":4,"title":1},"1359":{"body":59,"breadcrumbs":3,"title":0},"136":{"body":62,"breadcrumbs":7,"title":5},"1360":{"body":22,"breadcrumbs":5,"title":2},"1361":{"body":29,"breadcrumbs":6,"title":3},"1362":{"body":11,"breadcrumbs":6,"title":3},"1363":{"body":22,"breadcrumbs":5,"title":2},"1364":{"body":26,"breadcrumbs":5,"title":2},"1365":{"body":31,"breadcrumbs":5,"title":2},"1366":{"body":78,"breadcrumbs":6,"title":3},"1367":{"body":106,"breadcrumbs":6,"title":3},"1368":{"body":50,"breadcrumbs":6,"title":3},"1369":{"body":41,"breadcrumbs":6,"title":3},"137":{"body":67,"breadcrumbs":8,"title":6},"1370":{"body":17,"breadcrumbs":6,"title":3},"1371":{"body":14,"breadcrumbs":5,"title":2},"1372":{"body":14,"breadcrumbs":6,"title":3},"1373":{"body":9,"breadcrumbs":6,"title":3},"1374":{"body":15,"breadcrumbs":5,"title":2},"1375":{"body":15,"breadcrumbs":5,"title":2},"1376":{"body":43,"breadcrumbs":5,"title":2},"1377":{"body":23,"breadcrumbs":5,"title":2},"1378":{"body":61,"breadcrumbs":6,"title":3},"1379":{"body":32,"breadcrumbs":5,"title":2},"138":{"body":51,"breadcrumbs":7,"title":5},"1380":{"body":70,"breadcrumbs":5,"title":2},"1381":{"body":40,"breadcrumbs":5,"title":2},"1382":{"body":35,"breadcrumbs":6,"title":3},"1383":{"body":0,"breadcrumbs":5,"title":2},"1384":{"body":73,"breadcrumbs":7,"title":4},"1385":{"body":63,"breadcrumbs":9,"title":6},"1386":{"body":50,"breadcrumbs":6,"title":3},"1387":{"body":97,"breadcrumbs":6,"title":3},"1388":{"body":82,"breadcrumbs":6,"title":3},"1389":{"body":52,"breadcrumbs":4,"title":2},"139":{"body":70,"breadcrumbs":4,"title":2},"1390":{"body":0,"breadcrumbs":4,"title":2},"1391":{"body":53,"breadcrumbs":6,"title":4},"1392":{"body":46,"breadcrumbs":4,"title":2},"1393":{"body":33,"breadcrumbs":5,"title":3},"1394":{"body":71,"breadcrumbs":7,"title":5},"1395":{"body":32,"breadcrumbs":3,"title":1},"1396":{"body":9,"breadcrumbs":3,"title":1},"1397":{"body":9,"breadcrumbs":4,"title":2},"1398":{"body":31,"breadcrumbs":4,"title":2},"1399":{"body":0,"breadcrumbs":4,"title":2},"14":{"body":45,"breadcrumbs":3,"title":2},"140":{"body":48,"breadcrumbs":5,"title":3},"1400":{"body":30,"breadcrumbs":5,"title":3},"1401":{"body":29,"breadcrumbs":4,"title":2},"1402":{"body":0,"breadcrumbs":4,"title":2},"1403":{"body":118,"breadcrumbs":4,"title":2},"1404":{"body":73,"breadcrumbs":4,"title":2},"1405":{"body":69,"breadcrumbs":4,"title":2},"1406":{"body":21,"breadcrumbs":5,"title":3},"1407":{"body":0,"breadcrumbs":4,"title":2},"1408":{"body":72,"breadcrumbs":4,"title":2},"1409":{"body":65,"breadcrumbs":4,"title":2},"141":{"body":56,"breadcrumbs":4,"title":2},"1410":{"body":159,"breadcrumbs":5,"title":3},"1411":{"body":0,"breadcrumbs":4,"title":2},"1412":{"body":54,"breadcrumbs":5,"title":3},"1413":{"body":93,"breadcrumbs":5,"title":3},"1414":{"body":47,"breadcrumbs":4,"title":2},"1415":{"body":0,"breadcrumbs":4,"title":2},"1416":{"body":45,"breadcrumbs":4,"title":2},"1417":{"body":0,"breadcrumbs":4,"title":2},"1418":{"body":43,"breadcrumbs":5,"title":3},"1419":{"body":59,"breadcrumbs":4,"title":2},"142":{"body":17,"breadcrumbs":4,"title":2},"1420":{"body":52,"breadcrumbs":5,"title":3},"1421":{"body":0,"breadcrumbs":4,"title":2},"1422":{"body":36,"breadcrumbs":5,"title":3},"1423":{"body":32,"breadcrumbs":4,"title":2},"1424":{"body":0,"breadcrumbs":4,"title":2},"1425":{"body":36,"breadcrumbs":5,"title":3},"1426":{"body":56,"breadcrumbs":4,"title":2},"1427":{"body":16,"breadcrumbs":3,"title":1},"1428":{"body":8,"breadcrumbs":4,"title":2},"1429":{"body":37,"breadcrumbs":3,"title":1},"143":{"body":43,"breadcrumbs":4,"title":2},"1430":{"body":0,"breadcrumbs":5,"title":3},"1431":{"body":58,"breadcrumbs":5,"title":3},"1432":{"body":49,"breadcrumbs":4,"title":2},"1433":{"body":68,"breadcrumbs":4,"title":2},"1434":{"body":0,"breadcrumbs":5,"title":3},"1435":{"body":173,"breadcrumbs":5,"title":3},"1436":{"body":85,"breadcrumbs":4,"title":2},"1437":{"body":0,"breadcrumbs":4,"title":2},"1438":{"body":152,"breadcrumbs":4,"title":2},"1439":{"body":106,"breadcrumbs":4,"title":2},"144":{"body":39,"breadcrumbs":3,"title":1},"1440":{"body":0,"breadcrumbs":3,"title":1},"1441":{"body":91,"breadcrumbs":6,"title":4},"1442":{"body":56,"breadcrumbs":4,"title":2},"1443":{"body":45,"breadcrumbs":5,"title":3},"1444":{"body":0,"breadcrumbs":4,"title":2},"1445":{"body":152,"breadcrumbs":6,"title":4},"1446":{"body":0,"breadcrumbs":4,"title":2},"1447":{"body":130,"breadcrumbs":6,"title":4},"1448":{"body":0,"breadcrumbs":3,"title":1},"1449":{"body":137,"breadcrumbs":5,"title":3},"145":{"body":13,"breadcrumbs":4,"title":2},"1450":{"body":18,"breadcrumbs":3,"title":1},"1451":{"body":9,"breadcrumbs":4,"title":2},"1452":{"body":15,"breadcrumbs":3,"title":1},"1453":{"body":0,"breadcrumbs":5,"title":3},"1454":{"body":56,"breadcrumbs":5,"title":3},"1455":{"body":48,"breadcrumbs":4,"title":2},"1456":{"body":63,"breadcrumbs":4,"title":2},"1457":{"body":0,"breadcrumbs":5,"title":3},"1458":{"body":208,"breadcrumbs":5,"title":3},"1459":{"body":69,"breadcrumbs":4,"title":2},"146":{"body":22,"breadcrumbs":4,"title":2},"1460":{"body":0,"breadcrumbs":4,"title":2},"1461":{"body":108,"breadcrumbs":5,"title":3},"1462":{"body":58,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":3,"title":1},"1464":{"body":88,"breadcrumbs":6,"title":4},"1465":{"body":53,"breadcrumbs":4,"title":2},"1466":{"body":42,"breadcrumbs":5,"title":3},"1467":{"body":0,"breadcrumbs":4,"title":2},"1468":{"body":143,"breadcrumbs":6,"title":4},"1469":{"body":0,"breadcrumbs":4,"title":2},"147":{"body":40,"breadcrumbs":4,"title":2},"1470":{"body":163,"breadcrumbs":5,"title":3},"1471":{"body":0,"breadcrumbs":3,"title":1},"1472":{"body":142,"breadcrumbs":4,"title":2},"1473":{"body":0,"breadcrumbs":4,"title":2},"1474":{"body":145,"breadcrumbs":6,"title":4},"1475":{"body":15,"breadcrumbs":3,"title":1},"1476":{"body":20,"breadcrumbs":4,"title":2},"1477":{"body":32,"breadcrumbs":3,"title":1},"1478":{"body":26,"breadcrumbs":4,"title":2},"1479":{"body":31,"breadcrumbs":3,"title":1},"148":{"body":27,"breadcrumbs":4,"title":2},"1480":{"body":14,"breadcrumbs":5,"title":3},"1481":{"body":18,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":6,"title":3},"1483":{"body":0,"breadcrumbs":5,"title":2},"1484":{"body":8,"breadcrumbs":5,"title":2},"1485":{"body":145,"breadcrumbs":5,"title":2},"1486":{"body":141,"breadcrumbs":5,"title":2},"1487":{"body":167,"breadcrumbs":5,"title":2},"1488":{"body":14,"breadcrumbs":5,"title":2},"1489":{"body":8,"breadcrumbs":5,"title":2},"149":{"body":6,"breadcrumbs":2,"title":1},"1490":{"body":0,"breadcrumbs":5,"title":2},"1491":{"body":15,"breadcrumbs":5,"title":2},"1492":{"body":0,"breadcrumbs":5,"title":2},"1493":{"body":20,"breadcrumbs":5,"title":2},"1494":{"body":0,"breadcrumbs":5,"title":2},"1495":{"body":20,"breadcrumbs":5,"title":2},"1496":{"body":8,"breadcrumbs":5,"title":2},"1497":{"body":157,"breadcrumbs":6,"title":3},"1498":{"body":112,"breadcrumbs":6,"title":3},"1499":{"body":105,"breadcrumbs":6,"title":3},"15":{"body":4,"breadcrumbs":2,"title":1},"150":{"body":0,"breadcrumbs":3,"title":2},"1500":{"body":86,"breadcrumbs":6,"title":3},"1501":{"body":61,"breadcrumbs":5,"title":2},"1502":{"body":0,"breadcrumbs":5,"title":2},"1503":{"body":49,"breadcrumbs":6,"title":3},"1504":{"body":42,"breadcrumbs":5,"title":2},"1505":{"body":21,"breadcrumbs":6,"title":3},"1506":{"body":24,"breadcrumbs":5,"title":2},"1507":{"body":22,"breadcrumbs":5,"title":2},"1508":{"body":18,"breadcrumbs":5,"title":2},"1509":{"body":0,"breadcrumbs":5,"title":2},"151":{"body":23,"breadcrumbs":4,"title":3},"1510":{"body":27,"breadcrumbs":5,"title":2},"1511":{"body":14,"breadcrumbs":5,"title":2},"1512":{"body":20,"breadcrumbs":4,"title":2},"1513":{"body":0,"breadcrumbs":3,"title":1},"1514":{"body":55,"breadcrumbs":5,"title":3},"1515":{"body":98,"breadcrumbs":5,"title":3},"1516":{"body":25,"breadcrumbs":4,"title":2},"1517":{"body":76,"breadcrumbs":5,"title":3},"1518":{"body":15,"breadcrumbs":4,"title":2},"1519":{"body":91,"breadcrumbs":4,"title":2},"152":{"body":23,"breadcrumbs":4,"title":3},"1520":{"body":91,"breadcrumbs":4,"title":2},"1521":{"body":117,"breadcrumbs":4,"title":2},"1522":{"body":35,"breadcrumbs":4,"title":2},"1523":{"body":0,"breadcrumbs":4,"title":2},"1524":{"body":15,"breadcrumbs":4,"title":2},"1525":{"body":41,"breadcrumbs":4,"title":2},"1526":{"body":21,"breadcrumbs":5,"title":3},"1527":{"body":8,"breadcrumbs":5,"title":3},"1528":{"body":22,"breadcrumbs":5,"title":3},"1529":{"body":56,"breadcrumbs":5,"title":3},"153":{"body":19,"breadcrumbs":5,"title":4},"1530":{"body":110,"breadcrumbs":5,"title":3},"1531":{"body":15,"breadcrumbs":4,"title":2},"1532":{"body":81,"breadcrumbs":5,"title":3},"1533":{"body":117,"breadcrumbs":5,"title":3},"1534":{"body":41,"breadcrumbs":4,"title":2},"1535":{"body":36,"breadcrumbs":4,"title":2},"1536":{"body":30,"breadcrumbs":4,"title":2},"1537":{"body":37,"breadcrumbs":4,"title":2},"1538":{"body":36,"breadcrumbs":6,"title":4},"1539":{"body":8,"breadcrumbs":4,"title":2},"154":{"body":0,"breadcrumbs":3,"title":2},"1540":{"body":40,"breadcrumbs":5,"title":3},"1541":{"body":0,"breadcrumbs":4,"title":2},"1542":{"body":25,"breadcrumbs":4,"title":2},"1543":{"body":28,"breadcrumbs":4,"title":2},"1544":{"body":22,"breadcrumbs":5,"title":3},"1545":{"body":0,"breadcrumbs":4,"title":2},"1546":{"body":23,"breadcrumbs":5,"title":3},"1547":{"body":27,"breadcrumbs":5,"title":3},"1548":{"body":21,"breadcrumbs":5,"title":3},"1549":{"body":27,"breadcrumbs":4,"title":2},"155":{"body":15,"breadcrumbs":3,"title":2},"1550":{"body":0,"breadcrumbs":4,"title":2},"1551":{"body":20,"breadcrumbs":4,"title":2},"1552":{"body":20,"breadcrumbs":4,"title":2},"1553":{"body":20,"breadcrumbs":5,"title":3},"1554":{"body":22,"breadcrumbs":5,"title":3},"1555":{"body":0,"breadcrumbs":5,"title":3},"1556":{"body":35,"breadcrumbs":5,"title":3},"1557":{"body":37,"breadcrumbs":5,"title":3},"1558":{"body":30,"breadcrumbs":4,"title":2},"1559":{"body":22,"breadcrumbs":5,"title":3},"156":{"body":41,"breadcrumbs":5,"title":4},"1560":{"body":0,"breadcrumbs":4,"title":2},"1561":{"body":24,"breadcrumbs":4,"title":2},"1562":{"body":27,"breadcrumbs":5,"title":3},"1563":{"body":23,"breadcrumbs":4,"title":2},"1564":{"body":21,"breadcrumbs":4,"title":2},"1565":{"body":0,"breadcrumbs":4,"title":2},"1566":{"body":24,"breadcrumbs":4,"title":2},"1567":{"body":18,"breadcrumbs":4,"title":2},"1568":{"body":16,"breadcrumbs":3,"title":1},"1569":{"body":17,"breadcrumbs":4,"title":2},"157":{"body":15,"breadcrumbs":4,"title":3},"1570":{"body":0,"breadcrumbs":4,"title":2},"1571":{"body":23,"breadcrumbs":5,"title":3},"1572":{"body":23,"breadcrumbs":5,"title":3},"1573":{"body":22,"breadcrumbs":4,"title":2},"1574":{"body":0,"breadcrumbs":4,"title":2},"1575":{"body":24,"breadcrumbs":5,"title":3},"1576":{"body":19,"breadcrumbs":5,"title":3},"1577":{"body":18,"breadcrumbs":5,"title":3},"1578":{"body":0,"breadcrumbs":4,"title":2},"1579":{"body":13,"breadcrumbs":5,"title":3},"158":{"body":0,"breadcrumbs":3,"title":2},"1580":{"body":6,"breadcrumbs":4,"title":2},"1581":{"body":8,"breadcrumbs":4,"title":2},"1582":{"body":13,"breadcrumbs":4,"title":2},"1583":{"body":13,"breadcrumbs":3,"title":1},"1584":{"body":7,"breadcrumbs":6,"title":3},"1585":{"body":22,"breadcrumbs":5,"title":2},"1586":{"body":41,"breadcrumbs":6,"title":3},"1587":{"body":40,"breadcrumbs":5,"title":2},"1588":{"body":60,"breadcrumbs":7,"title":4},"1589":{"body":52,"breadcrumbs":7,"title":4},"159":{"body":9,"breadcrumbs":4,"title":3},"1590":{"body":0,"breadcrumbs":5,"title":2},"1591":{"body":14,"breadcrumbs":6,"title":3},"1592":{"body":26,"breadcrumbs":6,"title":3},"1593":{"body":0,"breadcrumbs":4,"title":1},"1594":{"body":18,"breadcrumbs":8,"title":5},"1595":{"body":13,"breadcrumbs":5,"title":2},"1596":{"body":12,"breadcrumbs":5,"title":2},"1597":{"body":22,"breadcrumbs":6,"title":3},"1598":{"body":19,"breadcrumbs":7,"title":4},"1599":{"body":4,"breadcrumbs":6,"title":3},"16":{"body":19,"breadcrumbs":2,"title":1},"160":{"body":16,"breadcrumbs":4,"title":3},"1600":{"body":6,"breadcrumbs":4,"title":1},"1601":{"body":66,"breadcrumbs":4,"title":1},"1602":{"body":128,"breadcrumbs":4,"title":1},"1603":{"body":3,"breadcrumbs":6,"title":3},"1604":{"body":5,"breadcrumbs":4,"title":1},"1605":{"body":10,"breadcrumbs":4,"title":1},"1606":{"body":37,"breadcrumbs":4,"title":1},"1607":{"body":104,"breadcrumbs":4,"title":1},"1608":{"body":0,"breadcrumbs":6,"title":3},"1609":{"body":27,"breadcrumbs":7,"title":4},"161":{"body":9,"breadcrumbs":3,"title":2},"1610":{"body":31,"breadcrumbs":6,"title":3},"1611":{"body":14,"breadcrumbs":7,"title":4},"1612":{"body":20,"breadcrumbs":5,"title":2},"1613":{"body":28,"breadcrumbs":5,"title":2},"1614":{"body":13,"breadcrumbs":4,"title":1},"1615":{"body":9,"breadcrumbs":4,"title":2},"1616":{"body":22,"breadcrumbs":4,"title":2},"1617":{"body":0,"breadcrumbs":6,"title":4},"1618":{"body":61,"breadcrumbs":7,"title":5},"1619":{"body":46,"breadcrumbs":5,"title":3},"162":{"body":37,"breadcrumbs":3,"title":2},"1620":{"body":18,"breadcrumbs":6,"title":4},"1621":{"body":44,"breadcrumbs":6,"title":4},"1622":{"body":23,"breadcrumbs":6,"title":4},"1623":{"body":31,"breadcrumbs":4,"title":2},"1624":{"body":0,"breadcrumbs":5,"title":3},"1625":{"body":32,"breadcrumbs":4,"title":2},"1626":{"body":9,"breadcrumbs":5,"title":3},"1627":{"body":32,"breadcrumbs":5,"title":3},"1628":{"body":19,"breadcrumbs":6,"title":4},"1629":{"body":20,"breadcrumbs":5,"title":3},"163":{"body":12,"breadcrumbs":3,"title":2},"1630":{"body":61,"breadcrumbs":5,"title":3},"1631":{"body":52,"breadcrumbs":4,"title":2},"1632":{"body":25,"breadcrumbs":7,"title":5},"1633":{"body":0,"breadcrumbs":5,"title":3},"1634":{"body":23,"breadcrumbs":4,"title":2},"1635":{"body":34,"breadcrumbs":4,"title":2},"1636":{"body":0,"breadcrumbs":5,"title":3},"1637":{"body":51,"breadcrumbs":5,"title":3},"1638":{"body":22,"breadcrumbs":5,"title":3},"1639":{"body":0,"breadcrumbs":5,"title":3},"164":{"body":7,"breadcrumbs":2,"title":1},"1640":{"body":78,"breadcrumbs":5,"title":3},"1641":{"body":0,"breadcrumbs":5,"title":3},"1642":{"body":26,"breadcrumbs":4,"title":2},"1643":{"body":21,"breadcrumbs":6,"title":4},"1644":{"body":0,"breadcrumbs":5,"title":3},"1645":{"body":38,"breadcrumbs":5,"title":3},"1646":{"body":0,"breadcrumbs":4,"title":2},"1647":{"body":98,"breadcrumbs":5,"title":3},"1648":{"body":0,"breadcrumbs":5,"title":3},"1649":{"body":51,"breadcrumbs":7,"title":5},"165":{"body":10,"breadcrumbs":2,"title":1},"1650":{"body":0,"breadcrumbs":5,"title":3},"1651":{"body":49,"breadcrumbs":7,"title":5},"1652":{"body":0,"breadcrumbs":4,"title":2},"1653":{"body":46,"breadcrumbs":4,"title":2},"1654":{"body":36,"breadcrumbs":4,"title":2},"1655":{"body":35,"breadcrumbs":4,"title":2},"1656":{"body":12,"breadcrumbs":3,"title":1},"166":{"body":12,"breadcrumbs":4,"title":3},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":4,"breadcrumbs":3,"title":2},"169":{"body":7,"breadcrumbs":3,"title":2},"17":{"body":67,"breadcrumbs":4,"title":3},"170":{"body":10,"breadcrumbs":2,"title":1},"171":{"body":2,"breadcrumbs":3,"title":2},"172":{"body":16,"breadcrumbs":3,"title":2},"173":{"body":6,"breadcrumbs":3,"title":2},"174":{"body":49,"breadcrumbs":3,"title":2},"175":{"body":55,"breadcrumbs":3,"title":2},"176":{"body":29,"breadcrumbs":3,"title":2},"177":{"body":20,"breadcrumbs":3,"title":2},"178":{"body":20,"breadcrumbs":2,"title":1},"179":{"body":19,"breadcrumbs":3,"title":2},"18":{"body":0,"breadcrumbs":4,"title":3},"180":{"body":47,"breadcrumbs":3,"title":2},"181":{"body":0,"breadcrumbs":2,"title":1},"182":{"body":34,"breadcrumbs":3,"title":2},"183":{"body":30,"breadcrumbs":3,"title":2},"184":{"body":16,"breadcrumbs":3,"title":2},"185":{"body":30,"breadcrumbs":4,"title":2},"186":{"body":16,"breadcrumbs":4,"title":2},"187":{"body":39,"breadcrumbs":4,"title":2},"188":{"body":0,"breadcrumbs":3,"title":1},"189":{"body":18,"breadcrumbs":4,"title":2},"19":{"body":31,"breadcrumbs":4,"title":3},"190":{"body":16,"breadcrumbs":4,"title":2},"191":{"body":0,"breadcrumbs":4,"title":2},"192":{"body":11,"breadcrumbs":4,"title":2},"193":{"body":13,"breadcrumbs":4,"title":2},"194":{"body":0,"breadcrumbs":4,"title":2},"195":{"body":51,"breadcrumbs":4,"title":2},"196":{"body":69,"breadcrumbs":4,"title":2},"197":{"body":76,"breadcrumbs":4,"title":2},"198":{"body":27,"breadcrumbs":4,"title":2},"199":{"body":0,"breadcrumbs":4,"title":2},"2":{"body":56,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":4,"title":3},"200":{"body":62,"breadcrumbs":4,"title":2},"201":{"body":0,"breadcrumbs":4,"title":2},"202":{"body":118,"breadcrumbs":4,"title":2},"203":{"body":65,"breadcrumbs":4,"title":2},"204":{"body":62,"breadcrumbs":4,"title":2},"205":{"body":17,"breadcrumbs":5,"title":3},"206":{"body":59,"breadcrumbs":4,"title":2},"207":{"body":29,"breadcrumbs":4,"title":2},"208":{"body":0,"breadcrumbs":4,"title":2},"209":{"body":23,"breadcrumbs":5,"title":3},"21":{"body":22,"breadcrumbs":3,"title":2},"210":{"body":46,"breadcrumbs":5,"title":3},"211":{"body":18,"breadcrumbs":5,"title":3},"212":{"body":19,"breadcrumbs":4,"title":2},"213":{"body":15,"breadcrumbs":4,"title":2},"214":{"body":15,"breadcrumbs":4,"title":2},"215":{"body":20,"breadcrumbs":3,"title":1},"216":{"body":0,"breadcrumbs":5,"title":3},"217":{"body":16,"breadcrumbs":5,"title":3},"218":{"body":17,"breadcrumbs":4,"title":2},"219":{"body":50,"breadcrumbs":5,"title":3},"22":{"body":0,"breadcrumbs":3,"title":2},"220":{"body":28,"breadcrumbs":4,"title":2},"221":{"body":26,"breadcrumbs":5,"title":3},"222":{"body":35,"breadcrumbs":5,"title":3},"223":{"body":17,"breadcrumbs":4,"title":2},"224":{"body":25,"breadcrumbs":5,"title":3},"225":{"body":18,"breadcrumbs":4,"title":2},"226":{"body":0,"breadcrumbs":4,"title":2},"227":{"body":43,"breadcrumbs":4,"title":2},"228":{"body":15,"breadcrumbs":5,"title":3},"229":{"body":16,"breadcrumbs":4,"title":2},"23":{"body":16,"breadcrumbs":2,"title":1},"230":{"body":0,"breadcrumbs":4,"title":2},"231":{"body":3,"breadcrumbs":4,"title":2},"232":{"body":4,"breadcrumbs":6,"title":4},"233":{"body":17,"breadcrumbs":4,"title":2},"234":{"body":20,"breadcrumbs":4,"title":2},"235":{"body":105,"breadcrumbs":5,"title":3},"236":{"body":0,"breadcrumbs":4,"title":2},"237":{"body":26,"breadcrumbs":3,"title":1},"238":{"body":22,"breadcrumbs":4,"title":2},"239":{"body":18,"breadcrumbs":3,"title":1},"24":{"body":21,"breadcrumbs":2,"title":1},"240":{"body":14,"breadcrumbs":4,"title":2},"241":{"body":16,"breadcrumbs":4,"title":2},"242":{"body":22,"breadcrumbs":4,"title":2},"243":{"body":0,"breadcrumbs":4,"title":2},"244":{"body":32,"breadcrumbs":4,"title":2},"245":{"body":9,"breadcrumbs":3,"title":1},"246":{"body":12,"breadcrumbs":4,"title":2},"247":{"body":29,"breadcrumbs":4,"title":2},"248":{"body":72,"breadcrumbs":4,"title":2},"249":{"body":46,"breadcrumbs":5,"title":3},"25":{"body":14,"breadcrumbs":2,"title":1},"250":{"body":32,"breadcrumbs":4,"title":2},"251":{"body":0,"breadcrumbs":4,"title":2},"252":{"body":20,"breadcrumbs":4,"title":2},"253":{"body":33,"breadcrumbs":5,"title":3},"254":{"body":17,"breadcrumbs":4,"title":2},"255":{"body":0,"breadcrumbs":4,"title":2},"256":{"body":22,"breadcrumbs":4,"title":2},"257":{"body":7,"breadcrumbs":4,"title":2},"258":{"body":5,"breadcrumbs":4,"title":2},"259":{"body":6,"breadcrumbs":4,"title":2},"26":{"body":20,"breadcrumbs":2,"title":1},"260":{"body":34,"breadcrumbs":4,"title":2},"261":{"body":10,"breadcrumbs":4,"title":2},"262":{"body":17,"breadcrumbs":5,"title":3},"263":{"body":0,"breadcrumbs":4,"title":2},"264":{"body":19,"breadcrumbs":4,"title":2},"265":{"body":16,"breadcrumbs":4,"title":2},"266":{"body":17,"breadcrumbs":4,"title":2},"267":{"body":28,"breadcrumbs":4,"title":2},"268":{"body":0,"breadcrumbs":5,"title":3},"269":{"body":10,"breadcrumbs":6,"title":4},"27":{"body":64,"breadcrumbs":3,"title":2},"270":{"body":12,"breadcrumbs":6,"title":4},"271":{"body":0,"breadcrumbs":4,"title":2},"272":{"body":23,"breadcrumbs":4,"title":2},"273":{"body":19,"breadcrumbs":3,"title":1},"274":{"body":18,"breadcrumbs":3,"title":1},"275":{"body":0,"breadcrumbs":4,"title":2},"276":{"body":23,"breadcrumbs":5,"title":3},"277":{"body":35,"breadcrumbs":5,"title":3},"278":{"body":17,"breadcrumbs":5,"title":3},"279":{"body":13,"breadcrumbs":4,"title":2},"28":{"body":0,"breadcrumbs":4,"title":3},"280":{"body":17,"breadcrumbs":6,"title":3},"281":{"body":18,"breadcrumbs":4,"title":1},"282":{"body":34,"breadcrumbs":5,"title":2},"283":{"body":0,"breadcrumbs":5,"title":2},"284":{"body":15,"breadcrumbs":5,"title":2},"285":{"body":19,"breadcrumbs":4,"title":1},"286":{"body":0,"breadcrumbs":5,"title":2},"287":{"body":7,"breadcrumbs":6,"title":3},"288":{"body":10,"breadcrumbs":6,"title":3},"289":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":17,"breadcrumbs":4,"title":3},"290":{"body":0,"breadcrumbs":6,"title":3},"291":{"body":16,"breadcrumbs":5,"title":2},"292":{"body":63,"breadcrumbs":5,"title":2},"293":{"body":31,"breadcrumbs":5,"title":2},"294":{"body":64,"breadcrumbs":7,"title":4},"295":{"body":25,"breadcrumbs":5,"title":2},"296":{"body":0,"breadcrumbs":6,"title":3},"297":{"body":22,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":7,"title":4},"299":{"body":27,"breadcrumbs":5,"title":2},"3":{"body":14,"breadcrumbs":4,"title":3},"30":{"body":17,"breadcrumbs":4,"title":3},"300":{"body":18,"breadcrumbs":5,"title":2},"301":{"body":11,"breadcrumbs":8,"title":5},"302":{"body":20,"breadcrumbs":4,"title":1},"303":{"body":20,"breadcrumbs":4,"title":1},"304":{"body":33,"breadcrumbs":6,"title":3},"305":{"body":54,"breadcrumbs":5,"title":2},"306":{"body":24,"breadcrumbs":5,"title":2},"307":{"body":22,"breadcrumbs":7,"title":4},"308":{"body":33,"breadcrumbs":4,"title":1},"309":{"body":48,"breadcrumbs":5,"title":2},"31":{"body":17,"breadcrumbs":4,"title":3},"310":{"body":0,"breadcrumbs":6,"title":3},"311":{"body":51,"breadcrumbs":6,"title":3},"312":{"body":48,"breadcrumbs":6,"title":3},"313":{"body":23,"breadcrumbs":6,"title":3},"314":{"body":51,"breadcrumbs":8,"title":5},"315":{"body":26,"breadcrumbs":6,"title":3},"316":{"body":18,"breadcrumbs":7,"title":4},"317":{"body":0,"breadcrumbs":6,"title":3},"318":{"body":25,"breadcrumbs":7,"title":4},"319":{"body":58,"breadcrumbs":6,"title":3},"32":{"body":80,"breadcrumbs":4,"title":3},"320":{"body":46,"breadcrumbs":6,"title":3},"321":{"body":23,"breadcrumbs":6,"title":3},"322":{"body":26,"breadcrumbs":5,"title":2},"323":{"body":20,"breadcrumbs":6,"title":3},"324":{"body":0,"breadcrumbs":5,"title":2},"325":{"body":22,"breadcrumbs":5,"title":2},"326":{"body":32,"breadcrumbs":5,"title":2},"327":{"body":21,"breadcrumbs":4,"title":1},"328":{"body":0,"breadcrumbs":4,"title":1},"329":{"body":20,"breadcrumbs":6,"title":3},"33":{"body":41,"breadcrumbs":3,"title":2},"330":{"body":20,"breadcrumbs":6,"title":3},"331":{"body":20,"breadcrumbs":5,"title":2},"332":{"body":51,"breadcrumbs":5,"title":2},"333":{"body":19,"breadcrumbs":5,"title":2},"334":{"body":15,"breadcrumbs":6,"title":3},"335":{"body":6,"breadcrumbs":6,"title":3},"336":{"body":54,"breadcrumbs":5,"title":2},"337":{"body":0,"breadcrumbs":5,"title":2},"338":{"body":36,"breadcrumbs":4,"title":1},"339":{"body":41,"breadcrumbs":4,"title":1},"34":{"body":19,"breadcrumbs":3,"title":2},"340":{"body":0,"breadcrumbs":5,"title":2},"341":{"body":41,"breadcrumbs":5,"title":2},"342":{"body":21,"breadcrumbs":5,"title":2},"343":{"body":19,"breadcrumbs":6,"title":3},"344":{"body":0,"breadcrumbs":5,"title":2},"345":{"body":35,"breadcrumbs":5,"title":2},"346":{"body":16,"breadcrumbs":6,"title":3},"347":{"body":20,"breadcrumbs":5,"title":2},"348":{"body":23,"breadcrumbs":5,"title":2},"349":{"body":37,"breadcrumbs":5,"title":2},"35":{"body":6,"breadcrumbs":4,"title":3},"350":{"body":18,"breadcrumbs":5,"title":2},"351":{"body":28,"breadcrumbs":5,"title":2},"352":{"body":0,"breadcrumbs":5,"title":2},"353":{"body":25,"breadcrumbs":5,"title":2},"354":{"body":35,"breadcrumbs":4,"title":1},"355":{"body":14,"breadcrumbs":6,"title":3},"356":{"body":0,"breadcrumbs":4,"title":1},"357":{"body":47,"breadcrumbs":5,"title":2},"358":{"body":13,"breadcrumbs":5,"title":2},"359":{"body":0,"breadcrumbs":4,"title":1},"36":{"body":129,"breadcrumbs":3,"title":2},"360":{"body":16,"breadcrumbs":6,"title":3},"361":{"body":47,"breadcrumbs":6,"title":3},"362":{"body":38,"breadcrumbs":5,"title":2},"363":{"body":21,"breadcrumbs":5,"title":2},"364":{"body":34,"breadcrumbs":5,"title":2},"365":{"body":70,"breadcrumbs":5,"title":2},"366":{"body":15,"breadcrumbs":5,"title":2},"367":{"body":45,"breadcrumbs":6,"title":3},"368":{"body":21,"breadcrumbs":4,"title":1},"369":{"body":39,"breadcrumbs":5,"title":2},"37":{"body":23,"breadcrumbs":4,"title":3},"370":{"body":0,"breadcrumbs":5,"title":2},"371":{"body":29,"breadcrumbs":5,"title":2},"372":{"body":43,"breadcrumbs":5,"title":2},"373":{"body":0,"breadcrumbs":4,"title":1},"374":{"body":9,"breadcrumbs":5,"title":2},"375":{"body":44,"breadcrumbs":5,"title":2},"376":{"body":22,"breadcrumbs":5,"title":2},"377":{"body":0,"breadcrumbs":4,"title":1},"378":{"body":13,"breadcrumbs":5,"title":2},"379":{"body":45,"breadcrumbs":5,"title":2},"38":{"body":43,"breadcrumbs":4,"title":3},"380":{"body":41,"breadcrumbs":5,"title":2},"381":{"body":17,"breadcrumbs":5,"title":2},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":43,"breadcrumbs":5,"title":2},"384":{"body":12,"breadcrumbs":5,"title":2},"385":{"body":23,"breadcrumbs":5,"title":2},"386":{"body":27,"breadcrumbs":6,"title":3},"387":{"body":52,"breadcrumbs":5,"title":2},"388":{"body":51,"breadcrumbs":6,"title":3},"389":{"body":19,"breadcrumbs":5,"title":2},"39":{"body":8,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":5,"title":2},"391":{"body":24,"breadcrumbs":4,"title":1},"392":{"body":62,"breadcrumbs":4,"title":1},"393":{"body":0,"breadcrumbs":4,"title":1},"394":{"body":16,"breadcrumbs":5,"title":2},"395":{"body":13,"breadcrumbs":5,"title":2},"396":{"body":15,"breadcrumbs":5,"title":2},"397":{"body":15,"breadcrumbs":5,"title":2},"398":{"body":19,"breadcrumbs":3,"title":2},"399":{"body":14,"breadcrumbs":2,"title":1},"4":{"body":0,"breadcrumbs":2,"title":1},"40":{"body":47,"breadcrumbs":8,"title":6},"400":{"body":0,"breadcrumbs":2,"title":1},"401":{"body":3,"breadcrumbs":3,"title":2},"402":{"body":3,"breadcrumbs":3,"title":2},"403":{"body":3,"breadcrumbs":3,"title":2},"404":{"body":40,"breadcrumbs":3,"title":2},"405":{"body":5,"breadcrumbs":3,"title":2},"406":{"body":13,"breadcrumbs":4,"title":3},"407":{"body":3,"breadcrumbs":7,"title":6},"408":{"body":5,"breadcrumbs":3,"title":2},"409":{"body":11,"breadcrumbs":4,"title":3},"41":{"body":37,"breadcrumbs":7,"title":5},"410":{"body":58,"breadcrumbs":3,"title":2},"411":{"body":0,"breadcrumbs":2,"title":1},"412":{"body":32,"breadcrumbs":3,"title":2},"413":{"body":24,"breadcrumbs":3,"title":2},"414":{"body":17,"breadcrumbs":3,"title":2},"415":{"body":3,"breadcrumbs":3,"title":2},"416":{"body":6,"breadcrumbs":4,"title":3},"417":{"body":14,"breadcrumbs":4,"title":3},"418":{"body":9,"breadcrumbs":3,"title":2},"419":{"body":2,"breadcrumbs":4,"title":3},"42":{"body":33,"breadcrumbs":7,"title":5},"420":{"body":0,"breadcrumbs":3,"title":2},"421":{"body":13,"breadcrumbs":4,"title":3},"422":{"body":12,"breadcrumbs":3,"title":2},"423":{"body":10,"breadcrumbs":5,"title":4},"424":{"body":14,"breadcrumbs":5,"title":4},"425":{"body":0,"breadcrumbs":3,"title":2},"426":{"body":15,"breadcrumbs":3,"title":2},"427":{"body":22,"breadcrumbs":3,"title":2},"428":{"body":40,"breadcrumbs":3,"title":2},"429":{"body":0,"breadcrumbs":3,"title":2},"43":{"body":33,"breadcrumbs":9,"title":7},"430":{"body":19,"breadcrumbs":3,"title":2},"431":{"body":20,"breadcrumbs":3,"title":2},"432":{"body":15,"breadcrumbs":3,"title":2},"433":{"body":12,"breadcrumbs":3,"title":2},"434":{"body":31,"breadcrumbs":3,"title":2},"435":{"body":17,"breadcrumbs":2,"title":1},"436":{"body":18,"breadcrumbs":4,"title":2},"437":{"body":42,"breadcrumbs":6,"title":4},"438":{"body":119,"breadcrumbs":4,"title":2},"439":{"body":29,"breadcrumbs":5,"title":3},"44":{"body":28,"breadcrumbs":8,"title":6},"440":{"body":157,"breadcrumbs":4,"title":2},"441":{"body":109,"breadcrumbs":3,"title":1},"442":{"body":39,"breadcrumbs":3,"title":1},"443":{"body":9,"breadcrumbs":3,"title":1},"444":{"body":15,"breadcrumbs":3,"title":1},"445":{"body":25,"breadcrumbs":3,"title":1},"446":{"body":51,"breadcrumbs":3,"title":1},"447":{"body":44,"breadcrumbs":4,"title":2},"448":{"body":28,"breadcrumbs":3,"title":1},"449":{"body":43,"breadcrumbs":4,"title":2},"45":{"body":35,"breadcrumbs":9,"title":7},"450":{"body":44,"breadcrumbs":3,"title":1},"451":{"body":49,"breadcrumbs":3,"title":1},"452":{"body":58,"breadcrumbs":6,"title":4},"453":{"body":24,"breadcrumbs":3,"title":1},"454":{"body":21,"breadcrumbs":4,"title":2},"455":{"body":13,"breadcrumbs":3,"title":1},"456":{"body":20,"breadcrumbs":3,"title":1},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":22,"breadcrumbs":3,"title":1},"459":{"body":23,"breadcrumbs":3,"title":1},"46":{"body":35,"breadcrumbs":10,"title":8},"460":{"body":27,"breadcrumbs":3,"title":1},"461":{"body":25,"breadcrumbs":3,"title":1},"462":{"body":105,"breadcrumbs":4,"title":2},"463":{"body":48,"breadcrumbs":4,"title":2},"464":{"body":47,"breadcrumbs":4,"title":2},"465":{"body":15,"breadcrumbs":3,"title":1},"466":{"body":13,"breadcrumbs":4,"title":2},"467":{"body":34,"breadcrumbs":6,"title":4},"468":{"body":0,"breadcrumbs":4,"title":2},"469":{"body":21,"breadcrumbs":5,"title":3},"47":{"body":16,"breadcrumbs":4,"title":2},"470":{"body":17,"breadcrumbs":4,"title":2},"471":{"body":0,"breadcrumbs":4,"title":2},"472":{"body":30,"breadcrumbs":5,"title":3},"473":{"body":14,"breadcrumbs":4,"title":2},"474":{"body":11,"breadcrumbs":4,"title":2},"475":{"body":14,"breadcrumbs":4,"title":2},"476":{"body":20,"breadcrumbs":3,"title":1},"477":{"body":0,"breadcrumbs":4,"title":2},"478":{"body":11,"breadcrumbs":5,"title":3},"479":{"body":13,"breadcrumbs":6,"title":4},"48":{"body":10,"breadcrumbs":3,"title":1},"480":{"body":0,"breadcrumbs":4,"title":2},"481":{"body":39,"breadcrumbs":5,"title":3},"482":{"body":13,"breadcrumbs":5,"title":3},"483":{"body":0,"breadcrumbs":4,"title":2},"484":{"body":11,"breadcrumbs":5,"title":3},"485":{"body":23,"breadcrumbs":5,"title":3},"486":{"body":0,"breadcrumbs":4,"title":2},"487":{"body":28,"breadcrumbs":4,"title":2},"488":{"body":13,"breadcrumbs":4,"title":2},"489":{"body":12,"breadcrumbs":5,"title":3},"49":{"body":50,"breadcrumbs":4,"title":2},"490":{"body":0,"breadcrumbs":4,"title":2},"491":{"body":11,"breadcrumbs":4,"title":2},"492":{"body":20,"breadcrumbs":4,"title":2},"493":{"body":14,"breadcrumbs":5,"title":3},"494":{"body":7,"breadcrumbs":4,"title":2},"495":{"body":17,"breadcrumbs":4,"title":2},"496":{"body":19,"breadcrumbs":4,"title":2},"497":{"body":0,"breadcrumbs":4,"title":2},"498":{"body":13,"breadcrumbs":4,"title":2},"499":{"body":42,"breadcrumbs":4,"title":2},"5":{"body":17,"breadcrumbs":2,"title":1},"50":{"body":24,"breadcrumbs":4,"title":2},"500":{"body":41,"breadcrumbs":4,"title":2},"501":{"body":91,"breadcrumbs":4,"title":2},"502":{"body":20,"breadcrumbs":4,"title":2},"503":{"body":27,"breadcrumbs":6,"title":3},"504":{"body":4,"breadcrumbs":4,"title":1},"505":{"body":10,"breadcrumbs":6,"title":3},"506":{"body":27,"breadcrumbs":5,"title":2},"507":{"body":20,"breadcrumbs":5,"title":2},"508":{"body":72,"breadcrumbs":9,"title":6},"509":{"body":21,"breadcrumbs":5,"title":2},"51":{"body":73,"breadcrumbs":6,"title":4},"510":{"body":45,"breadcrumbs":5,"title":2},"511":{"body":4,"breadcrumbs":6,"title":3},"512":{"body":21,"breadcrumbs":6,"title":3},"513":{"body":13,"breadcrumbs":3,"title":2},"514":{"body":0,"breadcrumbs":3,"title":2},"515":{"body":52,"breadcrumbs":5,"title":4},"516":{"body":41,"breadcrumbs":5,"title":4},"517":{"body":10,"breadcrumbs":2,"title":1},"518":{"body":18,"breadcrumbs":3,"title":2},"519":{"body":4,"breadcrumbs":3,"title":2},"52":{"body":10,"breadcrumbs":3,"title":1},"520":{"body":26,"breadcrumbs":4,"title":3},"521":{"body":29,"breadcrumbs":6,"title":3},"522":{"body":0,"breadcrumbs":6,"title":3},"523":{"body":6,"breadcrumbs":5,"title":2},"524":{"body":11,"breadcrumbs":7,"title":4},"525":{"body":28,"breadcrumbs":7,"title":4},"526":{"body":53,"breadcrumbs":5,"title":2},"527":{"body":11,"breadcrumbs":4,"title":1},"528":{"body":0,"breadcrumbs":6,"title":3},"529":{"body":15,"breadcrumbs":5,"title":2},"53":{"body":58,"breadcrumbs":4,"title":2},"530":{"body":23,"breadcrumbs":5,"title":2},"531":{"body":36,"breadcrumbs":4,"title":1},"532":{"body":37,"breadcrumbs":4,"title":1},"533":{"body":48,"breadcrumbs":6,"title":3},"534":{"body":51,"breadcrumbs":5,"title":2},"535":{"body":19,"breadcrumbs":5,"title":2},"536":{"body":16,"breadcrumbs":5,"title":2},"537":{"body":24,"breadcrumbs":4,"title":2},"538":{"body":0,"breadcrumbs":5,"title":3},"539":{"body":4,"breadcrumbs":4,"title":2},"54":{"body":75,"breadcrumbs":5,"title":3},"540":{"body":11,"breadcrumbs":6,"title":4},"541":{"body":26,"breadcrumbs":6,"title":4},"542":{"body":37,"breadcrumbs":4,"title":2},"543":{"body":74,"breadcrumbs":3,"title":1},"544":{"body":40,"breadcrumbs":3,"title":1},"545":{"body":53,"breadcrumbs":5,"title":3},"546":{"body":54,"breadcrumbs":7,"title":5},"547":{"body":23,"breadcrumbs":5,"title":3},"548":{"body":21,"breadcrumbs":5,"title":3},"549":{"body":33,"breadcrumbs":5,"title":3},"55":{"body":51,"breadcrumbs":4,"title":2},"550":{"body":46,"breadcrumbs":4,"title":2},"551":{"body":45,"breadcrumbs":4,"title":2},"552":{"body":23,"breadcrumbs":4,"title":2},"553":{"body":20,"breadcrumbs":4,"title":2},"554":{"body":41,"breadcrumbs":4,"title":2},"555":{"body":60,"breadcrumbs":3,"title":1},"556":{"body":33,"breadcrumbs":3,"title":1},"557":{"body":54,"breadcrumbs":7,"title":5},"558":{"body":16,"breadcrumbs":5,"title":3},"559":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":8,"breadcrumbs":3,"title":1},"560":{"body":22,"breadcrumbs":4,"title":2},"561":{"body":16,"breadcrumbs":4,"title":2},"562":{"body":18,"breadcrumbs":4,"title":2},"563":{"body":41,"breadcrumbs":3,"title":1},"564":{"body":0,"breadcrumbs":4,"title":2},"565":{"body":24,"breadcrumbs":4,"title":2},"566":{"body":0,"breadcrumbs":4,"title":2},"567":{"body":105,"breadcrumbs":5,"title":3},"568":{"body":56,"breadcrumbs":4,"title":2},"569":{"body":0,"breadcrumbs":4,"title":2},"57":{"body":40,"breadcrumbs":4,"title":2},"570":{"body":96,"breadcrumbs":5,"title":3},"571":{"body":7,"breadcrumbs":4,"title":2},"572":{"body":66,"breadcrumbs":5,"title":3},"573":{"body":0,"breadcrumbs":4,"title":2},"574":{"body":86,"breadcrumbs":5,"title":3},"575":{"body":0,"breadcrumbs":4,"title":2},"576":{"body":18,"breadcrumbs":3,"title":1},"577":{"body":16,"breadcrumbs":3,"title":1},"578":{"body":18,"breadcrumbs":3,"title":1},"579":{"body":40,"breadcrumbs":3,"title":1},"58":{"body":32,"breadcrumbs":4,"title":2},"580":{"body":36,"breadcrumbs":3,"title":1},"581":{"body":0,"breadcrumbs":4,"title":2},"582":{"body":81,"breadcrumbs":4,"title":2},"583":{"body":67,"breadcrumbs":4,"title":2},"584":{"body":0,"breadcrumbs":4,"title":2},"585":{"body":11,"breadcrumbs":4,"title":2},"586":{"body":21,"breadcrumbs":4,"title":2},"587":{"body":16,"breadcrumbs":4,"title":2},"588":{"body":27,"breadcrumbs":4,"title":2},"589":{"body":17,"breadcrumbs":4,"title":2},"59":{"body":37,"breadcrumbs":4,"title":2},"590":{"body":6,"breadcrumbs":4,"title":2},"591":{"body":3,"breadcrumbs":3,"title":1},"592":{"body":34,"breadcrumbs":6,"title":4},"593":{"body":5,"breadcrumbs":4,"title":2},"594":{"body":17,"breadcrumbs":4,"title":2},"595":{"body":19,"breadcrumbs":3,"title":1},"596":{"body":38,"breadcrumbs":4,"title":2},"597":{"body":83,"breadcrumbs":4,"title":2},"598":{"body":29,"breadcrumbs":4,"title":2},"599":{"body":27,"breadcrumbs":4,"title":2},"6":{"body":17,"breadcrumbs":3,"title":2},"60":{"body":8,"breadcrumbs":3,"title":1},"600":{"body":54,"breadcrumbs":4,"title":2},"601":{"body":42,"breadcrumbs":4,"title":2},"602":{"body":23,"breadcrumbs":4,"title":2},"603":{"body":26,"breadcrumbs":4,"title":2},"604":{"body":52,"breadcrumbs":4,"title":2},"605":{"body":31,"breadcrumbs":4,"title":2},"606":{"body":20,"breadcrumbs":4,"title":2},"607":{"body":32,"breadcrumbs":4,"title":2},"608":{"body":26,"breadcrumbs":5,"title":3},"609":{"body":19,"breadcrumbs":5,"title":3},"61":{"body":67,"breadcrumbs":4,"title":2},"610":{"body":21,"breadcrumbs":5,"title":3},"611":{"body":21,"breadcrumbs":4,"title":2},"612":{"body":18,"breadcrumbs":4,"title":2},"613":{"body":26,"breadcrumbs":4,"title":2},"614":{"body":0,"breadcrumbs":4,"title":2},"615":{"body":22,"breadcrumbs":3,"title":1},"616":{"body":39,"breadcrumbs":3,"title":1},"617":{"body":4,"breadcrumbs":4,"title":2},"618":{"body":16,"breadcrumbs":3,"title":1},"619":{"body":16,"breadcrumbs":3,"title":1},"62":{"body":33,"breadcrumbs":4,"title":2},"620":{"body":5,"breadcrumbs":4,"title":2},"621":{"body":23,"breadcrumbs":5,"title":3},"622":{"body":8,"breadcrumbs":5,"title":3},"623":{"body":22,"breadcrumbs":4,"title":2},"624":{"body":129,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":4,"title":2},"626":{"body":21,"breadcrumbs":3,"title":1},"627":{"body":21,"breadcrumbs":3,"title":2},"628":{"body":16,"breadcrumbs":2,"title":1},"629":{"body":0,"breadcrumbs":2,"title":1},"63":{"body":26,"breadcrumbs":4,"title":2},"630":{"body":27,"breadcrumbs":3,"title":2},"631":{"body":6,"breadcrumbs":3,"title":2},"632":{"body":3,"breadcrumbs":3,"title":2},"633":{"body":24,"breadcrumbs":3,"title":2},"634":{"body":49,"breadcrumbs":3,"title":2},"635":{"body":8,"breadcrumbs":3,"title":2},"636":{"body":19,"breadcrumbs":3,"title":2},"637":{"body":20,"breadcrumbs":3,"title":2},"638":{"body":0,"breadcrumbs":2,"title":1},"639":{"body":18,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":4,"title":2},"640":{"body":9,"breadcrumbs":4,"title":3},"641":{"body":14,"breadcrumbs":3,"title":2},"642":{"body":17,"breadcrumbs":3,"title":2},"643":{"body":3,"breadcrumbs":3,"title":2},"644":{"body":6,"breadcrumbs":4,"title":3},"645":{"body":14,"breadcrumbs":4,"title":3},"646":{"body":9,"breadcrumbs":3,"title":2},"647":{"body":2,"breadcrumbs":4,"title":3},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":13,"breadcrumbs":4,"title":3},"65":{"body":28,"breadcrumbs":4,"title":2},"650":{"body":12,"breadcrumbs":3,"title":2},"651":{"body":10,"breadcrumbs":5,"title":4},"652":{"body":14,"breadcrumbs":5,"title":4},"653":{"body":0,"breadcrumbs":3,"title":2},"654":{"body":17,"breadcrumbs":3,"title":2},"655":{"body":10,"breadcrumbs":3,"title":2},"656":{"body":42,"breadcrumbs":3,"title":2},"657":{"body":0,"breadcrumbs":4,"title":3},"658":{"body":22,"breadcrumbs":3,"title":2},"659":{"body":20,"breadcrumbs":3,"title":2},"66":{"body":27,"breadcrumbs":4,"title":2},"660":{"body":19,"breadcrumbs":3,"title":2},"661":{"body":42,"breadcrumbs":4,"title":3},"662":{"body":0,"breadcrumbs":3,"title":2},"663":{"body":25,"breadcrumbs":3,"title":2},"664":{"body":20,"breadcrumbs":3,"title":2},"665":{"body":18,"breadcrumbs":3,"title":2},"666":{"body":20,"breadcrumbs":3,"title":2},"667":{"body":28,"breadcrumbs":5,"title":4},"668":{"body":62,"breadcrumbs":3,"title":2},"669":{"body":27,"breadcrumbs":3,"title":2},"67":{"body":30,"breadcrumbs":4,"title":2},"670":{"body":20,"breadcrumbs":2,"title":1},"671":{"body":18,"breadcrumbs":4,"title":2},"672":{"body":104,"breadcrumbs":4,"title":2},"673":{"body":29,"breadcrumbs":5,"title":3},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":108,"breadcrumbs":7,"title":5},"676":{"body":50,"breadcrumbs":4,"title":2},"677":{"body":8,"breadcrumbs":3,"title":1},"678":{"body":14,"breadcrumbs":3,"title":1},"679":{"body":20,"breadcrumbs":3,"title":1},"68":{"body":7,"breadcrumbs":5,"title":3},"680":{"body":40,"breadcrumbs":3,"title":1},"681":{"body":43,"breadcrumbs":4,"title":2},"682":{"body":29,"breadcrumbs":3,"title":1},"683":{"body":25,"breadcrumbs":6,"title":4},"684":{"body":26,"breadcrumbs":3,"title":1},"685":{"body":20,"breadcrumbs":4,"title":2},"686":{"body":31,"breadcrumbs":4,"title":2},"687":{"body":85,"breadcrumbs":3,"title":1},"688":{"body":82,"breadcrumbs":6,"title":4},"689":{"body":25,"breadcrumbs":3,"title":1},"69":{"body":22,"breadcrumbs":4,"title":2},"690":{"body":17,"breadcrumbs":4,"title":2},"691":{"body":18,"breadcrumbs":3,"title":1},"692":{"body":27,"breadcrumbs":3,"title":1},"693":{"body":5,"breadcrumbs":4,"title":2},"694":{"body":19,"breadcrumbs":3,"title":1},"695":{"body":24,"breadcrumbs":3,"title":1},"696":{"body":24,"breadcrumbs":3,"title":1},"697":{"body":31,"breadcrumbs":3,"title":1},"698":{"body":15,"breadcrumbs":3,"title":1},"699":{"body":105,"breadcrumbs":4,"title":2},"7":{"body":17,"breadcrumbs":3,"title":2},"70":{"body":20,"breadcrumbs":5,"title":3},"700":{"body":58,"breadcrumbs":4,"title":2},"701":{"body":48,"breadcrumbs":4,"title":2},"702":{"body":15,"breadcrumbs":3,"title":1},"703":{"body":23,"breadcrumbs":4,"title":2},"704":{"body":0,"breadcrumbs":4,"title":2},"705":{"body":12,"breadcrumbs":5,"title":3},"706":{"body":17,"breadcrumbs":4,"title":2},"707":{"body":0,"breadcrumbs":4,"title":2},"708":{"body":25,"breadcrumbs":5,"title":3},"709":{"body":12,"breadcrumbs":4,"title":2},"71":{"body":6,"breadcrumbs":4,"title":2},"710":{"body":9,"breadcrumbs":4,"title":2},"711":{"body":12,"breadcrumbs":4,"title":2},"712":{"body":18,"breadcrumbs":3,"title":1},"713":{"body":0,"breadcrumbs":4,"title":2},"714":{"body":9,"breadcrumbs":5,"title":3},"715":{"body":11,"breadcrumbs":6,"title":4},"716":{"body":0,"breadcrumbs":4,"title":2},"717":{"body":38,"breadcrumbs":5,"title":3},"718":{"body":11,"breadcrumbs":5,"title":3},"719":{"body":0,"breadcrumbs":4,"title":2},"72":{"body":23,"breadcrumbs":4,"title":2},"720":{"body":9,"breadcrumbs":5,"title":3},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":0,"breadcrumbs":4,"title":2},"723":{"body":26,"breadcrumbs":4,"title":2},"724":{"body":11,"breadcrumbs":4,"title":2},"725":{"body":10,"breadcrumbs":5,"title":3},"726":{"body":0,"breadcrumbs":4,"title":2},"727":{"body":16,"breadcrumbs":4,"title":2},"728":{"body":18,"breadcrumbs":4,"title":2},"729":{"body":12,"breadcrumbs":5,"title":3},"73":{"body":19,"breadcrumbs":4,"title":2},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":15,"breadcrumbs":4,"title":2},"732":{"body":17,"breadcrumbs":4,"title":2},"733":{"body":0,"breadcrumbs":4,"title":2},"734":{"body":11,"breadcrumbs":4,"title":2},"735":{"body":16,"breadcrumbs":4,"title":2},"736":{"body":35,"breadcrumbs":4,"title":2},"737":{"body":78,"breadcrumbs":4,"title":2},"738":{"body":0,"breadcrumbs":5,"title":3},"739":{"body":29,"breadcrumbs":5,"title":3},"74":{"body":19,"breadcrumbs":4,"title":2},"740":{"body":21,"breadcrumbs":5,"title":3},"741":{"body":0,"breadcrumbs":4,"title":2},"742":{"body":5,"breadcrumbs":4,"title":2},"743":{"body":17,"breadcrumbs":4,"title":2},"744":{"body":26,"breadcrumbs":4,"title":2},"745":{"body":17,"breadcrumbs":4,"title":2},"746":{"body":37,"breadcrumbs":6,"title":3},"747":{"body":21,"breadcrumbs":4,"title":1},"748":{"body":17,"breadcrumbs":5,"title":2},"749":{"body":31,"breadcrumbs":7,"title":4},"75":{"body":28,"breadcrumbs":4,"title":2},"750":{"body":22,"breadcrumbs":7,"title":4},"751":{"body":53,"breadcrumbs":8,"title":5},"752":{"body":16,"breadcrumbs":6,"title":3},"753":{"body":4,"breadcrumbs":6,"title":3},"754":{"body":26,"breadcrumbs":6,"title":3},"755":{"body":15,"breadcrumbs":4,"title":2},"756":{"body":78,"breadcrumbs":4,"title":2},"757":{"body":7,"breadcrumbs":4,"title":2},"758":{"body":20,"breadcrumbs":4,"title":2},"759":{"body":7,"breadcrumbs":4,"title":2},"76":{"body":7,"breadcrumbs":5,"title":3},"760":{"body":11,"breadcrumbs":8,"title":6},"761":{"body":73,"breadcrumbs":4,"title":2},"762":{"body":23,"breadcrumbs":3,"title":1},"763":{"body":23,"breadcrumbs":5,"title":3},"764":{"body":25,"breadcrumbs":5,"title":3},"765":{"body":26,"breadcrumbs":4,"title":2},"766":{"body":3,"breadcrumbs":3,"title":1},"767":{"body":5,"breadcrumbs":4,"title":2},"768":{"body":17,"breadcrumbs":4,"title":2},"769":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":56,"breadcrumbs":6,"title":4},"770":{"body":25,"breadcrumbs":3,"title":1},"771":{"body":89,"breadcrumbs":8,"title":6},"772":{"body":27,"breadcrumbs":3,"title":1},"773":{"body":41,"breadcrumbs":4,"title":2},"774":{"body":60,"breadcrumbs":6,"title":4},"775":{"body":66,"breadcrumbs":7,"title":5},"776":{"body":30,"breadcrumbs":4,"title":2},"777":{"body":39,"breadcrumbs":4,"title":2},"778":{"body":46,"breadcrumbs":5,"title":3},"779":{"body":28,"breadcrumbs":5,"title":3},"78":{"body":221,"breadcrumbs":4,"title":2},"780":{"body":23,"breadcrumbs":3,"title":1},"781":{"body":41,"breadcrumbs":6,"title":4},"782":{"body":30,"breadcrumbs":3,"title":1},"783":{"body":26,"breadcrumbs":3,"title":1},"784":{"body":28,"breadcrumbs":3,"title":1},"785":{"body":34,"breadcrumbs":3,"title":1},"786":{"body":27,"breadcrumbs":3,"title":1},"787":{"body":33,"breadcrumbs":5,"title":3},"788":{"body":14,"breadcrumbs":5,"title":3},"789":{"body":8,"breadcrumbs":3,"title":1},"79":{"body":7,"breadcrumbs":7,"title":5},"790":{"body":9,"breadcrumbs":3,"title":1},"791":{"body":8,"breadcrumbs":3,"title":1},"792":{"body":8,"breadcrumbs":3,"title":1},"793":{"body":10,"breadcrumbs":3,"title":1},"794":{"body":64,"breadcrumbs":4,"title":2},"795":{"body":0,"breadcrumbs":3,"title":1},"796":{"body":21,"breadcrumbs":5,"title":3},"797":{"body":48,"breadcrumbs":4,"title":2},"798":{"body":33,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":4,"title":2},"8":{"body":9,"breadcrumbs":3,"title":2},"80":{"body":16,"breadcrumbs":6,"title":4},"800":{"body":43,"breadcrumbs":4,"title":2},"801":{"body":42,"breadcrumbs":4,"title":2},"802":{"body":17,"breadcrumbs":3,"title":1},"803":{"body":38,"breadcrumbs":8,"title":5},"804":{"body":2,"breadcrumbs":4,"title":1},"805":{"body":58,"breadcrumbs":6,"title":3},"806":{"body":15,"breadcrumbs":6,"title":3},"807":{"body":29,"breadcrumbs":5,"title":2},"808":{"body":31,"breadcrumbs":7,"title":4},"809":{"body":18,"breadcrumbs":6,"title":3},"81":{"body":22,"breadcrumbs":6,"title":4},"810":{"body":40,"breadcrumbs":6,"title":3},"811":{"body":22,"breadcrumbs":4,"title":2},"812":{"body":27,"breadcrumbs":4,"title":2},"813":{"body":0,"breadcrumbs":4,"title":2},"814":{"body":7,"breadcrumbs":4,"title":2},"815":{"body":55,"breadcrumbs":4,"title":2},"816":{"body":36,"breadcrumbs":4,"title":2},"817":{"body":15,"breadcrumbs":4,"title":2},"818":{"body":0,"breadcrumbs":4,"title":2},"819":{"body":21,"breadcrumbs":3,"title":1},"82":{"body":4,"breadcrumbs":3,"title":1},"820":{"body":11,"breadcrumbs":4,"title":2},"821":{"body":46,"breadcrumbs":5,"title":3},"822":{"body":36,"breadcrumbs":4,"title":2},"823":{"body":28,"breadcrumbs":3,"title":1},"824":{"body":35,"breadcrumbs":4,"title":2},"825":{"body":71,"breadcrumbs":5,"title":3},"826":{"body":0,"breadcrumbs":4,"title":2},"827":{"body":43,"breadcrumbs":4,"title":2},"828":{"body":21,"breadcrumbs":4,"title":2},"829":{"body":27,"breadcrumbs":4,"title":2},"83":{"body":30,"breadcrumbs":3,"title":1},"830":{"body":49,"breadcrumbs":4,"title":2},"831":{"body":16,"breadcrumbs":3,"title":1},"832":{"body":17,"breadcrumbs":4,"title":2},"833":{"body":1,"breadcrumbs":4,"title":2},"834":{"body":27,"breadcrumbs":3,"title":1},"835":{"body":30,"breadcrumbs":4,"title":2},"836":{"body":35,"breadcrumbs":4,"title":2},"837":{"body":15,"breadcrumbs":4,"title":2},"838":{"body":0,"breadcrumbs":4,"title":2},"839":{"body":61,"breadcrumbs":5,"title":3},"84":{"body":6,"breadcrumbs":4,"title":2},"840":{"body":27,"breadcrumbs":5,"title":3},"841":{"body":45,"breadcrumbs":3,"title":1},"842":{"body":70,"breadcrumbs":5,"title":3},"843":{"body":62,"breadcrumbs":4,"title":2},"844":{"body":28,"breadcrumbs":3,"title":1},"845":{"body":52,"breadcrumbs":5,"title":3},"846":{"body":24,"breadcrumbs":4,"title":2},"847":{"body":0,"breadcrumbs":4,"title":2},"848":{"body":93,"breadcrumbs":4,"title":2},"849":{"body":62,"breadcrumbs":4,"title":2},"85":{"body":3,"breadcrumbs":3,"title":1},"850":{"body":81,"breadcrumbs":4,"title":2},"851":{"body":0,"breadcrumbs":4,"title":2},"852":{"body":26,"breadcrumbs":3,"title":1},"853":{"body":19,"breadcrumbs":3,"title":1},"854":{"body":12,"breadcrumbs":3,"title":1},"855":{"body":26,"breadcrumbs":4,"title":2},"856":{"body":21,"breadcrumbs":3,"title":1},"857":{"body":18,"breadcrumbs":4,"title":2},"858":{"body":1,"breadcrumbs":4,"title":2},"859":{"body":39,"breadcrumbs":3,"title":1},"86":{"body":23,"breadcrumbs":4,"title":2},"860":{"body":0,"breadcrumbs":4,"title":2},"861":{"body":35,"breadcrumbs":3,"title":1},"862":{"body":73,"breadcrumbs":3,"title":1},"863":{"body":24,"breadcrumbs":4,"title":2},"864":{"body":0,"breadcrumbs":4,"title":2},"865":{"body":111,"breadcrumbs":3,"title":1},"866":{"body":31,"breadcrumbs":3,"title":1},"867":{"body":12,"breadcrumbs":3,"title":1},"868":{"body":43,"breadcrumbs":3,"title":1},"869":{"body":21,"breadcrumbs":5,"title":3},"87":{"body":3,"breadcrumbs":3,"title":1},"870":{"body":32,"breadcrumbs":4,"title":2},"871":{"body":34,"breadcrumbs":5,"title":3},"872":{"body":17,"breadcrumbs":4,"title":2},"873":{"body":15,"breadcrumbs":5,"title":3},"874":{"body":81,"breadcrumbs":4,"title":2},"875":{"body":35,"breadcrumbs":5,"title":3},"876":{"body":0,"breadcrumbs":4,"title":2},"877":{"body":35,"breadcrumbs":4,"title":2},"878":{"body":5,"breadcrumbs":4,"title":2},"879":{"body":25,"breadcrumbs":4,"title":2},"88":{"body":16,"breadcrumbs":4,"title":2},"880":{"body":22,"breadcrumbs":4,"title":2},"881":{"body":26,"breadcrumbs":4,"title":2},"882":{"body":19,"breadcrumbs":3,"title":1},"883":{"body":17,"breadcrumbs":4,"title":2},"884":{"body":1,"breadcrumbs":4,"title":2},"885":{"body":30,"breadcrumbs":3,"title":1},"886":{"body":25,"breadcrumbs":4,"title":2},"887":{"body":37,"breadcrumbs":4,"title":2},"888":{"body":11,"breadcrumbs":4,"title":2},"889":{"body":0,"breadcrumbs":4,"title":2},"89":{"body":102,"breadcrumbs":6,"title":4},"890":{"body":9,"breadcrumbs":5,"title":3},"891":{"body":59,"breadcrumbs":5,"title":3},"892":{"body":19,"breadcrumbs":4,"title":2},"893":{"body":28,"breadcrumbs":3,"title":1},"894":{"body":30,"breadcrumbs":5,"title":3},"895":{"body":15,"breadcrumbs":4,"title":2},"896":{"body":5,"breadcrumbs":3,"title":1},"897":{"body":21,"breadcrumbs":4,"title":2},"898":{"body":20,"breadcrumbs":4,"title":2},"899":{"body":211,"breadcrumbs":4,"title":2},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":7,"breadcrumbs":4,"title":2},"900":{"body":0,"breadcrumbs":4,"title":2},"901":{"body":9,"breadcrumbs":4,"title":2},"902":{"body":7,"breadcrumbs":5,"title":3},"903":{"body":10,"breadcrumbs":4,"title":2},"904":{"body":0,"breadcrumbs":4,"title":2},"905":{"body":28,"breadcrumbs":5,"title":3},"906":{"body":9,"breadcrumbs":5,"title":3},"907":{"body":8,"breadcrumbs":6,"title":4},"908":{"body":8,"breadcrumbs":5,"title":3},"909":{"body":7,"breadcrumbs":5,"title":3},"91":{"body":19,"breadcrumbs":5,"title":3},"910":{"body":23,"breadcrumbs":5,"title":3},"911":{"body":17,"breadcrumbs":3,"title":1},"912":{"body":28,"breadcrumbs":6,"title":3},"913":{"body":1,"breadcrumbs":5,"title":2},"914":{"body":62,"breadcrumbs":4,"title":1},"915":{"body":35,"breadcrumbs":5,"title":2},"916":{"body":50,"breadcrumbs":5,"title":2},"917":{"body":0,"breadcrumbs":4,"title":1},"918":{"body":21,"breadcrumbs":5,"title":2},"919":{"body":53,"breadcrumbs":5,"title":2},"92":{"body":10,"breadcrumbs":5,"title":3},"920":{"body":25,"breadcrumbs":5,"title":2},"921":{"body":41,"breadcrumbs":5,"title":2},"922":{"body":0,"breadcrumbs":4,"title":1},"923":{"body":11,"breadcrumbs":6,"title":3},"924":{"body":39,"breadcrumbs":6,"title":3},"925":{"body":19,"breadcrumbs":5,"title":2},"926":{"body":27,"breadcrumbs":7,"title":4},"927":{"body":0,"breadcrumbs":5,"title":2},"928":{"body":62,"breadcrumbs":7,"title":4},"929":{"body":14,"breadcrumbs":5,"title":2},"93":{"body":20,"breadcrumbs":5,"title":3},"930":{"body":58,"breadcrumbs":5,"title":2},"931":{"body":21,"breadcrumbs":8,"title":5},"932":{"body":14,"breadcrumbs":7,"title":4},"933":{"body":48,"breadcrumbs":5,"title":2},"934":{"body":19,"breadcrumbs":4,"title":1},"935":{"body":30,"breadcrumbs":4,"title":2},"936":{"body":14,"breadcrumbs":3,"title":1},"937":{"body":13,"breadcrumbs":4,"title":2},"938":{"body":34,"breadcrumbs":4,"title":2},"939":{"body":79,"breadcrumbs":4,"title":2},"94":{"body":86,"breadcrumbs":5,"title":3},"940":{"body":28,"breadcrumbs":4,"title":2},"941":{"body":16,"breadcrumbs":5,"title":3},"942":{"body":32,"breadcrumbs":3,"title":1},"943":{"body":38,"breadcrumbs":4,"title":2},"944":{"body":21,"breadcrumbs":3,"title":1},"945":{"body":15,"breadcrumbs":3,"title":1},"946":{"body":18,"breadcrumbs":6,"title":3},"947":{"body":18,"breadcrumbs":4,"title":1},"948":{"body":14,"breadcrumbs":5,"title":2},"949":{"body":9,"breadcrumbs":5,"title":2},"95":{"body":211,"breadcrumbs":7,"title":5},"950":{"body":7,"breadcrumbs":5,"title":2},"951":{"body":29,"breadcrumbs":6,"title":3},"952":{"body":41,"breadcrumbs":6,"title":3},"953":{"body":32,"breadcrumbs":5,"title":2},"954":{"body":29,"breadcrumbs":5,"title":2},"955":{"body":57,"breadcrumbs":4,"title":1},"956":{"body":55,"breadcrumbs":5,"title":2},"957":{"body":25,"breadcrumbs":4,"title":1},"958":{"body":13,"breadcrumbs":4,"title":1},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":27,"breadcrumbs":4,"title":2},"960":{"body":15,"breadcrumbs":3,"title":1},"961":{"body":0,"breadcrumbs":4,"title":2},"962":{"body":18,"breadcrumbs":3,"title":1},"963":{"body":18,"breadcrumbs":3,"title":1},"964":{"body":43,"breadcrumbs":4,"title":2},"965":{"body":20,"breadcrumbs":3,"title":1},"966":{"body":32,"breadcrumbs":3,"title":1},"967":{"body":44,"breadcrumbs":4,"title":2},"968":{"body":23,"breadcrumbs":4,"title":2},"969":{"body":16,"breadcrumbs":3,"title":1},"97":{"body":29,"breadcrumbs":4,"title":2},"970":{"body":21,"breadcrumbs":6,"title":3},"971":{"body":1,"breadcrumbs":5,"title":2},"972":{"body":17,"breadcrumbs":5,"title":2},"973":{"body":45,"breadcrumbs":4,"title":1},"974":{"body":0,"breadcrumbs":5,"title":2},"975":{"body":78,"breadcrumbs":5,"title":2},"976":{"body":26,"breadcrumbs":5,"title":2},"977":{"body":16,"breadcrumbs":5,"title":2},"978":{"body":10,"breadcrumbs":5,"title":2},"979":{"body":35,"breadcrumbs":5,"title":2},"98":{"body":73,"breadcrumbs":4,"title":2},"980":{"body":71,"breadcrumbs":4,"title":1},"981":{"body":18,"breadcrumbs":5,"title":2},"982":{"body":15,"breadcrumbs":5,"title":2},"983":{"body":25,"breadcrumbs":4,"title":1},"984":{"body":16,"breadcrumbs":8,"title":4},"985":{"body":110,"breadcrumbs":6,"title":2},"986":{"body":88,"breadcrumbs":8,"title":4},"987":{"body":70,"breadcrumbs":8,"title":4},"988":{"body":59,"breadcrumbs":7,"title":3},"989":{"body":90,"breadcrumbs":9,"title":5},"99":{"body":42,"breadcrumbs":3,"title":1},"990":{"body":40,"breadcrumbs":10,"title":6},"991":{"body":42,"breadcrumbs":6,"title":2},"992":{"body":39,"breadcrumbs":8,"title":4},"993":{"body":14,"breadcrumbs":4,"title":2},"994":{"body":165,"breadcrumbs":5,"title":3},"995":{"body":0,"breadcrumbs":5,"title":3},"996":{"body":42,"breadcrumbs":5,"title":3},"997":{"body":21,"breadcrumbs":5,"title":3},"998":{"body":17,"breadcrumbs":5,"title":3},"999":{"body":112,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"JACS is a cryptographic provenance layer for agent systems. Use it when an output, tool call, or agent handoff crosses a trust boundary and logs alone are not enough.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"Most teams adopt JACS in one of four ways: LangChain / LangGraph / CrewAI / FastAPI : add signing at tool or API boundaries without changing the rest of the app MCP : secure a local tool server or expose JACS itself as an MCP tool suite A2A : publish an Agent Card, exchange signed artifacts, and apply trust policy across organizations Core signing : sign JSON, files, or agreements directly from Rust, Python, Node.js, or Go The book now focuses on those supported workflows first. Older roadmap-style integration chapters have been reduced or removed from navigation.","breadcrumbs":"Introduction » Start With The Deployment","id":"1","title":"Start With The Deployment"},"10":{"body":"cargo install jacs-cli\njacs quickstart --name my-agent --domain my-agent.example.com","breadcrumbs":"Introduction » Rust CLI","id":"10","title":"Rust CLI"},"100":{"body":"Three agents from different organizations sign an agreement with 2-of-3 quorum. Imagine three departments -- Finance, Compliance, and Legal -- must approve a production deployment. Requiring all three creates bottlenecks. With JACS quorum agreements, any two of three is sufficient: cryptographically signed, independently verifiable, with a full audit trail. No central authority. No shared database. Every signature is independently verifiable.","breadcrumbs":"Multi-Agent Agreements » Multi-Agent Agreements","id":"100","title":"Multi-Agent Agreements"},"1000":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"1000","title":"Threat Model"},"1001":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"1001","title":"Protected Against"},"1002":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"1002","title":"Trust Assumptions"},"1003":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"1003","title":"Signature Process"},"1004":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"1004","title":"Signing a Document"},"1005":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"1005","title":"Verifying a Document"},"1006":{"body":"","breadcrumbs":"Security Model » Key Management","id":"1006","title":"Key Management"},"1007":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"1007","title":"Key Generation"},"1008":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Option 1: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" # Option 2: OS keychain (recommended for developer workstations)\njacs keychain set Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain. OS Keychain Integration : On macOS and Linux desktops, JACS can store and retrieve the private key password from the OS credential store, eliminating the need for environment variables or plaintext password files during day-to-day development: macOS : Uses Security.framework (Keychain Access) Linux : Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC) Store your password once with jacs keychain set, and all subsequent JACS operations will find it automatically. The password resolution order is: JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain (lowest priority among explicit sources) To disable keychain lookups (recommended for CI and headless environments): export JACS_KEYCHAIN_BACKEND=disabled Or in jacs.config.json: { \"jacs_keychain_backend\": \"disabled\"\n} The keychain stores the password under service name jacs-private-key with user default. Multiple agents on one machine can use agent-specific passwords via the *_for_agent() API variants. Security note : The OS keychain is encrypted at rest by the OS and unlocked by the user's login session. It is the same mechanism used by git, ssh-agent, docker, and other CLI tools. The keychain feature is optional and not compiled into the jacs core crate by default -- it is enabled by default only in jacs-cli. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"1008","title":"Key Protection"},"1009":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"1009","title":"Key Rotation"},"101":{"body":"Create Agreement --> Agent A Signs --> Agent B Signs --> Quorum Met (2/3) --> Verified","breadcrumbs":"Multi-Agent Agreements » The Lifecycle","id":"101","title":"The Lifecycle"},"1010":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"1010","title":"TLS Certificate Validation"},"1011":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"1011","title":"Default Behavior (Development)"},"1012":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"1012","title":"Production Configuration"},"1013":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For registry verification endpoints, JACS_REGISTRY_URL (legacy HAI_API_URL) must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"1013","title":"Security Implications"},"1014":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"1014","title":"Signature Timestamp Validation"},"1015":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"1015","title":"How It Works"},"1016":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"1016","title":"Configuring Signature Expiration"},"1017":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"1017","title":"Protection Against Replay Attacks"},"1018":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"1018","title":"Clock Synchronization"},"1019":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"1019","title":"Verification Claims"},"102":{"body":"from jacs.client import JacsClient # Step 1: Create three agents (one per organization)\nfinance = JacsClient.quickstart( name=\"finance\", domain=\"finance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./finance.config.json\",\n)\ncompliance = JacsClient.quickstart( name=\"compliance\", domain=\"compliance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./compliance.config.json\",\n)\nlegal = JacsClient.quickstart( name=\"legal\", domain=\"legal.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./legal.config.json\",\n) # Step 2: Finance proposes an agreement with quorum\nfrom datetime import datetime, timedelta, timezone proposal = { \"action\": \"Deploy model v2 to production\", \"conditions\": [\"passes safety audit\", \"approved by 2 of 3 signers\"],\n}\ndeadline = (datetime.now(timezone.utc) + timedelta(hours=1)).isoformat() agreement = finance.create_agreement( document=proposal, agent_ids=[finance.agent_id, compliance.agent_id, legal.agent_id], question=\"Do you approve deployment of model v2?\", context=\"Production rollout pending safety audit sign-off.\", quorum=2, # only 2 of 3 need to sign timeout=deadline,\n) # Step 3: Finance signs\nagreement = finance.sign_agreement(agreement) # Step 4: Compliance co-signs -- quorum is now met\nagreement = compliance.sign_agreement(agreement) # Step 5: Verify -- any party can confirm independently\nstatus = finance.check_agreement(agreement)\nprint(f\"Complete: {status.complete}\") # True -- 2 of 3 signed for s in status.signers: label = \"signed\" if s.signed else \"pending\" print(f\" {s.agent_id[:12]}... {label}\")","breadcrumbs":"Multi-Agent Agreements » Python","id":"102","title":"Python"},"1020":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-registry Above + registry verification Must be registered and verified by a JACS registry verified-hai.ai (legacy alias) Same as verified-registry Backward-compatible alias","breadcrumbs":"Security Model » Claim Levels","id":"1020","title":"Claim Levels"},"1021":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"1021","title":"Setting a Verification Claim"},"1022":{"body":"When an agent claims verified, verified-registry, or legacy verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-registry (or legacy verified-hai.ai) claims, additional enforcement: Registry Registration : Agent must be registered with the configured registry (for HAI-hosted registry, hai.ai ) Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if the registry API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"1022","title":"Claim Enforcement"},"1023":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"1023","title":"Backward Compatibility"},"1024":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-registry' failed: Agent 'uuid' is not registered with the configured registry.\nAgents claiming 'verified-registry' must be registered with a reachable registry endpoint.","breadcrumbs":"Security Model » Error Messages","id":"1024","title":"Error Messages"},"1025":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-registry requires network access to the registry endpoint Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"1025","title":"Security Considerations"},"1026":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"1026","title":"DNS-Based Verification"},"1027":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"1027","title":"How It Works"},"1028":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"1028","title":"Configuration"},"1029":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"1029","title":"Security Levels"},"103":{"body":"import { JacsClient } from \"@hai.ai/jacs/client\"; async function main() { // Step 1: Create three agents const finance = await JacsClient.ephemeral(\"ring-Ed25519\"); const compliance = await JacsClient.ephemeral(\"ring-Ed25519\"); const legal = await JacsClient.ephemeral(\"ring-Ed25519\"); // Step 2: Finance proposes an agreement with quorum const proposal = { action: \"Deploy model v2 to production\", conditions: [\"passes safety audit\", \"approved by 2 of 3 signers\"], }; const deadline = new Date(Date.now() + 60 * 60 * 1000).toISOString(); const agentIds = [finance.agentId, compliance.agentId, legal.agentId]; let agreement = await finance.createAgreement(proposal, agentIds, { question: \"Do you approve deployment of model v2?\", context: \"Production rollout pending safety audit sign-off.\", quorum: 2, timeout: deadline, }); // Step 3: Finance signs agreement = await finance.signAgreement(agreement); // Step 4: Compliance co-signs -- quorum is now met agreement = await compliance.signAgreement(agreement); // Step 5: Verify const doc = JSON.parse(agreement.raw); const ag = doc.jacsAgreement; const sigCount = ag.signatures?.length ?? 0; console.log(`Signatures: ${sigCount} of ${agentIds.length}`); console.log(`Quorum met: ${sigCount >= (ag.quorum ?? agentIds.length)}`);\n} main().catch(console.error);","breadcrumbs":"Multi-Agent Agreements » Node.js / TypeScript","id":"103","title":"Node.js / TypeScript"},"1030":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"1030","title":"Trust Store Management"},"1031":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"1031","title":"Trusting Agents"},"1032":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"1032","title":"Untrusting Agents"},"1033":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"1033","title":"Trust Store Security"},"1034":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"1034","title":"Best Practices"},"1035":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"1035","title":"Agreement Security"},"1036":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"1036","title":"Agreement Structure"},"1037":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"1037","title":"Agreement Guarantees"},"1038":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"1038","title":"Request/Response Security"},"1039":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"1039","title":"Request Signing"},"104":{"body":"Three independent agents were created, each with their own keys -- no shared secrets. Finance proposed an agreement requiring 2-of-3 quorum with a one-hour deadline. Finance and Compliance signed. Legal never needed to act -- quorum was met. Any party can verify the agreement independently. The cryptographic proof chain is self-contained. Every signature includes: the signer's agent ID, the signing algorithm, a timestamp, and a hash of the agreement content. If anyone tampers with the document after signing, verification fails.","breadcrumbs":"Multi-Agent Agreements » What Just Happened?","id":"104","title":"What Just Happened?"},"1040":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"1040","title":"Response Verification"},"1041":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"1041","title":"Algorithm Security"},"1042":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"1042","title":"Supported Algorithms"},"1043":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"1043","title":"Algorithm Selection"},"1044":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"1044","title":"Security Best Practices"},"1045":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"1045","title":"1. Key Storage"},"1046":{"body":"# Option A: Use environment variables (CI, servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\" # Option B: Use OS keychain (developer workstations)\njacs keychain set # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments\nexport JACS_KEYCHAIN_BACKEND=disabled","breadcrumbs":"Security Model » 2. Password Handling","id":"1046","title":"2. Password Handling"},"1047":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"1047","title":"3. Transport Security"},"1048":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"1048","title":"4. Verification Policies"},"1049":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"1049","title":"5. Audit Logging"},"105":{"body":"Agreements API Reference -- timeout, algorithm constraints, and more Python Framework Adapters -- use agreements inside LangChain, FastAPI, CrewAI Security Model -- how the cryptographic proof chain works","breadcrumbs":"Multi-Agent Agreements » Next Steps","id":"105","title":"Next Steps"},"1050":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"1050","title":"Security Checklist"},"1051":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"1051","title":"Development"},"1052":{"body":"Encrypt private keys at rest Use environment variables or OS keychain for secrets (never store jacs_private_key_password in config) Set JACS_KEYCHAIN_BACKEND=disabled on CI/headless servers Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"1052","title":"Production"},"1053":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"1053","title":"Verification"},"1054":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"1054","title":"Security Considerations"},"1055":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"1055","title":"Supply Chain"},"1056":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"1056","title":"Side Channels"},"1057":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"1057","title":"Recovery"},"1058":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"1058","title":"Troubleshooting Verification Claims"},"1059":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with the registry\" Problem : You're using verified-registry (or legacy verified-hai.ai) but the agent isn't registered. Solution : Register your agent with your configured registry (for HAI-hosted registry, hai.ai ) Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"1059","title":"Common Issues and Solutions"},"106":{"body":"Verify a JACS-signed document in under 2 minutes. Verification confirms two things: the document was signed by the claimed agent, and the content has not been modified since signing. Verification does NOT require creating an agent. You only need the signed document (and optionally access to the signer's public key).","breadcrumbs":"Verifying Signed Documents » Verifying Signed Documents","id":"106","title":"Verifying Signed Documents"},"1060":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-registry 2 (highest) Above + registry registration verified-hai.ai (legacy alias) 2 (highest) Alias of verified-registry","breadcrumbs":"Security Model » Claim Level Reference","id":"1060","title":"Claim Level Reference"},"1061":{"body":"Upgrades allowed : unverified → verified → verified-registry (legacy alias verified-hai.ai is same level) Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"1061","title":"Upgrade vs Downgrade Rules"},"1062":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"1062","title":"Quick Diagnostic Commands"},"1063":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"1063","title":"See Also"},"1064":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"1064","title":"Key Rotation"},"1065":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"1065","title":"Why Key Rotation Matters"},"1066":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"1066","title":"Key Compromise Recovery"},"1067":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"1067","title":"Cryptographic Agility"},"1068":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"1068","title":"Compliance Requirements"},"1069":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"1069","title":"Agent Versioning"},"107":{"body":"The fastest way to verify a document from the command line. No config file, no agent setup. # Verify a local file\njacs verify signed-document.json # Verify with JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document by URL\njacs verify --remote https://example.com/signed-doc.json # Specify a directory containing public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Output on success: Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z JSON output (--json): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} The exit code is 0 for valid, 1 for invalid or error. Use this in CI/CD pipelines: if jacs verify artifact.json --json; then echo \"Artifact is authentic\"\nelse echo \"Verification failed\" >&2 exit 1\nfi If a jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise, it creates a temporary ephemeral verifier internally.","breadcrumbs":"Verifying Signed Documents » CLI: jacs verify","id":"107","title":"CLI: jacs verify"},"1070":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"1070","title":"Version Format"},"1071":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"1071","title":"Version Chain"},"1072":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"1072","title":"Version-Aware Verification"},"1073":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"1073","title":"Signature Structure"},"1074":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"1074","title":"Key Resolution Process"},"1075":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"1075","title":"Key Lookup Priority"},"1076":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"1076","title":"Key Rotation Process"},"1077":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"1077","title":"Step-by-Step Rotation"},"1078":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"1078","title":"Transition Signature"},"1079":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"1079","title":"CLI Commands (Planned)"},"108":{"body":"","breadcrumbs":"Verifying Signed Documents » Python","id":"108","title":"Python"},"1080":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"1080","title":"Example Rotation Flow"},"1081":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"1081","title":"Trust Store with Version History"},"1082":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"1082","title":"TrustedAgent Structure"},"1083":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1083","title":"Key Status Values"},"1084":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1084","title":"Looking Up Keys"},"1085":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1085","title":"DNS Support for Key Versions"},"1086":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1086","title":"Multi-Version DNS Records"},"1087":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1087","title":"DNS Record Generation"},"1088":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1088","title":"Security Considerations"},"1089":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1089","title":"Key Revocation"},"109":{"body":"import jacs.simple as jacs jacs.load(\"./jacs.config.json\") result = jacs.verify(signed_json)\nif result.valid: print(f\"Signed by: {result.signer_id}\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"109","title":"With an agent loaded"},"1090":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1090","title":"Overlap Period"},"1091":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1091","title":"Secure Deletion"},"1092":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1092","title":"Best Practices"},"1093":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1093","title":"Rotation Schedule"},"1094":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1094","title":"Pre-Rotation Checklist"},"1095":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1095","title":"Post-Rotation Checklist"},"1096":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1096","title":"See Also"},"1097":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1097","title":"Cryptographic Algorithms"},"1098":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1098","title":"Supported Algorithms"},"1099":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1099","title":"Ed25519 (ring-Ed25519)"},"11":{"body":"pip install jacs","breadcrumbs":"Introduction » Python","id":"11","title":"Python"},"110":{"body":"import jacs.simple as jacs result = jacs.verify_standalone( signed_json, key_resolution=\"local\", key_directory=\"./trusted-keys/\"\n)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") verify_standalone does not use a global agent. Pass the key resolution strategy and directories explicitly.","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"110","title":"Without an agent (standalone)"},"1100":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1100","title":"Overview"},"1101":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1101","title":"Characteristics"},"1102":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1102","title":"Configuration"},"1103":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1103","title":"Use Cases"},"1104":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1104","title":"Example"},"1105":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1105","title":"RSA-PSS"},"1106":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1106","title":"Overview"},"1107":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1107","title":"Characteristics"},"1108":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1108","title":"Configuration"},"1109":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1109","title":"Use Cases"},"111":{"body":"If the document is in local storage and you know its ID: result = jacs.verify_by_id(\"550e8400-e29b-41d4:1\")","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"111","title":"Verify by document ID"},"1110":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1110","title":"Considerations"},"1111":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1111","title":"Dilithium (pq-dilithium)"},"1112":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1112","title":"Overview"},"1113":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1113","title":"Characteristics"},"1114":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1114","title":"Configuration"},"1115":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1115","title":"Use Cases"},"1116":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1116","title":"Considerations"},"1117":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1117","title":"PQ2025 (Hybrid)"},"1118":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1118","title":"Overview"},"1119":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1119","title":"Characteristics"},"112":{"body":"","breadcrumbs":"Verifying Signed Documents » Node.js","id":"112","title":"Node.js"},"1120":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1120","title":"Configuration"},"1121":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1121","title":"Use Cases"},"1122":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1122","title":"Considerations"},"1123":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1123","title":"Algorithm Selection Guide"},"1124":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1124","title":"Decision Matrix"},"1125":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1125","title":"By Use Case"},"1126":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1126","title":"Key Generation"},"1127":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1127","title":"Key Formats"},"1128":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1128","title":"Signature Structure"},"1129":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1129","title":"Hashing"},"113":{"body":"import * as jacs from '@hai.ai/jacs/simple'; await jacs.load('./jacs.config.json'); const result = await jacs.verify(signedJson);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"113","title":"With an agent loaded"},"1130":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1130","title":"Algorithm Migration"},"1131":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1131","title":"Performance Comparison"},"1132":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1132","title":"Security Considerations"},"1133":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1133","title":"Algorithm Agility"},"1134":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1134","title":"Forward Secrecy"},"1135":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1135","title":"Key Compromise"},"1136":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1136","title":"See Also"},"1137":{"body":"Choosing the right signing algorithm affects key size, signature size, verification speed, and compliance posture. This guide helps you pick the right one.","breadcrumbs":"Algorithm Selection Guide » Algorithm Selection Guide","id":"1137","title":"Algorithm Selection Guide"},"1138":{"body":"Algorithm Config Value Public Key Signature Best For Ed25519 ring-Ed25519 32 bytes 64 bytes Speed, small signatures RSA-PSS RSA-PSS ~550 bytes (4096-bit) ~512 bytes Broad compatibility ML-DSA-87 pq2025 2,592 bytes 4,627 bytes Post-quantum compliance (FIPS-204) Dilithium pq-dilithium >1,000 bytes ~3,293-4,644 bytes Deprecated -- use pq2025","breadcrumbs":"Algorithm Selection Guide » Supported Algorithms","id":"1138","title":"Supported Algorithms"},"1139":{"body":"Do you need FIPS/NIST post-quantum compliance? ├── Yes → pq2025 └── No ├── Need maximum interop with existing PKI/TLS systems? → RSA-PSS └── Need speed and small payloads? → ring-Ed25519 Default recommendation for new projects: pq2025 Ed25519 and RSA-PSS are well-understood and widely deployed, but neither is quantum-resistant. If you don't have a specific reason to choose one of them, start with pq2025 so you don't have to migrate later.","breadcrumbs":"Algorithm Selection Guide » How to Choose","id":"1139","title":"How to Choose"},"114":{"body":"import { verifyStandalone } from '@hai.ai/jacs/simple'; const result = verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './trusted-keys/',\n});\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"114","title":"Without an agent (standalone)"},"1140":{"body":"Choose pq2025 (ML-DSA-87, FIPS-204) when: Your compliance team asks about quantum readiness Government or defense contracts require FIPS-204 You need long-lived signatures that must remain valid for 10+ years You want to avoid a future algorithm migration JACS supports ML-DSA-87 (FIPS-204) for post-quantum digital signatures. When your compliance team asks about quantum readiness, JACS already has the answer. The tradeoff is size: ML-DSA-87 public keys are 2,592 bytes and signatures are 4,627 bytes -- roughly 80x larger than Ed25519. For most applications this is negligible, but if you're signing millions of small messages and bandwidth matters, consider Ed25519.","breadcrumbs":"Algorithm Selection Guide » When to Choose Post-Quantum","id":"1140","title":"When to Choose Post-Quantum"},"1141":{"body":"JACS verification works across algorithms. An agreement can contain signatures from RSA, Ed25519, and ML-DSA agents and all verify correctly. This heterogeneous verification is important for cross-organization scenarios where different parties chose different algorithms. Each agent uses one algorithm (chosen at creation time), but can verify signatures from all supported algorithms.","breadcrumbs":"Algorithm Selection Guide » Cross-Algorithm Verification","id":"1141","title":"Cross-Algorithm Verification"},"1142":{"body":"Set the algorithm in your jacs.config.json: { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Or via environment variable: export JACS_AGENT_KEY_ALGORITHM=pq2025 Valid values: ring-Ed25519, RSA-PSS, pq2025 In Python and Node.js, pass the algorithm to quickstart(...): from jacs.client import JacsClient\nclient = JacsClient.quickstart( name=\"algo-agent\", domain=\"algo.example.com\", algorithm=\"pq2025\",\n) import { JacsClient } from \"@hai.ai/jacs\";\nconst client = await JacsClient.quickstart({ name: \"algo-agent\", domain: \"algo.example.com\", algorithm: \"pq2025\",\n});","breadcrumbs":"Algorithm Selection Guide » Configuration","id":"1142","title":"Configuration"},"1143":{"body":"Each agent uses one algorithm, chosen at creation time. You cannot change an agent's algorithm after creation. Algorithm negotiation between agents is planned but not yet implemented. pq-dilithium is deprecated in favor of pq2025 (ML-DSA-87). Use pq2025 for new agents and verification hints.","breadcrumbs":"Algorithm Selection Guide » Current Limitations","id":"1143","title":"Current Limitations"},"1144":{"body":"JACS has two storage layers today: Low-level file/object storage via MultiStorage Signed document CRUD/search via DocumentService Those are related, but they are not identical. The most important rule is the signed-document contract: Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes an already-signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Storage Backends » Storage Backends","id":"1144","title":"Storage Backends"},"1145":{"body":"Backend Config Value Core Surface Notes Filesystem fs MultiStorage + DocumentService Default. Signed JSON files on disk. Local indexed SQLite rusqlite DocumentService + SearchProvider Stores signed documents in a local SQLite DB with FTS search. AWS object storage aws MultiStorage Object-store backend. Memory memory MultiStorage Non-persistent, useful for tests and temporary flows. Browser local storage local MultiStorage WASM-only. For local indexed document search in JACS core, use rusqlite.","breadcrumbs":"Storage Backends » Built-in Core Backends","id":"1145","title":"Built-in Core Backends"},"1146":{"body":"Filesystem is the default signed-document backend. { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Typical layout: jacs_data/\n├── agent/\n│ └── {agent-id}:{agent-version}.json\n└── documents/ ├── {document-id}:{version}.json └── archive/ Use filesystem when you want the simplest possible deployment, inspectable files, and no local database dependency.","breadcrumbs":"Storage Backends » Filesystem (fs)","id":"1146","title":"Filesystem (fs)"},"1147":{"body":"rusqlite is the built-in indexed document backend used by the upgraded bindings and MCP search path. { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} With this setting: Signed documents are stored in ./jacs_data/jacs_documents.sqlite3 Full-text search comes from SQLite FTS DocumentService reads and writes enforce verification Updating visibility creates a new signed successor version Use rusqlite when you want local full-text search, filtered document queries, and a single-machine deployment.","breadcrumbs":"Storage Backends » Local Indexed SQLite (rusqlite)","id":"1147","title":"Local Indexed SQLite (rusqlite)"},"1148":{"body":"AWS support is an object-store backend for lower-level storage operations. { \"jacs_default_storage\": \"aws\"\n} Required environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-bucket\"\nexport AWS_ACCESS_KEY_ID=\"...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" Use aws when you need remote object storage. If you also need a richer signed-document query surface, use one of the database-focused crates below.","breadcrumbs":"Storage Backends » AWS (aws)","id":"1148","title":"AWS (aws)"},"1149":{"body":"Memory storage is non-persistent: { \"jacs_default_storage\": \"memory\"\n} Use it for tests, temporary operations, and ephemeral agent flows.","breadcrumbs":"Storage Backends » Memory (memory)","id":"1149","title":"Memory (memory)"},"115":{"body":"const result = await jacs.verifyById('550e8400-e29b-41d4:1');","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"115","title":"Verify by document ID"},"1150":{"body":"Several richer database backends now live outside the JACS core crate: jacs-postgresql jacs-duckdb jacs-redb jacs-surrealdb These crates implement the same storage/search traits in their own packages. They are not built-in jacs_default_storage values for the core crate.","breadcrumbs":"Storage Backends » Extracted Backend Crates","id":"1150","title":"Extracted Backend Crates"},"1151":{"body":"Scenario Recommendation Default local usage fs Local search + filtering rusqlite Ephemeral tests memory Remote object storage aws Postgres / vector / multi-model needs Use an extracted backend crate","breadcrumbs":"Storage Backends » Choosing a Backend","id":"1151","title":"Choosing a Backend"},"1152":{"body":"Switching backends does not migrate data automatically. When you change jacs_default_storage: Export the signed documents you need to keep. Update the config value. Create/import the new backend’s data store. Re-run verification on imported documents as part of migration validation.","breadcrumbs":"Storage Backends » Migration Notes","id":"1152","title":"Migration Notes"},"1153":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1153","title":"Custom Schemas"},"1154":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1154","title":"Overview"},"1155":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1155","title":"Creating a Custom Schema"},"1156":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1156","title":"Basic Structure"},"1157":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1157","title":"Step-by-Step Guide"},"1158":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1158","title":"Schema Best Practices"},"1159":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1159","title":"Use Meaningful IDs"},"116":{"body":"Generate a URL that lets anyone verify a signed document through a web verifier (e.g., hai.ai): Python: url = jacs.generate_verify_link(signed_doc.raw_json)\n# https://hai.ai/jacs/verify?s= Node.js: const url = jacs.generateVerifyLink(signed.raw); The document is base64url-encoded into the URL query parameter. Documents must be under ~1.5 KB to fit within the 2048-character URL limit. For larger documents, share the file directly and verify with the CLI or SDK.","breadcrumbs":"Verifying Signed Documents » Verification Links","id":"116","title":"Verification Links"},"1160":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1160","title":"Document Everything"},"1161":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1161","title":"Use Appropriate Validation"},"1162":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1162","title":"Group Related Fields"},"1163":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1163","title":"Advanced Schema Features"},"1164":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1164","title":"Conditional Validation"},"1165":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1165","title":"Reusable Definitions"},"1166":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1166","title":"Array Constraints"},"1167":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1167","title":"Pattern Properties"},"1168":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1168","title":"Schema Inheritance"},"1169":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1169","title":"Extending Custom Schemas"},"117":{"body":"DNS verification checks that an agent's public key hash matches a DNS TXT record published at _v1.agent.jacs.. This provides a decentralized trust anchor: anyone can look up the agent's expected key fingerprint via DNS without contacting a central server.","breadcrumbs":"Verifying Signed Documents » DNS Verification","id":"117","title":"DNS Verification"},"1170":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1170","title":"Validation"},"1171":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1171","title":"Python Validation"},"1172":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1172","title":"Node.js Validation"},"1173":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1173","title":"Example Schemas"},"1174":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1174","title":"Medical Record"},"1175":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1175","title":"Legal Contract"},"1176":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1176","title":"IoT Sensor Reading"},"1177":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1177","title":"Schema Versioning"},"1178":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1178","title":"Version in Path"},"1179":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1179","title":"Version Field"},"118":{"body":"jacs agent dns --domain example.com --provider plain This outputs the TXT record to add to your DNS zone. Provider options: plain, aws, azure, cloudflare.","breadcrumbs":"Verifying Signed Documents » Publishing a DNS record","id":"118","title":"Publishing a DNS record"},"1180":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1180","title":"Migration Strategy"},"1181":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1181","title":"See Also"},"1182":{"body":"The JACS trust store is a local directory of agent public keys and metadata that your agent has explicitly chosen to trust. It enables offline signature verification without a central authority -- once you trust an agent, you can verify its signatures without network access.","breadcrumbs":"Trust Store » Trust Store Operations","id":"1182","title":"Trust Store Operations"},"1183":{"body":"When you add an agent to your trust store, JACS: Parses the agent's JSON document Extracts the public key and verifies the agent's self-signature Saves the agent document, public key, and metadata to ~/.jacs/trust_store/ After that, any document signed by that agent can be verified locally using the cached public key.","breadcrumbs":"Trust Store » How it works","id":"1183","title":"How it works"},"1184":{"body":"All bindings expose five trust store functions: Function Description trust_agent(agent_json) Add an agent to the trust store (verifies self-signature first) list_trusted_agents() List all trusted agent IDs is_trusted(agent_id) Check if an agent is in the trust store get_trusted_agent(agent_id) Retrieve the full agent JSON untrust_agent(agent_id) Remove an agent from the trust store","breadcrumbs":"Trust Store » API","id":"1184","title":"API"},"1185":{"body":"import jacs # Receive an agent document from a partner organization\nremote_agent_json = receive_from_partner() # Add to trust store (self-signature is verified automatically)\nagent_id = jacs.trust_agent(remote_agent_json)\nprint(f\"Now trusting: {agent_id}\") # Later, check trust before processing a signed document\nif jacs.is_trusted(sender_id): # Verify their signature using the cached public key result = jacs.verify(signed_document) # List all trusted agents\nfor aid in jacs.list_trusted_agents(): print(aid) # Remove trust\njacs.untrust_agent(agent_id)","breadcrumbs":"Trust Store » Python example","id":"1185","title":"Python example"},"1186":{"body":"import { trustAgent, isTrusted, listTrustedAgents, untrustAgent } from '@hai.ai/jacs'; // Add a partner's agent to the trust store\nconst agentId = trustAgent(remoteAgentJson); // Check trust\nif (isTrusted(senderId)) { const result = verify(signedDocument);\n} // List and remove\nconst trusted = listTrustedAgents();\nuntrustAgent(agentId);","breadcrumbs":"Trust Store » Node.js example","id":"1186","title":"Node.js example"},"1187":{"body":"A realistic deployment involves two organizations that need to verify each other's agent signatures: Org B creates an agent and publishes its public key via DNS TXT records or a HAI key distribution endpoint Org A fetches Org B's agent document (via fetch_remote_key or direct exchange) Org A calls trust_agent() with Org B's agent JSON -- JACS verifies the self-signature and caches the public key From this point on, Org A can verify any document signed by Org B's agent offline , using only the local trust store This is the same model as SSH known_hosts or PGP key signing: trust is established once through a verified channel, then used repeatedly without network round-trips.","breadcrumbs":"Trust Store » Cross-organization scenario","id":"1187","title":"Cross-organization scenario"},"1188":{"body":"trust_agent() cryptographically verifies the agent's self-signature before adding it to the store. A tampered agent document will be rejected. Agent IDs are validated against path traversal attacks before any filesystem operations. The trust store directory (~/.jacs/trust_store/) should be protected with appropriate file permissions. Revoking trust with untrust_agent() removes both the agent document and cached key material.","breadcrumbs":"Trust Store » Security notes","id":"1188","title":"Security notes"},"1189":{"body":"Most signing libraries work as tools : the developer calls sign() and verify() manually at each point where integrity matters. JACS can work that way too, but its real value appears when it operates as infrastructure -- signing happens automatically as a side effect of normal framework usage.","breadcrumbs":"Infrastructure vs Tools » Infrastructure vs Tools: JACS as Middleware","id":"1189","title":"Infrastructure vs Tools: JACS as Middleware"},"119":{"body":"jacs agent lookup example.com This fetches the agent's public key from https://example.com/.well-known/jacs-pubkey.json and checks the DNS TXT record at _v1.agent.jacs.example.com.","breadcrumbs":"Verifying Signed Documents » Looking up an agent by domain","id":"119","title":"Looking up an agent by domain"},"1190":{"body":"Approach Developer effort Coverage Tool Call sign()/verify() at every boundary Only where you remember to add it Infrastructure Add 1-3 lines of setup Every request/response automatically","breadcrumbs":"Infrastructure vs Tools » The difference","id":"1190","title":"The difference"},"1191":{"body":"JACS MCP transport proxies sit between client and server. Every JSON-RPC message is signed on the way out and verified on the way in. The MCP tools themselves never call a signing function -- it happens at the transport layer. Client --> [JACS Proxy: sign] --> Server\nClient <-- [JACS Proxy: verify] <-- Server No application code changes. The proxy handles it.","breadcrumbs":"Infrastructure vs Tools » Transport-level: MCP proxies","id":"1191","title":"Transport-level: MCP proxies"},"1192":{"body":"A single middleware line signs every HTTP response automatically: # FastAPI -- one line of setup\napp.add_middleware(JacsMiddleware, client=jacs_client)\n# Every response now carries a JACS signature header // Express -- one line of setup\napp.use(jacsMiddleware({ client }));\n// Every response now carries a JACS signature header The route handlers are unchanged. Signing is invisible to the developer writing business logic.","breadcrumbs":"Infrastructure vs Tools » Framework-level: Express / FastAPI middleware","id":"1192","title":"Framework-level: Express / FastAPI middleware"},"1193":{"body":"When JACS publishes an A2A agent card, the card includes the agent's public key and supported algorithms. Any other A2A-compatible agent can verify signatures without prior arrangement -- the trust bootstrapping is built into the protocol.","breadcrumbs":"Infrastructure vs Tools » Protocol-level: A2A agent cards","id":"1193","title":"Protocol-level: A2A agent cards"},"1194":{"body":"Manual signing has the same problem as manual memory management: developers forget, and the places they forget are the places attackers target. Infrastructure-level signing eliminates that gap. MCP transport : every tool call and result is signed, not just the ones you thought to protect HTTP middleware : every API response is signed, including error responses and health checks A2A integration : every agent interaction is verifiable, including discovery The developer adds setup code once. After that, signing happens everywhere automatically -- including in code paths the developer never explicitly considered.","breadcrumbs":"Infrastructure vs Tools » Why this matters","id":"1194","title":"Why this matters"},"1195":{"body":"Use JACS as a tool when you need fine-grained control: signing specific documents, creating agreements between named parties, or building custom verification workflows. Use JACS as infrastructure when you want blanket coverage: every message signed, every response verifiable, every agent interaction auditable. This is the recommended default for production deployments. Both approaches use the same keys, the same signatures, and the same verification. The difference is who calls sign() -- you, or the framework.","breadcrumbs":"Infrastructure vs Tools » When to use each approach","id":"1195","title":"When to use each approach"},"1196":{"body":"JACS uses DNS TXT records to anchor agent identity to domain names, providing a decentralized trust layer that does not require a central certificate authority. This page explains the trust model, configuration levels, and known limitations.","breadcrumbs":"DNS Trust Anchoring » DNS Trust Anchoring","id":"1196","title":"DNS Trust Anchoring"},"1197":{"body":"When an agent has jacsAgentDomain set, JACS publishes a TXT record at _v1.agent.jacs. containing a fingerprint of the agent's public key. During verification, JACS resolves this record and compares the fingerprint against the agent's actual key material. The TXT record format: v=hai.ai; id=; alg=sha256; enc=base64; fp= If the digest matches the local public key hash, the agent's identity is confirmed through DNS.","breadcrumbs":"DNS Trust Anchoring » How It Works","id":"1197","title":"How It Works"},"1198":{"body":"dns_validate dns_required dns_strict CLI Flag Behavior false false false --ignore-dns No DNS checks at all. Verification relies only on embedded fingerprints. true false false --no-dns Attempt DNS lookup; fall back to embedded fingerprint on failure. true true false --require-dns DNS TXT record must exist and match. No fallback to embedded fingerprint. true true true --require-strict-dns DNS TXT record must exist, match, and be DNSSEC-authenticated. Default behavior : When no flags are set, dns_validate and dns_required are derived from whether jacsAgentDomain is present in the agent document. If a domain is set, validation and requirement default to true. dns_strict always defaults to false. Verified claims override : Agents with jacsVerificationClaim set to a verified level automatically use validate=true, strict=true, required=true regardless of flags.","breadcrumbs":"DNS Trust Anchoring » Four Configuration Levels","id":"1198","title":"Four Configuration Levels"},"1199":{"body":"Domain ownership implies identity : The entity controlling DNS for a domain is authorized to speak for agents on that domain. TXT records are tamper-evident with DNSSEC : When --require-strict-dns is used, the full DNSSEC chain of trust (root -> TLD -> domain -> record) provides cryptographic integrity. Embedded fingerprints are a weaker fallback : Without DNS, JACS falls back to the signature fingerprint (jacsSignature.publicKeyHash) in the signed artifact/agent material. This proves key consistency but not domain ownership.","breadcrumbs":"DNS Trust Anchoring » Security Model Assumptions","id":"1199","title":"Security Model Assumptions"},"12":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Introduction » Node.js","id":"12","title":"Node.js"},"120":{"body":"# Require DNS validation (fail if no DNS record)\njacs agent verify --require-dns # Require strict DNSSEC validation\njacs agent verify --require-strict-dns For full DNS setup instructions, see DNS-Based Verification and DNS Trust Anchoring .","breadcrumbs":"Verifying Signed Documents » CLI verification with DNS","id":"120","title":"CLI verification with DNS"},"1200":{"body":"Attack Risk Level Mitigated By DNS cache poisoning Medium DNSSEC (--require-strict-dns), short TTLs TXT record manipulation (compromised DNS credentials) High DNSSEC, monitoring, key rotation DNS spoofing (man-in-the-middle) Medium DNSSEC validation, DNS-over-HTTPS resolvers Stale records after key rotation Low TTL management, re-publishing records before rotation Downgrade to embedded-only Medium Use --require-dns to prevent fallback","breadcrumbs":"DNS Trust Anchoring » Known Attack Vectors","id":"1200","title":"Known Attack Vectors"},"1201":{"body":"Fingerprint binding : The TXT record ties a specific public key to a domain, preventing key substitution. Multiple verification levels : From no-DNS (local development) to strict DNSSEC (production cross-org). Fallback logic : When DNS is unavailable and not required, verification degrades gracefully to embedded fingerprint comparison. Error specificity : Distinct error messages for \"record missing,\" \"fingerprint mismatch,\" \"DNSSEC failed,\" and \"agent ID mismatch.\"","breadcrumbs":"DNS Trust Anchoring » What JACS Provides","id":"1201","title":"What JACS Provides"},"1202":{"body":"Active DNSSEC chain validation : JACS relies on the system resolver (or DoH) for DNSSEC; it does not perform independent DNSKEY/DS chain validation. Certificate Transparency-style monitoring : No log of historical TXT record changes. Domain owners must monitor independently. Automatic key-to-DNS synchronization : Publishing and updating TXT records is a manual step (or CI/CD-driven).","breadcrumbs":"DNS Trust Anchoring » What JACS Does Not Yet Provide","id":"1202","title":"What JACS Does Not Yet Provide"},"1203":{"body":"Environment Minimum Setting Reason Local development --ignore-dns or --no-dns No real domain needed Internal org --no-dns DNS available but not critical Cross-org production --require-dns Prevents impersonation across trust boundaries High-security / regulated --require-strict-dns Full DNSSEC chain required For production cross-organization deployments, use --require-dns at minimum. Enable DNSSEC on your domain and use --require-strict-dns when the infrastructure supports it.","breadcrumbs":"DNS Trust Anchoring » Recommendations","id":"1203","title":"Recommendations"},"1204":{"body":"DNS-Based Verification -- setup guide with provider-specific instructions Security Model -- broader security architecture Key Rotation -- coordinating key changes with DNS updates","breadcrumbs":"DNS Trust Anchoring » See Also","id":"1204","title":"See Also"},"1205":{"body":"This page documents the error messages you will see when multi-agent agreements fail. Each scenario is validated by the chaos agreement tests in the JACS test suite.","breadcrumbs":"Failure Modes » Failure Modes","id":"1205","title":"Failure Modes"},"1206":{"body":"What happened: An agreement was created for N agents but one or more agents never signed -- they crashed, timed out, or disconnected before calling sign_agreement. Error message: not all agents have signed: [\"\"] { ... agreement object ... } What to do: Identify the unsigned agent from the error, re-establish contact, and have them call sign_agreement on the document. The partially-signed document is still valid and can accept additional signatures -- signing is additive.","breadcrumbs":"Failure Modes » Partial Signing (Agent Crash)","id":"1206","title":"Partial Signing (Agent Crash)"},"1207":{"body":"What happened: An agreement with an explicit quorum (M-of-N via AgreementOptions) received fewer than M signatures. Error message: Quorum not met: need 2 signatures, have 1 (unsigned: [\"\"]) What to do: Either collect more signatures to meet the quorum threshold, or create a new agreement with a lower quorum if appropriate. The unsigned agent IDs in the error tell you exactly who still needs to sign.","breadcrumbs":"Failure Modes » Quorum Not Met","id":"1207","title":"Quorum Not Met"},"1208":{"body":"What happened: A signature byte was modified after an agent signed the agreement. The cryptographic verification layer detects that the signature does not match the signed content. Error message: The exact message comes from the crypto verification layer and varies by algorithm, but it will always fail on the signature check rather than reporting missing signatures. You will not see \"not all agents have signed\" for this case -- the error is a cryptographic verification failure. What to do: This indicates data corruption in transit or deliberate tampering. Discard the document and request a fresh copy from the signing agent. Do not attempt to re-sign a document with a corrupted signature.","breadcrumbs":"Failure Modes » Tampered Signature","id":"1208","title":"Tampered Signature"},"1209":{"body":"What happened: The document content was modified after signatures were applied. JACS stores an integrity hash of the agreement-relevant fields at signing time, and any body modification causes a mismatch. Error message: Agreement verification failed: agreement hashes do not match What to do: The document body no longer matches what the agents originally signed. Discard the modified document and go back to the last known-good version. If the modification was intentional (e.g., an amendment), create a new agreement on the updated document and collect fresh signatures from all parties.","breadcrumbs":"Failure Modes » Tampered Document Body","id":"1209","title":"Tampered Document Body"},"121":{"body":"JACS signatures are language-agnostic. A document signed by a Rust agent verifies identically in Python and Node.js, and vice versa. This holds for both Ed25519 and post-quantum (ML-DSA-87/pq2025) algorithms. This is tested on every commit: Rust generates signed fixtures, then Python calls verify_standalone() and Node.js calls verifyStandalone() to verify them. Each binding also countersigns the fixture with a different algorithm, proving round-trip interoperability. Test sources: Rust fixture generator: jacs/tests/cross_language/mod.rs Python consumer: jacspy/tests/test_cross_language.py Node.js consumer: jacsnpm/test/cross-language.test.js","breadcrumbs":"Verifying Signed Documents » Cross-Language Verification","id":"121","title":"Cross-Language Verification"},"1210":{"body":"What happened: sign_agreement succeeded but save() was never called -- for example, a storage backend failure or process interruption before persistence. Error message: None. This is not an error. After sign_agreement returns successfully, the signed document is immediately retrievable and verifiable from in-memory storage. What to do: Retry the save() call to persist to disk. The in-memory state is consistent: you can retrieve the document with get_document, verify it with check_agreement, serialize it, and transfer it to other agents for additional signatures -- all without saving first.","breadcrumbs":"Failure Modes » In-Memory Consistency After Signing","id":"1210","title":"In-Memory Consistency After Signing"},"1211":{"body":"Creating and Using Agreements - Agreement creation and signing workflow Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details and signature verification","breadcrumbs":"Failure Modes » See Also","id":"1211","title":"See Also"},"1212":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1212","title":"Testing"},"1213":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1213","title":"Testing Fundamentals"},"1214":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1214","title":"Test Agent Setup"},"1215":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1215","title":"Test Fixtures"},"1216":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1216","title":"Unit Testing"},"1217":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1217","title":"Testing Document Operations"},"1218":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1218","title":"Testing Agreements"},"1219":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1219","title":"Agreement Completion Semantics (Strict)"},"122":{"body":"When verifying a document, JACS resolves the signer's public key in a configurable order. Set JACS_KEY_RESOLUTION to control this: Value Source local Local trust store (added via trust_agent) dns DNS TXT record lookup hai HAI key distribution service Default: local,hai. Example: JACS_KEY_RESOLUTION=local,dns,hai.","breadcrumbs":"Verifying Signed Documents » Key Resolution Order","id":"122","title":"Key Resolution Order"},"1220":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1220","title":"Two-Agent Agreement Harness (Separate Agents)"},"1221":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1221","title":"Testing Request/Response Signing"},"1222":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1222","title":"Integration Testing"},"1223":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1223","title":"Testing MCP Integration"},"1224":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1224","title":"Testing HTTP Endpoints"},"1225":{"body":"","breadcrumbs":"Testing » Mocking","id":"1225","title":"Mocking"},"1226":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1226","title":"Mocking JACS Agent"},"1227":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1227","title":"Mocking MCP Transport"},"1228":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1228","title":"Test Coverage"},"1229":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1229","title":"Rust Coverage"},"123":{"body":"Signing says WHO. Attestation says WHO plus WHY. A JACS attestation is a cryptographically signed document that goes beyond proving who signed something. It records why a piece of data should be trusted -- the evidence, the claims, and the reasoning behind that trust.","breadcrumbs":"What Is an Attestation? » What Is an Attestation?","id":"123","title":"What Is an Attestation?"},"1230":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1230","title":"Python Coverage"},"1231":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1231","title":"Node.js Coverage"},"1232":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1232","title":"CI/CD Integration"},"1233":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1233","title":"GitHub Actions"},"1234":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1234","title":"Test Environment Variables"},"1235":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1235","title":"RAII Test Fixtures (Rust)"},"1236":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1236","title":"TrustTestGuard Pattern"},"1237":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1237","title":"Property-Based Testing"},"1238":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1238","title":"Key Properties to Test"},"1239":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1239","title":"Fuzzing"},"124":{"body":"sign_message() create_attestation() Proves Who signed it Who signed it + why it's trustworthy Contains Signature + hash Signature + hash + subject + claims + evidence Use case Data integrity Trust decisions, audit trails, compliance Verification Was it tampered with? Was it tampered with? Are the claims valid? Is the evidence fresh?","breadcrumbs":"What Is an Attestation? » Signing vs. Attestation","id":"124","title":"Signing vs. Attestation"},"1240":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1240","title":"Recommended Tool: cargo-fuzz"},"1241":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1241","title":"Priority Fuzz Targets for JACS"},"1242":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1242","title":"Best Practices"},"1243":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1243","title":"1. Isolate Tests"},"1244":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1244","title":"2. Test Edge Cases"},"1245":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1245","title":"3. Test Security Properties"},"1246":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1246","title":"4. Test Error Handling"},"1247":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1247","title":"See Also"},"1248":{"body":"Use MCP when the boundary is model-to-tool inside an application or local workstation. Use A2A when the boundary is agent-to-agent across organizations or services.","breadcrumbs":"MCP Overview » MCP Overview","id":"1248","title":"MCP Overview"},"1249":{"body":"There are three supported ways to use JACS with MCP today: Run jacs mcp when you want a ready-made MCP server with the broadest tool surface. Wrap an existing MCP transport when you already have an MCP server or client and want signed JSON-RPC. Register JACS as MCP tools when you want the model to call signing, verification, agreement, A2A, or trust operations directly.","breadcrumbs":"MCP Overview » Choose The MCP Path","id":"1249","title":"Choose The MCP Path"},"125":{"body":"","breadcrumbs":"What Is an Attestation? » Key Concepts","id":"125","title":"Key Concepts"},"1250":{"body":"Runtime Best starting point What it gives you Rust jacs-mcp Full MCP server with document, agreement, trust, A2A, and audit tools Python jacs.mcp or jacs.adapters.mcp Local SSE transport security or FastMCP tool registration Node.js @hai.ai/jacs/mcp Transport proxy or MCP tool registration for existing SDK-based servers","breadcrumbs":"MCP Overview » Best Fit By Runtime","id":"1250","title":"Best Fit By Runtime"},"1251":{"body":"Python MCP wrappers are local-only. JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback URLs. Unsigned fallback is off by default. Both Python and Node fail closed unless you explicitly allow unsigned fallback. Node has two factories. createJACSTransportProxy() takes a loaded JacsClient or JacsAgent; createJACSTransportProxyAsync() is the config-path variant.","breadcrumbs":"MCP Overview » Important Constraints","id":"1251","title":"Important Constraints"},"1252":{"body":"Install the unified binary and start the MCP server: cargo install jacs-cli\njacs mcp The MCP server is built into the jacs binary (stdio transport only, no HTTP). It includes document signing, agreements, trust store operations, A2A tools, and security audit tools. See jacs-mcp/README.md in the repo for the full tool list and client configuration examples.","breadcrumbs":"MCP Overview » 1. Ready-Made Server: jacs mcp","id":"1252","title":"1. Ready-Made Server: jacs mcp"},"1253":{"body":"","breadcrumbs":"MCP Overview » 2. Transport Security Around Your Existing MCP Code","id":"1253","title":"2. Transport Security Around Your Existing MCP Code"},"1254":{"body":"Use jacs.mcp when you already have a FastMCP server or client and want transparent signing around the SSE transport: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\") For clients: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") Helpful utilities in the same module: create_jacs_mcp_server() for a one-line FastMCP server jacs_middleware() for explicit Starlette middleware wiring jacs_call() for one-off authenticated local calls See Python MCP Integration for the detailed patterns.","breadcrumbs":"MCP Overview » Python","id":"1254","title":"Python"},"1255":{"body":"Use the transport proxy when you already have an MCP transport: import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); If you only have a config path: import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); See Node.js MCP Integration for examples and tool registration.","breadcrumbs":"MCP Overview » Node.js","id":"1255","title":"Node.js"},"1256":{"body":"This is different from transport security. Here the model gets explicit MCP tools such as jacs_sign_document, jacs_verify_document, agreement helpers, and trust helpers.","breadcrumbs":"MCP Overview » 3. Register JACS Operations As MCP Tools","id":"1256","title":"3. Register JACS Operations As MCP Tools"},"1257":{"body":"from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\")\nregister_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client)","breadcrumbs":"MCP Overview » Python","id":"1257","title":"Python"},"1258":{"body":"import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The Node tool set is intentionally smaller than the Rust MCP server. Use jacs mcp when you need the largest supported MCP surface.","breadcrumbs":"MCP Overview » Node.js","id":"1258","title":"Node.js"},"1259":{"body":"jacs-mcp/README.md jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js","breadcrumbs":"MCP Overview » Example Paths In This Repo","id":"1259","title":"Example Paths In This Repo"},"126":{"body":"What is being attested. Every attestation targets a specific subject -- an artifact, agent, workflow, or identity. The subject is identified by type, ID, and cryptographic digests.","breadcrumbs":"What Is an Attestation? » Subject","id":"126","title":"Subject"},"1260":{"body":"Python MCP Integration Node.js MCP Integration A2A Interoperability Python Framework Adapters","breadcrumbs":"MCP Overview » Related Guides","id":"1260","title":"Related Guides"},"1261":{"body":"Use A2A when your agent needs to be discoverable and verifiable by another service, team, or organization. This is the cross-boundary story; MCP is the inside-the-app story.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1261","title":"A2A Interoperability"},"1262":{"body":"Agent Cards with JACS provenance metadata Signed artifacts such as a2a-task or a2a-message Trust policy for deciding whether another agent is acceptable Chain of custody via parent signatures","breadcrumbs":"A2A Interoperability » What JACS Adds To A2A","id":"1262","title":"What JACS Adds To A2A"},"1263":{"body":"","breadcrumbs":"A2A Interoperability » The Core Flow","id":"1263","title":"The Core Flow"},"1264":{"body":"Python: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\ncard = client.export_agent_card(url=\"http://localhost:8080\") Node.js: import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const card = client.exportAgentCard();","breadcrumbs":"A2A Interoperability » 1. Export An Agent Card","id":"1264","title":"1. Export An Agent Card"},"1265":{"body":"Python has the strongest first-class server helpers today. Quick demo server: from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", url=\"http://localhost:8080\",\n).serve(port=8080) Production FastAPI mounting: from jacs.a2a_server import create_a2a_app, jacs_a2a_routes app = create_a2a_app(client, title=\"My A2A Agent\")\n# or:\n# app.include_router(jacs_a2a_routes(client)) Node.js has two discovery helpers: client.getA2A().listen(port) for a minimal demo server jacsA2AMiddleware(client, options) for mounting discovery routes in an existing Express app import express from 'express';\nimport { jacsA2AMiddleware } from '@hai.ai/jacs/a2a-server'; const app = express();\napp.use(jacsA2AMiddleware(client, { url: 'http://localhost:3000' }));\napp.listen(3000);","breadcrumbs":"A2A Interoperability » 2. Serve Discovery Documents","id":"1265","title":"2. Serve Discovery Documents"},"1266":{"body":"Python: signed = client.sign_artifact({\"taskId\": \"t-1\", \"operation\": \"classify\"}, \"task\")\nresult = client.get_a2a().verify_wrapped_artifact(signed)\nassert result[\"valid\"] Node.js: const signed = await client.signArtifact( { taskId: 't-1', operation: 'classify' }, 'task',\n); const result = await client.verifyArtifact(signed);\nconsole.log(result.valid);","breadcrumbs":"A2A Interoperability » 3. Sign And Verify Artifacts","id":"1266","title":"3. Sign And Verify Artifacts"},"1267":{"body":"Trust policy answers a different question from cryptographic verification. Trust policy : should this remote agent be admitted? Artifact verification : is this specific signed payload valid? The current policy meanings are: Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store That means verified is about JACS provenance on the Agent Card , not about a promise that every foreign key has already been resolved.","breadcrumbs":"A2A Interoperability » Trust Policies","id":"1267","title":"Trust Policies"},"1268":{"body":"a2a = client.get_a2a()\nassessment = a2a.assess_remote_agent(remote_card_json, policy=\"strict\") if assessment[\"allowed\"]: result = a2a.verify_wrapped_artifact(artifact, assess_trust=True)","breadcrumbs":"A2A Interoperability » Python","id":"1268","title":"Python"},"1269":{"body":"const a2a = client.getA2A();\nconst assessment = a2a.assessRemoteAgent(remoteCardJson); if (assessment.allowed) { const result = await a2a.verifyWrappedArtifact(signedArtifact);\n}","breadcrumbs":"A2A Interoperability » Node.js","id":"1269","title":"Node.js"},"127":{"body":"What you assert about the subject. Claims are structured statements with a name, value, optional confidence score (0.0-1.0), and assurance level (self-asserted, verified, or independently-attested).","breadcrumbs":"What Is an Attestation? » Claims","id":"127","title":"Claims"},"1270":{"body":"Use the trust store when you want explicit admission: Export the agent document with share_agent() / shareAgent() Exchange the public key with share_public_key() / getPublicKey() Add the remote agent with trust_agent_with_key() / trustAgentWithKey() This is the cleanest path into strict policy.","breadcrumbs":"A2A Interoperability » Bootstrap Patterns","id":"1270","title":"Bootstrap Patterns"},"1271":{"body":"Python : jacs.a2a_server is the clearest full discovery story. Node.js : jacsA2AMiddleware() serves five .well-known routes from Express, but the generated jwks.json and jacs-pubkey.json payloads are still placeholder metadata. listen() is intentionally smaller and only suitable for demos.","breadcrumbs":"A2A Interoperability » Current Runtime Differences","id":"1271","title":"Current Runtime Differences"},"1272":{"body":"jacs-mcp/README.md jacspy/tests/test_a2a_server.py jacsnpm/src/a2a-server.js jacsnpm/examples/a2a-agent-example.js jacs/tests/a2a_cross_language_tests.rs","breadcrumbs":"A2A Interoperability » Example Paths In This Repo","id":"1272","title":"Example Paths In This Repo"},"1273":{"body":"Three focused mini-guides to get your JACS agent working with A2A. Guide What You'll Do Time 1. Serve Publish your Agent Card so other agents can find you 2 min 2. Discover & Trust Find remote agents and assess their trustworthiness 2 min 3. Exchange Sign and verify A2A artifacts with chain of custody 3 min Single-page version: See the A2A Quick Start at the repo root for a 10-line journey.","breadcrumbs":"A2A Quickstart » A2A Quickstart","id":"1273","title":"A2A Quickstart"},"1274":{"body":"Already using the A2A protocol? Here's what JACS adds -- and what stays the same.","breadcrumbs":"A2A Quickstart » JACS for A2A Developers","id":"1274","title":"JACS for A2A Developers"},"1275":{"body":"Agent Cards follow the v0.4.0 shape. Your existing Agent Card fields (name, description, skills, url) are preserved. Discovery uses /.well-known/agent-card.json. No new endpoints are required for basic interop. JSON-RPC transport is untouched. JACS works alongside A2A, not instead of it.","breadcrumbs":"A2A Quickstart » What Stays the Same","id":"1275","title":"What Stays the Same"},"1276":{"body":"A2A Alone With JACS Agent Card has no signature Agent Card is JWS-signed + JWKS published Artifacts are unsigned payloads Artifacts carry jacsSignature with signer ID, algorithm, and timestamp Trust is transport-level (TLS) Trust is data-level -- signatures persist offline No chain of custody parent_signatures link artifacts into a verifiable chain No standard trust policy open / verified / strict policies built in","breadcrumbs":"A2A Quickstart » What JACS Adds","id":"1276","title":"What JACS Adds"},"1277":{"body":"If you already serve an Agent Card, adding JACS provenance takes two steps: Step 1: Add the JACS extension to your Agent Card's capabilities: { \"capabilities\": { \"extensions\": [{ \"uri\": \"urn:jacs:provenance-v1\", \"description\": \"JACS cryptographic document signing\", \"required\": false }] }\n} Step 2: Sign artifacts before sending them: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\n# Wrap your existing artifact payload\nsigned = client.sign_artifact(your_existing_artifact, \"task\")\n# Send `signed` instead of the raw artifact Receiving agents that don't understand JACS will ignore the extra fields. Receiving agents that do understand JACS can verify the signature and assess trust.","breadcrumbs":"A2A Quickstart » Minimal Integration (Add JACS to Existing A2A Code)","id":"1277","title":"Minimal Integration (Add JACS to Existing A2A Code)"},"1278":{"body":"JACS generates two key pairs per agent: Post-quantum (ML-DSA-87) for JACS document signatures -- future-proof Traditional (RSA/ECDSA) for JWS Agent Card signatures -- A2A ecosystem compatibility This means your agent is compatible with both the current A2A ecosystem and quantum-resistant verification.","breadcrumbs":"A2A Quickstart » Dual Key Architecture","id":"1278","title":"Dual Key Architecture"},"1279":{"body":"Q: pip install jacs[a2a-server] fails. A: The a2a-server extra requires Python 3.10+ and adds FastAPI + uvicorn. If you only need signing (not serving), use pip install jacs with no extras. Q: discover_and_assess returns jacs_registered: false. A: The remote agent's Agent Card does not include the urn:jacs:provenance-v1 extension. This is normal for non-JACS A2A agents. With the open trust policy, they are still allowed; with verified, they are rejected. Q: Verification returns valid: true but trust.allowed: false. A: The signature is cryptographically correct, but the trust policy rejected the signer. With strict policy, the signer must be in your local trust store. Add them with a2a.trust_a2a_agent(card_json). Q: sign_artifact raises \"no agent loaded\". A: Call JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") or JacsClient(config_path=...) before signing. The client must have a loaded agent with keys. Q: Agent Card export returns empty skills. A: Skills are derived from jacsServices in the agent definition. Pass skills=[...] to export_agent_card() to override, or define services when creating the agent. Q: My existing A2A client doesn't understand the JACS fields. A: This is expected. JACS fields (jacsId, jacsSignature, jacsSha256) are additive. Non-JACS clients should ignore unknown fields per JSON convention. If a client rejects them, strip JACS fields before sending by extracting signed[\"payload\"]. Q: How do I verify artifacts from agents I've never seen before? A: Use JACS_KEY_RESOLUTION to configure key lookup. Set JACS_KEY_RESOLUTION=local,hai to check your local cache first, then the HAI key service. For offline-only verification, set JACS_KEY_RESOLUTION=local.","breadcrumbs":"A2A Quickstart » Troubleshooting FAQ","id":"1279","title":"Troubleshooting FAQ"},"128":{"body":"What supports the claims. Evidence references link to external proofs (A2A messages, email headers, JWT tokens, TLS notary sessions) with their own digests and timestamps.","breadcrumbs":"What Is an Attestation? » Evidence","id":"128","title":"Evidence"},"1280":{"body":"A2A Interoperability Reference -- Full API reference, well-known documents, MCP integration Trust Store -- Managing trusted agents Express Middleware -- Add A2A to existing Express apps Framework Adapters -- Auto-sign with LangChain, FastAPI, CrewAI Observability & Monitoring Guide -- Monitor signing and verification events Hero Demo (Python) -- 3-agent trust verification example Hero Demo (Node.js) -- Same demo in TypeScript","breadcrumbs":"A2A Quickstart » Next Steps","id":"1280","title":"Next Steps"},"1281":{"body":"Make your JACS agent discoverable by other A2A agents. Prerequisites: pip install jacs[a2a-server] (Python) or npm install @hai.ai/jacs express (Node.js). Python from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart(url=\"http://localhost:8080\").serve(port=8080) Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Serve Your Agent Card","id":"1281","title":"Serve Your Agent Card"},"1282":{"body":"from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.a2a_server import jacs_a2a_routes app = FastAPI()\nclient = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nrouter = jacs_a2a_routes(client)\napp.include_router(router) Node.js (Express) const express = require('express');\nconst { JacsClient } = require('@hai.ai/jacs/client');\nconst { jacsA2AMiddleware } = require('@hai.ai/jacs/a2a-server'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express();\napp.use(jacsA2AMiddleware(client));\napp.listen(8080); Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Production: Mount into Your Own FastAPI App","id":"1282","title":"Production: Mount into Your Own FastAPI App"},"1283":{"body":"All five .well-known endpoints are served automatically: Endpoint Purpose /.well-known/agent-card.json A2A Agent Card with JWS signature /.well-known/jwks.json JWK set for A2A verifiers /.well-known/jacs-agent.json JACS agent descriptor /.well-known/jacs-pubkey.json JACS public key /.well-known/jacs-extension.json JACS provenance extension descriptor The Agent Card includes the urn:jacs:provenance-v1 extension in capabilities.extensions, signaling to other JACS agents that your agent supports cryptographic provenance.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » What Gets Served","id":"1283","title":"What Gets Served"},"1284":{"body":"Discover & Trust Remote Agents -- Find other agents and assess their trustworthiness Exchange Signed Artifacts -- Sign and verify A2A artifacts A2A Interoperability Reference -- Full API reference","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Next Steps","id":"1284","title":"Next Steps"},"1285":{"body":"Find other A2A agents and decide whether to trust them. Python from jacs.a2a_discovery import discover_and_assess_sync result = discover_and_assess_sync(\"https://agent.example.com\")\nif result[\"allowed\"]: print(f\"Trusted: {result['card']['name']} ({result['trust_level']})\")","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Discover & Trust Remote Agents","id":"1285","title":"Discover & Trust Remote Agents"},"1286":{"body":"For strict policy, agents must be in your local trust store: from jacs.client import JacsClient\nfrom jacs.a2a import JACSA2AIntegration client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\na2a = JACSA2AIntegration(client, trust_policy=\"strict\") # Assess a remote agent's trustworthiness\nassessment = a2a.assess_remote_agent(remote_card_json)\nprint(f\"JACS registered: {assessment['jacs_registered']}\")\nprint(f\"Allowed: {assessment['allowed']}\") # Add to trust store (verifies agent's self-signature first)\na2a.trust_a2a_agent(remote_card_json)","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1286","title":"Add to Your Trust Store"},"1287":{"body":"from jacs.a2a_discovery import discover_agent, discover_and_assess card = await discover_agent(\"https://agent.example.com\")\nresult = await discover_and_assess(\"https://agent.example.com\", policy=\"verified\", client=client) Node.js const { discoverAndAssess } = require('@hai.ai/jacs/a2a-discovery'); const result = await discoverAndAssess('https://agent.example.com');\nif (result.allowed) { console.log(`Trusted: ${result.card.name} (${result.trustLevel})`);\n}","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Async API","id":"1287","title":"Async API"},"1288":{"body":"const { JacsClient } = require('@hai.ai/jacs/client');\nconst { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst a2a = new JACSA2AIntegration(client, 'strict'); // Assess a remote agent\nconst assessment = a2a.assessRemoteAgent(remoteCardJson);\nconsole.log(`JACS registered: ${assessment.jacsRegistered}`);\nconsole.log(`Allowed: ${assessment.allowed}`); // Add to trust store\na2a.trustA2AAgent(remoteAgentId);","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1288","title":"Add to Your Trust Store"},"1289":{"body":"Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Trust Policies","id":"1289","title":"Trust Policies"},"129":{"body":"How the attestation was produced. When one attestation builds on another -- for example, a review attestation that references an earlier scan attestation -- the derivation chain captures the full transformation history.","breadcrumbs":"What Is an Attestation? » Derivation Chain","id":"129","title":"Derivation Chain"},"1290":{"body":"1. Discover -- Fetch /.well-known/agent-card.json from a remote URL\n2. Assess -- Check for JACS extension, verify signatures\n3. Decide -- Trust policy determines if the agent is allowed\n4. Trust -- Optionally add the agent to your local trust store With open policy, all agents pass step 3. With verified, agents must have the JACS extension. With strict, agents must be explicitly added to the trust store in step 4 before they pass.","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » How Trust Flows","id":"1290","title":"How Trust Flows"},"1291":{"body":"Exchange Signed Artifacts -- Sign and verify artifacts with trusted agents Serve Your Agent Card -- Make your agent discoverable Trust Store -- Managing the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Next Steps","id":"1291","title":"Next Steps"},"1292":{"body":"Sign artifacts with cryptographic provenance and verify artifacts from other agents. Python","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Exchange Signed Artifacts","id":"1292","title":"Exchange Signed Artifacts"},"1293":{"body":"from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Sign an artifact\nsigned = client.sign_artifact({\"action\": \"classify\", \"input\": \"data\"}, \"task\") # Verify it (with trust assessment)\na2a = client.get_a2a()\nresult = a2a.verify_wrapped_artifact(signed, assess_trust=True)\nprint(f\"Valid: {result['valid']}, Allowed: {result['trust']['allowed']}\")","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1293","title":"Sign and Verify"},"1294":{"body":"When multiple agents process data in sequence, link artifacts into a verifiable chain: # Agent A signs step 1\nstep1 = client_a.sign_artifact({\"step\": 1, \"data\": \"raw\"}, \"message\") # Agent B signs step 2, referencing step 1 as parent\nstep2 = client_b.sign_artifact( {\"step\": 2, \"data\": \"processed\"}, \"message\", parent_signatures=[step1],\n) # Verify the full chain\nresult = a2a.verify_wrapped_artifact(step2)\nassert result[\"valid\"]\nassert result[\"parent_signatures_valid\"]","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1294","title":"Chain of Custody"},"1295":{"body":"chain = a2a.create_chain_of_custody([step1, step2])\n# chain contains: steps (ordered), signers, timestamps, validity Node.js","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Build an Audit Trail","id":"1295","title":"Build an Audit Trail"},"1296":{"body":"const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); // Sign an artifact\nconst signed = await client.signArtifact({ action: 'classify', input: 'data' }, 'task'); // Verify it\nconst a2a = client.getA2A();\nconst result = a2a.verifyWrappedArtifact(signed);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1296","title":"Sign and Verify"},"1297":{"body":"// Agent A signs step 1\nconst step1 = await clientA.signArtifact({ step: 1, data: 'raw' }, 'message'); // Agent B signs step 2, referencing step 1\nconst step2 = await clientB.signArtifact( { step: 2, data: 'processed' }, 'message', [step1],\n); // Verify the full chain\nconst result = a2a.verifyWrappedArtifact(step2);\nconsole.log(`Chain valid: ${result.valid}`);\nconsole.log(`Parents valid: ${result.parentSignaturesValid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1297","title":"Chain of Custody"},"1298":{"body":"The artifact_type parameter labels the payload for downstream processing: Type Use Case task Task assignments, work requests message Inter-agent messages result Task results, responses You can use any string -- these are conventions, not enforced types.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Artifact Types","id":"1298","title":"Artifact Types"},"1299":{"body":"Every signed artifact includes: Field Description jacsId Unique document ID jacsSignature Signer ID, algorithm, timestamp, and base64 signature jacsSha256 Content hash for integrity verification jacsType The artifact type label jacsParentSignatures Parent artifacts for chain of custody (if any) payload The original artifact data Non-JACS receivers can safely ignore the jacs* fields and extract payload directly.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » What Gets Signed","id":"1299","title":"What Gets Signed"},"13":{"body":"go get github.com/HumanAssisted/JACS/jacsgo Rust, Python, and Node quickstart flows create or load a persistent agent and return agent metadata including config and key paths.","breadcrumbs":"Introduction » Go","id":"13","title":"Go"},"130":{"body":"Layer 2: Adapters (A2A, email, JWT, TLSNotary) |\nLayer 1: Attestation Engine (create, verify, lift, DSSE export) |\nLayer 0: JACS Core (sign, verify, agreements, storage) Attestations build on top of existing JACS signing. Every attestation is also a valid signed JACS document. You can verify an attestation with verify() for signature checks, or use verify_attestation() for the full trust evaluation.","breadcrumbs":"What Is an Attestation? » Architecture Layers","id":"130","title":"Architecture Layers"},"1300":{"body":"Serve Your Agent Card -- Make your agent discoverable Discover & Trust Remote Agents -- Find and assess other agents A2A Interoperability Reference -- Full API reference Hero Demo (Python) -- 3-agent trust verification example","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Next Steps","id":"1300","title":"Next Steps"},"1301":{"body":"This guide helps you choose the right JACS API for your use case.","breadcrumbs":"Sign vs. Attest Decision Guide » Sign vs. Attest: When to Use Which","id":"1301","title":"Sign vs. Attest: When to Use Which"},"1302":{"body":"Start here: What do you need to prove? \"This data hasn't been tampered with\" Use sign_message() / signMessage() This gives you a cryptographic signature and integrity hash. \"This data hasn't been tampered with AND here's why it should be trusted\" Use create_attestation() / createAttestation() This gives you signature + integrity + claims + evidence + derivation chain. \"I have an existing signed document and want to add trust context\" Use lift_to_attestation() / liftToAttestation() This wraps an existing JACS-signed document into a new attestation. \"I need to export a trust proof for external systems\" Use export_attestation_dsse() / exportAttestationDsse() This creates an in-toto DSSE envelope compatible with SLSA and Sigstore. \"I need to send signed data to another agent or service\" Use sign_artifact() / signArtifact() via the A2A integration. This wraps your data in a JACS provenance envelope for cross-boundary exchange. See A2A Interoperability and A2A + Attestation Composition .","breadcrumbs":"Sign vs. Attest Decision Guide » Decision Tree","id":"1302","title":"Decision Tree"},"1303":{"body":"Scenario API Output Log an AI action sign_message() Signed document Record a human review decision create_attestation() Attestation with claims Attach evidence from another system create_attestation() with evidence Attestation with evidence refs Wrap an existing signed doc with trust context lift_to_attestation() New attestation referencing original Export for SLSA/Sigstore export_attestation_dsse() DSSE envelope Verify signature only verify() Valid/invalid + signer Verify signature + claims + evidence verify_attestation(full=True) Full verification result Exchange artifact with another agent sign_artifact() / A2A Signed wrapped artifact","breadcrumbs":"Sign vs. Attest Decision Guide » Quick Reference","id":"1303","title":"Quick Reference"},"1304":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Examples","id":"1304","title":"Examples"},"1305":{"body":"signed = client.sign_message({\"action\": \"approve\"})\nresult = client.verify(signed.raw_json)\n# result[\"valid\"] == True","breadcrumbs":"Sign vs. Attest Decision Guide » Just need integrity? Use signing.","id":"1305","title":"Just need integrity? Use signing."},"1306":{"body":"att = client.create_attestation( subject={\"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n)\nresult = client.verify_attestation(att.raw_json, full=True)\n# result[\"valid\"] == True, result[\"evidence\"] == [...]","breadcrumbs":"Sign vs. Attest Decision Guide » Need trust context? Use attestation.","id":"1306","title":"Need trust context? Use attestation."},"1307":{"body":"signed = client.sign_message({\"content\": \"original\"})\natt = client.lift_to_attestation(signed, [{\"name\": \"approved\", \"value\": True}])\n# att now has attestation metadata referencing the original document","breadcrumbs":"Sign vs. Attest Decision Guide » Already signed? Lift to attestation.","id":"1307","title":"Already signed? Lift to attestation."},"1308":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Common Patterns","id":"1308","title":"Common Patterns"},"1309":{"body":"Use sign_message() for each tool call or action. The signature proves the agent took the action and the data hasn't been modified.","breadcrumbs":"Sign vs. Attest Decision Guide » AI Agent Action Logging","id":"1309","title":"AI Agent Action Logging"},"131":{"body":"from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\") # Sign a document (Layer 0)\nsigned = client.sign_message({\"action\": \"approve\", \"amount\": 100}) # Attest WHY it's trustworthy (Layer 1)\natt = client.create_attestation( subject={\"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n) # Verify the full trust chain\nresult = client.verify_attestation(att.raw_json, full=True)\nprint(f\"Valid: {result['valid']}\")","breadcrumbs":"What Is an Attestation? » Quick Example","id":"131","title":"Quick Example"},"1310":{"body":"Use create_attestation() with claims like reviewed_by: human and confidence: 0.95. This creates an auditable record that a human reviewed and approved the output.","breadcrumbs":"Sign vs. Attest Decision Guide » Human Review Attestation","id":"1310","title":"Human Review Attestation"},"1311":{"body":"Use create_attestation() with a derivation field to capture input/output relationships. Each step attests to its own transformation with references to upstream attestations.","breadcrumbs":"Sign vs. Attest Decision Guide » Multi-step Pipeline","id":"1311","title":"Multi-step Pipeline"},"1312":{"body":"Use export_attestation_dsse() to generate an in-toto DSSE envelope that external systems (SLSA verifiers, Sigstore) can validate independently.","breadcrumbs":"Sign vs. Attest Decision Guide » Cross-system Verification","id":"1312","title":"Cross-system Verification"},"1313":{"body":"This step-by-step tutorial walks you through adding attestation support to an existing JACS workflow. You'll go from basic signing to full attestation creation and verification in under 5 minutes.","breadcrumbs":"Attestation Tutorial » Tutorial: Add Attestations to Your Workflow","id":"1313","title":"Tutorial: Add Attestations to Your Workflow"},"1314":{"body":"JACS installed (Python, Node.js, or CLI) Attestation feature enabled (built with --features attestation)","breadcrumbs":"Attestation Tutorial » Prerequisites","id":"1314","title":"Prerequisites"},"1315":{"body":"Use an ephemeral agent for testing (no files on disk): {{#tabs }} {{#tab name=\"Python\" }} from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\")\nprint(f\"Agent ID: {client.agent_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.ephemeral('ring-Ed25519');\nconsole.log(`Agent ID: ${client.agentId}`); {{#endtab }} {{#tab name=\"CLI\" }} export JACS_PRIVATE_KEY_PASSWORD=\"YourP@ssw0rd\"\njacs quickstart --algorithm ed25519 {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 1: Create an Agent","id":"1315","title":"Step 1: Create an Agent"},"1316":{"body":"Sign some data to establish the base document: {{#tabs }} {{#tab name=\"Python\" }} signed = client.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const signed = await client.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 2: Sign a Document","id":"1316","title":"Step 2: Sign a Document"},"1317":{"body":"Now add trust context -- why this document should be trusted: {{#tabs }} {{#tab name=\"Python\" }} import hashlib\ncontent_hash = hashlib.sha256(signed.raw_json.encode()).hexdigest()\nattestation = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": content_hash}, }, claims=[ { \"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95, \"assuranceLevel\": \"verified\", } ],\n)\nprint(f\"Attestation ID: {attestation.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { createHash } = require('crypto');\nconst contentHash = createHash('sha256').update(signed.raw).digest('hex');\nconst attestation = await client.createAttestation({ subject: { type: 'artifact', id: signed.documentId, digests: { sha256: contentHash }, }, claims: [{ name: 'reviewed_by', value: 'human', confidence: 0.95, assuranceLevel: 'verified', }],\n});\nconsole.log(`Attestation ID: ${attestation.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 3: Create an Attestation","id":"1317","title":"Step 3: Create an Attestation"},"1318":{"body":"","breadcrumbs":"Attestation Tutorial » Step 4: Verify the Attestation","id":"1318","title":"Step 4: Verify the Attestation"},"1319":{"body":"{{#tabs }} {{#tab name=\"Python\" }} result = client.verify_attestation(attestation.raw_json)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Signature OK: {result['crypto']['signature_valid']}\")\nprint(f\"Hash OK: {result['crypto']['hash_valid']}\") {{#endtab }} {{#tab name=\"Node.js\" }} const result = await client.verifyAttestation(attestation.raw);\nconsole.log(`Valid: ${result.valid}`);\nconsole.log(`Signature OK: ${result.crypto.signature_valid}`);\nconsole.log(`Hash OK: ${result.crypto.hash_valid}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Local Verification (fast -- signature + hash only)","id":"1319","title":"Local Verification (fast -- signature + hash only)"},"132":{"body":"Attestation (Layer C) provides trust context: claims, evidence, and derivation chains. It answers \"why should this data be trusted?\" A2A trust policy (Layer B) handles agent admission: \"is this agent allowed to communicate?\" For transport trust decisions, see A2A Interoperability . For how attestation and A2A compose, see A2A + Attestation Composition . For the full three-layer model, see Trust Layers .","breadcrumbs":"What Is an Attestation? » Attestation vs. A2A Trust Policy","id":"132","title":"Attestation vs. A2A Trust Policy"},"1320":{"body":"{{#tabs }} {{#tab name=\"Python\" }} full = client.verify_attestation(attestation.raw_json, full=True)\nprint(f\"Valid: {full['valid']}\")\nprint(f\"Evidence: {full.get('evidence', [])}\")\nprint(f\"Chain: {full.get('chain')}\") {{#endtab }} {{#tab name=\"Node.js\" }} const full = await client.verifyAttestation(attestation.raw, { full: true });\nconsole.log(`Valid: ${full.valid}`);\nconsole.log(`Evidence: ${JSON.stringify(full.evidence)}`);\nconsole.log(`Chain: ${JSON.stringify(full.chain)}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Full Verification (thorough -- includes evidence + derivation chain)","id":"1320","title":"Full Verification (thorough -- includes evidence + derivation chain)"},"1321":{"body":"Evidence references link to external proofs that support your claims: {{#tabs }} {{#tab name=\"Python\" }} attestation_with_evidence = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"abc123...\"}, }, claims=[{\"name\": \"scanned\", \"value\": True, \"confidence\": 1.0}], evidence=[ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, } ],\n) {{#endtab }} {{#tab name=\"Node.js\" }} const attWithEvidence = await client.createAttestation({ subject: { type: 'artifact', id: 'doc-001', digests: { sha256: 'abc123...' }, }, claims: [{ name: 'scanned', value: true, confidence: 1.0 }], evidence: [{ kind: 'custom', digests: { sha256: 'evidence-hash...' }, uri: 'https://scanner.example.com/results/123', collectedAt: '2026-03-04T00:00:00Z', verifier: { name: 'security-scanner', version: '2.0' }, }],\n}); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 5: Add Evidence (Optional)","id":"1321","title":"Step 5: Add Evidence (Optional)"},"1322":{"body":"Export your attestation as a DSSE (Dead Simple Signing Envelope) for compatibility with in-toto, SLSA, and Sigstore: {{#tabs }} {{#tab name=\"Python\" }} envelope = client.export_attestation_dsse(attestation.raw_json)\nprint(f\"Payload type: {envelope['payloadType']}\")\nprint(f\"Signatures: {len(envelope['signatures'])}\") {{#endtab }} {{#tab name=\"Node.js\" }} const envelope = await client.exportAttestationDsse(attestation.raw);\nconsole.log(`Payload type: ${envelope.payloadType}`);\nconsole.log(`Signatures: ${envelope.signatures.length}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 6: Export as DSSE (Optional)","id":"1322","title":"Step 6: Export as DSSE (Optional)"},"1323":{"body":"Sign vs. Attest decision guide -- when to use which API Attestation error catalog -- understand verification results What is an attestation? -- concept deep dive","breadcrumbs":"Attestation Tutorial » What's Next?","id":"1323","title":"What's Next?"},"1324":{"body":"Evidence adapters normalize external proof sources into JACS attestation claims and evidence references. JACS ships with A2A and Email adapters; you can add your own for JWT tokens, TLSNotary proofs, or any custom evidence source.","breadcrumbs":"Writing a Custom Evidence Adapter » Writing a Custom Evidence Adapter","id":"1324","title":"Writing a Custom Evidence Adapter"},"1325":{"body":"An EvidenceAdapter is a Rust trait with three methods: pub trait EvidenceAdapter: Send + Sync + std::fmt::Debug { /// Returns the kind string (e.g., \"jwt\", \"tlsnotary\", \"custom\"). fn kind(&self) -> &str; /// Normalize raw evidence bytes + metadata into claims + evidence reference. fn normalize( &self, raw: &[u8], metadata: &serde_json::Value, ) -> Result<(Vec, EvidenceRef), Box>; /// Verify a previously created evidence reference. fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result>;\n} The adapter lifecycle: At attestation creation time: normalize() is called with raw evidence bytes and optional metadata. It returns structured claims and an EvidenceRef that will be embedded in the attestation document. At verification time (full tier): verify_evidence() is called with the stored EvidenceRef to re-validate the evidence.","breadcrumbs":"Writing a Custom Evidence Adapter » What Is an EvidenceAdapter?","id":"1325","title":"What Is an EvidenceAdapter?"},"1326":{"body":"normalize() must: Compute content-addressable digests of the raw evidence using compute_digest_set_bytes() Decide whether to embed the evidence (recommended for data under 64KB) Extract meaningful claims from the evidence Set appropriate confidence and assuranceLevel values Include a collectedAt timestamp Return a VerifierInfo identifying your adapter and version normalize() must NOT: Make network calls (normalization should be deterministic and fast) Modify the raw evidence Set confidence to 1.0 unless the evidence is self-verifying (e.g., a valid cryptographic proof)","breadcrumbs":"Writing a Custom Evidence Adapter » The normalize() Contract","id":"1326","title":"The normalize() Contract"},"1327":{"body":"verify_evidence() must: Verify the digest integrity (re-hash and compare) Check freshness (is the collectedAt timestamp within acceptable bounds?) Return a detailed EvidenceVerificationResult with digest_valid, freshness_valid, and human-readable detail verify_evidence() may: Make network calls (for remote evidence resolution) Access the file system (for local evidence files) Return partial results (e.g., digest valid but freshness expired)","breadcrumbs":"Writing a Custom Evidence Adapter » The verify_evidence() Contract","id":"1327","title":"The verify_evidence() Contract"},"1328":{"body":"Here is a complete example of a JWT evidence adapter: use crate::attestation::adapters::EvidenceAdapter;\nuse crate::attestation::digest::compute_digest_set_bytes;\nuse crate::attestation::types::*;\nuse serde_json::Value;\nuse std::error::Error; #[derive(Debug)]\npub struct JwtAdapter; impl EvidenceAdapter for JwtAdapter { fn kind(&self) -> &str { \"jwt\" } fn normalize( &self, raw: &[u8], metadata: &Value, ) -> Result<(Vec, EvidenceRef), Box> { // 1. Parse the JWT (header.payload.signature) let jwt_str = std::str::from_utf8(raw)?; let parts: Vec<&str> = jwt_str.split('.').collect(); if parts.len() != 3 { return Err(\"Invalid JWT: expected 3 dot-separated parts\".into()); } // 2. Decode the payload (base64url) let payload_bytes = base64::Engine::decode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, parts[1], )?; let payload: Value = serde_json::from_slice(&payload_bytes)?; // 3. Compute content-addressable digests let digests = compute_digest_set_bytes(raw); // 4. Extract claims (only non-PII fields per TRD Decision 14) let mut claims = vec![]; if let Some(iss) = payload.get(\"iss\") { claims.push(Claim { name: \"jwt-issuer\".into(), value: iss.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: iss.as_str().map(String::from), issued_at: Some(crate::time_utils::now_rfc3339()), }); } if let Some(sub) = payload.get(\"sub\") { claims.push(Claim { name: \"jwt-subject\".into(), value: sub.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: None, issued_at: None, }); } // 5. Build the evidence reference let evidence = EvidenceRef { kind: EvidenceKind::Jwt, digests, uri: metadata.get(\"uri\").and_then(|v| v.as_str()).map(String::from), embedded: raw.len() < 65536, embedded_data: if raw.len() < 65536 { Some(Value::String(jwt_str.to_string())) } else { None }, collected_at: crate::time_utils::now_rfc3339(), resolved_at: None, sensitivity: EvidenceSensitivity::Restricted, // JWTs may contain PII verifier: VerifierInfo { name: \"jacs-jwt-adapter\".into(), version: env!(\"CARGO_PKG_VERSION\").into(), }, }; Ok((claims, evidence)) } fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result> { // Re-verify the digest let digest_valid = if let Some(ref data) = evidence.embedded_data { let raw = data.as_str().unwrap_or(\"\").as_bytes(); let recomputed = compute_digest_set_bytes(raw); recomputed.sha256 == evidence.digests.sha256 } else { // Cannot verify without embedded data or fetchable URI false }; // Check freshness (example: 5 minute max age) let freshness_valid = true; // Implement actual time check Ok(EvidenceVerificationResult { kind: \"jwt\".into(), digest_valid, freshness_valid, detail: if digest_valid { \"JWT digest verified\".into() } else { \"JWT digest mismatch or data unavailable\".into() }, }) }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Step-by-Step: Building a JWT Adapter","id":"1328","title":"Step-by-Step: Building a JWT Adapter"},"1329":{"body":"Write tests that cover: Normal case: Valid evidence normalizes to expected claims Invalid input: Malformed evidence returns a clear error Digest verification: Round-trip through normalize + verify_evidence Empty evidence: Edge case handling #[cfg(test)]\nmod tests { use super::*; use serde_json::json; #[test] fn jwt_normalize_extracts_issuer() { let adapter = JwtAdapter; // Build a minimal JWT (header.payload.signature) let header = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"alg\\\":\\\"RS256\\\"}\", ); let payload = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"iss\\\":\\\"auth.example.com\\\",\\\"sub\\\":\\\"user-123\\\"}\", ); let jwt = format!(\"{}.{}.fake-sig\", header, payload); let (claims, evidence) = adapter .normalize(jwt.as_bytes(), &json!({})) .expect(\"normalize should succeed\"); assert!(claims.iter().any(|c| c.name == \"jwt-issuer\")); assert_eq!(evidence.kind, EvidenceKind::Jwt); }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Testing Your Adapter","id":"1329","title":"Testing Your Adapter"},"133":{"body":"Use attestations when you need to answer questions like: Why should I trust this data? (claims + evidence) Who reviewed it and when? (issuer, timestamps, assurance level) How was it produced? (derivation chain) Can I independently verify the trust chain? (DSSE export, evidence verification) If you only need to prove who signed something and that it hasn't been tampered with, sign_message() is sufficient. See Sign vs. Attest for a detailed decision guide.","breadcrumbs":"What Is an Attestation? » When to Use Attestations","id":"133","title":"When to Use Attestations"},"1330":{"body":"Adapters are registered on the Agent struct via the evidence adapter list. To add your adapter to the default set, modify adapters/mod.rs: pub fn default_adapters() -> Vec> { vec![ Box::new(a2a::A2aAdapter), Box::new(email::EmailAdapter), Box::new(jwt::JwtAdapter), // Add your adapter here ]\n} For runtime registration (without modifying JACS source), use the agent's adapter API (when available in a future release).","breadcrumbs":"Writing a Custom Evidence Adapter » Registering Your Adapter with the Agent","id":"1330","title":"Registering Your Adapter with the Agent"},"1331":{"body":"The EvidenceSensitivity enum controls how evidence is handled: Public: Evidence can be freely shared and embedded Restricted: Evidence should be handled with care; consider redacting PII Confidential: Evidence should not be embedded; use content-addressable URI references only For JWTs and other credential-based evidence, default to Restricted and only include non-PII fields (iss, sub, aud, iat, exp) in claims.","breadcrumbs":"Writing a Custom Evidence Adapter » Privacy Considerations","id":"1331","title":"Privacy Considerations"},"1332":{"body":"JACS provides Python framework adapters for LangChain, FastAPI, CrewAI, and Anthropic. Each adapter can be configured to produce attestations (not just signatures) for tool calls, API requests, and agent actions.","breadcrumbs":"Framework Adapter Attestation Guide » Framework Adapter Attestation Guide","id":"1332","title":"Framework Adapter Attestation Guide"},"1333":{"body":"All framework adapters share these attestation patterns:","breadcrumbs":"Framework Adapter Attestation Guide » Common Patterns","id":"1333","title":"Common Patterns"},"1334":{"body":"When attest=True is enabled on any adapter, it automatically includes these default claims: [ {\"name\": \"framework\", \"value\": \"langchain\", \"confidence\": 1.0}, {\"name\": \"tool_name\", \"value\": \"my_tool\", \"confidence\": 1.0}, {\"name\": \"timestamp\", \"value\": \"2026-03-04T...\", \"confidence\": 1.0},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Default Claims","id":"1334","title":"Default Claims"},"1335":{"body":"Add your own claims to any adapter call: extra_claims = [ {\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}, {\"name\": \"approved\", \"value\": True, \"assuranceLevel\": \"verified\"},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Custom Claims","id":"1335","title":"Custom Claims"},"1336":{"body":"Attach evidence references from external systems: evidence = [ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"abc123...\"}, \"uri\": \"https://scanner.example.com/report/456\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, }\n]","breadcrumbs":"Framework Adapter Attestation Guide » Evidence Attachment","id":"1336","title":"Evidence Attachment"},"1337":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » LangChain","id":"1337","title":"LangChain"},"1338":{"body":"Use jacs_wrap_tool_call with attest=True: from jacs.adapters.langchain import jacs_wrap_tool_call\nfrom jacs.client import JacsClient client = JacsClient.quickstart() # Wrap a tool call with attestation\n@jacs_wrap_tool_call(client, attest=True)\ndef my_tool(query: str) -> str: return f\"Result for: {query}\" # The tool call now produces a signed attestation\nresult = my_tool(\"test query\")\n# result.attestation contains the signed attestation document","breadcrumbs":"Framework Adapter Attestation Guide » Enabling Attestation on Tool Calls","id":"1338","title":"Enabling Attestation on Tool Calls"},"1339":{"body":"from jacs.adapters.langchain import signed_tool @signed_tool(client, attest=True, claims=[ {\"name\": \"data_source\", \"value\": \"internal_db\", \"confidence\": 1.0}\n])\ndef lookup_customer(customer_id: str) -> dict: return {\"name\": \"Alice\", \"status\": \"active\"}","breadcrumbs":"Framework Adapter Attestation Guide » Using the signed_tool Decorator","id":"1339","title":"Using the signed_tool Decorator"},"134":{"body":"JACS organizes trust into three distinct layers. Each layer has a clear scope and its own vocabulary. Understanding which layer you need prevents confusion between identity, transport policy, and evidentiary trust.","breadcrumbs":"Trust Layers » JACS Trust Layers","id":"134","title":"JACS Trust Layers"},"1340":{"body":"from jacs.adapters.langchain import with_jacs_signing # Wrap an entire chain with attestation\nsigned_chain = with_jacs_signing( chain=my_chain, client=client, attest=True,\n)","breadcrumbs":"Framework Adapter Attestation Guide » With LangChain Chains","id":"1340","title":"With LangChain Chains"},"1341":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » FastAPI","id":"1341","title":"FastAPI"},"1342":{"body":"The JacsMiddleware can be configured to produce attestations for all responses: from fastapi import FastAPI\nfrom jacs.adapters.fastapi import JacsMiddleware\nfrom jacs.client import JacsClient app = FastAPI()\nclient = JacsClient.quickstart() app.add_middleware( JacsMiddleware, client=client, attest=True, # Produce attestations, not just signatures default_claims=[ {\"name\": \"service\", \"value\": \"my-api\", \"confidence\": 1.0}, ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Middleware","id":"1342","title":"Attestation Middleware"},"1343":{"body":"Use jacs_route for route-level attestation control: from jacs.adapters.fastapi import jacs_route @app.post(\"/approve\")\n@jacs_route(client, attest=True, claims=[ {\"name\": \"action\", \"value\": \"approve\", \"confidence\": 1.0}, {\"name\": \"requires_review\", \"value\": True},\n])\nasync def approve_request(request_id: str): return {\"approved\": True, \"request_id\": request_id} The response headers will include X-JACS-Attestation-Id with the attestation document ID.","breadcrumbs":"Framework Adapter Attestation Guide » Per-Route Attestation","id":"1343","title":"Per-Route Attestation"},"1344":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » CrewAI","id":"1344","title":"CrewAI"},"1345":{"body":"Use jacs_guardrail with attestation mode to create trust-verified task execution: from jacs.adapters.crewai import jacs_guardrail, JacsSignedTool\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @jacs_guardrail(client, attest=True)\ndef verified_analysis(task_result): \"\"\"Guardrail that attests to analysis quality.\"\"\" return task_result","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Guardrails","id":"1345","title":"Attestation Guardrails"},"1346":{"body":"from jacs.adapters.crewai import signed_task @signed_task(client, attest=True, claims=[ {\"name\": \"analysis_type\", \"value\": \"financial\", \"confidence\": 0.9},\n])\ndef analyze_portfolio(data): return {\"risk_score\": 0.3, \"recommendation\": \"hold\"}","breadcrumbs":"Framework Adapter Attestation Guide » Signed Tasks","id":"1346","title":"Signed Tasks"},"1347":{"body":"class MyTool(JacsSignedTool): \"\"\"A CrewAI tool with built-in attestation.\"\"\" name = \"market_data\" description = \"Fetch market data\" attest = True default_claims = [ {\"name\": \"data_source\", \"value\": \"bloomberg\"}, ] def _run(self, ticker: str) -> dict: return {\"ticker\": ticker, \"price\": 150.0}","breadcrumbs":"Framework Adapter Attestation Guide » JacsSignedTool","id":"1347","title":"JacsSignedTool"},"1348":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » Anthropic","id":"1348","title":"Anthropic"},"1349":{"body":"The Anthropic adapter hooks into Claude tool calls to produce attestations: from jacs.adapters.anthropic import signed_tool, JacsToolHook\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @signed_tool(client, attest=True)\ndef search_database(query: str) -> str: return \"Found 3 results\" # Or use the hook class for more control\nhook = JacsToolHook( client=client, attest=True, default_claims=[ {\"name\": \"model\", \"value\": \"claude-4.6\"}, {\"name\": \"tool_use_id\", \"value\": \"auto\"}, # Auto-filled from tool call ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Tool Hook Attestation","id":"1349","title":"Tool Hook Attestation"},"135":{"body":"","breadcrumbs":"Trust Layers » The Three Layers","id":"135","title":"The Three Layers"},"1350":{"body":"import anthropic\nfrom jacs.adapters.anthropic import JacsToolHook client = anthropic.Anthropic()\njacs_client = JacsClient.quickstart()\nhook = JacsToolHook(jacs_client, attest=True) # Register tools with JACS attestation\ntools = hook.wrap_tools([ { \"name\": \"get_weather\", \"description\": \"Get weather for a location\", \"input_schema\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\"}}}, }\n])","breadcrumbs":"Framework Adapter Attestation Guide » With the Anthropic SDK","id":"1350","title":"With the Anthropic SDK"},"1351":{"body":"All framework attestations use the same JACS verification API: # Verify any attestation (from any framework adapter)\nresult = client.verify_attestation(attestation_json, full=True)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Framework: {result['claims'][0]['value']}\")\nprint(f\"Evidence: {result.get('evidence', [])}\")","breadcrumbs":"Framework Adapter Attestation Guide » Verifying Framework Attestations","id":"1351","title":"Verifying Framework Attestations"},"1352":{"body":"All adapters respect the strict flag on JacsClient: Permissive (default): Signing/attestation failures log warnings but do not block the operation Strict: Signing/attestation failures raise exceptions and block the operation # Strict mode: attestation failure = operation failure\nclient = JacsClient.quickstart(strict=True) # Permissive mode: attestation failure = warning + continue\nclient = JacsClient.quickstart(strict=False)","breadcrumbs":"Framework Adapter Attestation Guide » Strict vs. Permissive Mode","id":"1352","title":"Strict vs. Permissive Mode"},"1353":{"body":"A2A provenance and attestation serve different purposes. This guide explains when and how to combine them.","breadcrumbs":"A2A + Attestation Composition » A2A + Attestation: Using Both Together","id":"1353","title":"A2A + Attestation: Using Both Together"},"1354":{"body":"Use A2A alone when you need to prove who sent what across agent boundaries. Use attestation alone when you need to record why data should be trusted within a single agent's workflow. Use both when: You send data to another agent AND need to explain why it's trustworthy You receive data from another agent AND want to attest that you reviewed it You're building a multi-agent pipeline where each step adds trust evidence","breadcrumbs":"A2A + Attestation Composition » When You Need Both","id":"1354","title":"When You Need Both"},"1355":{"body":"A2A chain-of-custody provides movement lineage. Attestation derivation provides claim lineage. A2A tracks where an artifact has been (Agent A → Agent B → Agent C). Attestation tracks what trust claims have been made about it (scanned → reviewed → approved). They compose naturally: an agent receives a signed artifact via A2A, then creates an attestation recording its analysis of that artifact.","breadcrumbs":"A2A + Attestation Composition » The Composition Rule","id":"1355","title":"The Composition Rule"},"1356":{"body":"Agent A: Signs artifact with A2A provenance ↓ (cross-boundary exchange)\nAgent B: Verifies A2A signature, attests review with evidence ↓ (cross-boundary exchange)\nAgent C: Verifies both the A2A chain and the attestation","breadcrumbs":"A2A + Attestation Composition » Example Workflow","id":"1356","title":"Example Workflow"},"1357":{"body":"from jacs.client import JacsClient # --- Agent A: Sign and send ---\nagent_a = JacsClient.quickstart(name=\"scanner\", domain=\"scanner.example.com\")\na2a_a = agent_a.get_a2a()\nsigned = a2a_a.sign_artifact( {\"scan_result\": \"clean\", \"target\": \"file.bin\"}, \"message\",\n) # --- Agent B: Receive, verify, attest ---\nagent_b = JacsClient.quickstart(name=\"reviewer\", domain=\"reviewer.example.com\")\na2a_b = agent_b.get_a2a() # Verify the A2A artifact from Agent A\nverify_result = a2a_b.verify_wrapped_artifact(signed)\nassert verify_result[\"valid\"] # Now attest WHY the review is trustworthy\nimport hashlib, json\ncontent_hash = hashlib.sha256(json.dumps(signed, sort_keys=True).encode()).hexdigest()\nattestation = agent_b.create_attestation( subject={\"type\": \"artifact\", \"id\": signed[\"jacsId\"], \"digests\": {\"sha256\": content_hash}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.9}],\n) # Send the attestation onward via A2A\nattested_artifact = a2a_b.sign_artifact( {\"attestation_id\": attestation.document_id, \"original_artifact\": signed[\"jacsId\"]}, \"message\", parent_signatures=[signed],\n)","breadcrumbs":"A2A + Attestation Composition » Python","id":"1357","title":"Python"},"1358":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; // --- Agent A: Sign and send ---\nconst agentA = await JacsClient.quickstart({ name: 'scanner', domain: 'scanner.example.com' });\nconst a2aA = agentA.getA2A();\nconst signed = await a2aA.signArtifact( { scanResult: 'clean', target: 'file.bin' }, 'message',\n); // --- Agent B: Receive, verify, attest ---\nconst agentB = await JacsClient.quickstart({ name: 'reviewer', domain: 'reviewer.example.com' });\nconst a2aB = agentB.getA2A(); const verifyResult = await a2aB.verifyWrappedArtifact(signed);\nconsole.assert(verifyResult.valid); // Attest the review\nconst attestation = agentB.createAttestation({ subject: { type: 'artifact', id: signed.jacsId, digests: { sha256: '...' } }, claims: [{ name: 'reviewed', value: true, confidence: 0.9 }],\n});","breadcrumbs":"A2A + Attestation Composition » Node.js","id":"1358","title":"Node.js"},"1359":{"body":"Don't use A2A trust policy to validate attestation evidence. A2A policy (open/verified/strict) controls agent admission, not evidence quality. An allowed agent can still produce bad evidence. Don't use attestation to determine transport trust. Attestation claims don't tell you whether an agent should be allowed to communicate. Use assess_remote_agent() for that. Don't conflate chain-of-custody with derivation chain. A2A parent signatures track artifact movement. Attestation derivation tracks how one claim was produced from another. They are complementary, not interchangeable.","breadcrumbs":"A2A + Attestation Composition » What NOT to Do","id":"1359","title":"What NOT to Do"},"136":{"body":"Scope: Who signed what, and has it been tampered with? APIs: sign_message(), verify(), verify_standalone() This is the foundation. Every JACS document carries a cryptographic signature that proves which agent created it and that the content hasn't changed. Layer A answers: \"Is this signature valid?\" Crypto status values: Verified · SelfSigned · Unverified · Invalid Verified : Signature is valid and signer's key was resolved from a trusted source. SelfSigned : Signature is valid but signer is the same as verifier (no third-party trust). Unverified : Signature could not be checked because the signer's key was not available. Invalid : Signature check failed — the content was tampered with or the wrong key was used.","breadcrumbs":"Trust Layers » Layer A: Identity + Integrity (JACS Core)","id":"136","title":"Layer A: Identity + Integrity (JACS Core)"},"1360":{"body":"Trust Layers — the three-layer model and terminology A2A Interoperability — full A2A reference Attestation Tutorial — creating and verifying attestations Sign vs. Attest — choosing the right API","breadcrumbs":"A2A + Attestation Composition » Further Reading","id":"1360","title":"Further Reading"},"1361":{"body":"JACS emits structured events at every signing, verification, and agreement lifecycle step. This guide shows you how to capture those events and route them to your monitoring stack. For Rust-specific API details (ObservabilityConfig, LogDestination, MetricsConfig, etc.), see the Observability (Rust API) .","breadcrumbs":"Observability & Monitoring Guide » Observability & Monitoring Guide","id":"1361","title":"Observability & Monitoring Guide"},"1362":{"body":"Every event includes an event field for filtering. The table below is derived directly from the source code.","breadcrumbs":"Observability & Monitoring Guide » Structured Event Reference","id":"1362","title":"Structured Event Reference"},"1363":{"body":"Event Level Fields Source document_signed info algorithm, duration_ms crypt/mod.rs batch_signed info algorithm, batch_size, duration_ms crypt/mod.rs signing_procedure_complete info agent_id, algorithm, timestamp, placement_key agent/mod.rs","breadcrumbs":"Observability & Monitoring Guide » Signing Events","id":"1363","title":"Signing Events"},"1364":{"body":"Event Level Fields Source signature_verified info algorithm, valid, duration_ms crypt/mod.rs verification_complete info / error document_id, signer_id, algorithm, timestamp, valid, duration_ms agent/mod.rs verification_complete emits at info when valid=true and at error when valid=false.","breadcrumbs":"Observability & Monitoring Guide » Verification Events","id":"1364","title":"Verification Events"},"1365":{"body":"Event Level Fields Source agreement_created info document_id, agent_count, quorum, has_timeout agent/agreement.rs signature_added info document_id, signer_id, current, total, required agent/agreement.rs quorum_reached info document_id, signatures, required, total agent/agreement.rs agreement_expired warn document_id, deadline agent/agreement.rs","breadcrumbs":"Observability & Monitoring Guide » Agreement Events","id":"1365","title":"Agreement Events"},"1366":{"body":"JACS ships with three optional feature flags for OpenTelemetry backends. By default, only stderr and file logging are available. # Enable all three OTEL pipelines\ncargo build --features otlp-logs,otlp-metrics,otlp-tracing # Or enable just tracing\ncargo build --features otlp-tracing Feature What it adds otlp-logs OTLP log export (opentelemetry, opentelemetry-otlp, opentelemetry-appender-tracing, tokio) otlp-metrics OTLP metrics export (opentelemetry, opentelemetry-otlp, opentelemetry_sdk, tokio) otlp-tracing Distributed tracing (opentelemetry, opentelemetry-otlp, tracing-opentelemetry, tokio) Convenience helpers for automatic counter/gauge recording for sign and verify operations are always available without any feature flag.","breadcrumbs":"Observability & Monitoring Guide » Enabling OTEL Export","id":"1366","title":"Enabling OTEL Export"},"1367":{"body":"Route JACS events through an OpenTelemetry Collector. This configuration receives OTLP over HTTP, batches events, and exports to common backends. # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: timeout: 5s send_batch_size: 512 filter/jacs: logs: include: match_type: regexp record_attributes: - key: event value: \"document_signed|signature_verified|verification_complete|agreement_.*|batch_signed|signing_procedure_complete|quorum_reached|signature_added\" exporters: # Debug: print to collector stdout debug: verbosity: detailed # Datadog datadog: api: key: \"${DD_API_KEY}\" site: datadoghq.com # Splunk HEC splunkhec: token: \"${SPLUNK_HEC_TOKEN}\" endpoint: \"https://splunk-hec:8088/services/collector\" source: \"jacs\" sourcetype: \"jacs:events\" # Generic OTLP (Grafana Cloud, Honeycomb, etc.) otlphttp: endpoint: \"${OTLP_ENDPOINT}\" headers: Authorization: \"Bearer ${OTLP_API_KEY}\" service: pipelines: logs: receivers: [otlp] processors: [batch, filter/jacs] exporters: [debug] # Replace with your exporter metrics: receivers: [otlp] processors: [batch] exporters: [debug] traces: receivers: [otlp] processors: [batch] exporters: [debug]","breadcrumbs":"Observability & Monitoring Guide » OTEL Collector Configuration","id":"1367","title":"OTEL Collector Configuration"},"1368":{"body":"In jacs.config.json: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"my-jacs-service\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n} Or via environment variables (useful in containers): export OTEL_EXPORTER_OTLP_ENDPOINT=\"http://collector:4318\"\nexport OTEL_SERVICE_NAME=\"jacs-production\"\nexport OTEL_RESOURCE_ATTRIBUTES=\"deployment.environment=production\"","breadcrumbs":"Observability & Monitoring Guide » Pointing JACS at the Collector","id":"1368","title":"Pointing JACS at the Collector"},"1369":{"body":"Deploy the OTEL Collector with the datadog exporter (see config above). Set DD_API_KEY in the collector's environment. In Datadog, JACS events appear under Logs > Search with source:opentelemetry. Create a monitor on event:verification_complete AND valid:false to alert on verification failures. Alternatively, use the Datadog Agent's built-in OTLP receiver: # datadog.yaml\notlp_config: receiver: protocols: http: endpoint: 0.0.0.0:4318","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Datadog","id":"1369","title":"Feeding Events to Datadog"},"137":{"body":"Scope: Is this agent allowed to communicate with me? APIs: sign_artifact(), verify_wrapped_artifact(), assess_remote_agent(), discover_agent() Layer B handles cross-boundary exchange between agents using the A2A protocol. It adds trust policy on top of Layer A's cryptographic status. Layer B answers: \"Should I accept artifacts from this agent?\" Policy status values: allowed · blocked · not_assessed Trust policies (open, verified, strict) control admission: Policy Requirement open Accept all agents verified Agent must have the urn:jacs:provenance-v1 extension strict Agent must be in the local trust store See A2A Interoperability for full details.","breadcrumbs":"Trust Layers » Layer B: Exchange + Discovery (A2A Integration)","id":"137","title":"Layer B: Exchange + Discovery (A2A Integration)"},"1370":{"body":"Deploy the OTEL Collector with the splunkhec exporter. Set SPLUNK_HEC_TOKEN in the collector's environment. Events arrive in Splunk with sourcetype=jacs:events. Search: sourcetype=\"jacs:events\" event=\"verification_complete\" valid=false","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Splunk","id":"1370","title":"Feeding Events to Splunk"},"1371":{"body":"Agreement events give you a complete lifecycle view: creation, each signature, quorum, and expiry. Here are practical queries.","breadcrumbs":"Observability & Monitoring Guide » Agreement Monitoring","id":"1371","title":"Agreement Monitoring"},"1372":{"body":"Filter for agreement_created events where has_timeout=true, then correlate with quorum_reached. Any agreement_created without a matching quorum_reached within the timeout window is at risk.","breadcrumbs":"Observability & Monitoring Guide » Agreements Approaching Timeout","id":"1372","title":"Agreements Approaching Timeout"},"1373":{"body":"event=\"signature_added\" | stats max(current) as sigs, max(required) as needed by document_id\n| where sigs < needed","breadcrumbs":"Observability & Monitoring Guide » Failed Quorum Detection","id":"1373","title":"Failed Quorum Detection"},"1374":{"body":"Track signature_added events over time to see how quickly agents sign after agreement creation: event=\"signature_added\" | timechart count by document_id","breadcrumbs":"Observability & Monitoring Guide » Signature Velocity","id":"1374","title":"Signature Velocity"},"1375":{"body":"The agreement_expired event (level warn) fires when an agent attempts to sign or verify an expired agreement. Alert on this directly: event=\"agreement_expired\" | alert","breadcrumbs":"Observability & Monitoring Guide » Expiry Alerts","id":"1375","title":"Expiry Alerts"},"1376":{"body":"Both document_signed and signature_verified include duration_ms. Use these to track signing and verification performance: event=\"document_signed\" | stats avg(duration_ms) as avg_sign_ms, p99(duration_ms) as p99_sign_ms by algorithm\nevent=\"signature_verified\" | stats avg(duration_ms) as avg_verify_ms, p99(duration_ms) as p99_verify_ms by algorithm Post-quantum algorithms (pq2025, pq-dilithium) will show higher latency than ring-Ed25519. Use these metrics to decide whether the security/performance tradeoff is acceptable for your workload.","breadcrumbs":"Observability & Monitoring Guide » Latency Tracking","id":"1376","title":"Latency Tracking"},"1377":{"body":"Observability (Rust API) -- Full API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig Algorithm Selection Guide -- Latency implications of algorithm choice Failure Modes -- What events to expect when things go wrong","breadcrumbs":"Observability & Monitoring Guide » Next Steps","id":"1377","title":"Next Steps"},"1378":{"body":"JACS provides a detached-signature model for email. Your agent signs a raw RFC 5322 .eml file and the result is the same email with a jacs-signature.json MIME attachment. The recipient extracts that attachment, verifies the cryptographic signature, and compares content hashes to detect tampering. There are only two functions you need: Action Function What you supply What you get back Sign jacs::email::sign_email() raw .eml bytes + your EmailSigner .eml bytes with jacs-signature.json Verify jacs::email::verify_email() signed .eml bytes + sender's public key + verifier ContentVerificationResult (pass/fail per field)","breadcrumbs":"Email Signing & Verification » Email Signing and Verification","id":"1378","title":"Email Signing and Verification"},"1379":{"body":"use jacs::email::{sign_email, EmailSigner}; // 1. Load raw email bytes (RFC 5322 format)\nlet raw_eml = std::fs::read(\"outgoing.eml\")?; // 2. Sign — your agent implements EmailSigner (see below)\nlet signed_eml = sign_email(&raw_eml, &my_agent)?; // 3. Send signed_eml — it is a valid .eml with the JACS attachment\nstd::fs::write(\"outgoing_signed.eml\", &signed_eml)?;","breadcrumbs":"Email Signing & Verification » Signing an email","id":"1379","title":"Signing an email"},"138":{"body":"Scope: Why should this data be trusted? APIs: create_attestation(), verify_attestation(), lift_to_attestation(), export_attestation_dsse() Layer C records the reasoning behind trust: claims, evidence, derivation chains, and assurance levels. Layer C answers: \"What evidence supports this data?\" Attestation status values: local_valid · full_valid local_valid : Signature and hash are correct; claims are structurally valid. full_valid : All of the above, plus evidence digests verified and derivation chain intact. See What Is an Attestation? for full details.","breadcrumbs":"Trust Layers » Layer C: Trust Context (Attestation)","id":"138","title":"Layer C: Trust Context (Attestation)"},"1380":{"body":"Your agent must implement four methods: pub trait EmailSigner { /// Sign raw bytes. Return the signature bytes. fn sign_bytes(&self, data: &[u8]) -> Result, Box>; /// Your agent's JACS ID (e.g. \"abc123:v1\"). fn jacs_id(&self) -> &str; /// The key identifier used for signing. fn key_id(&self) -> &str; /// The signing algorithm name. This comes from your JACS agent's /// key configuration — never hardcode it. fn algorithm(&self) -> &str;\n} The algorithm value (e.g. \"ed25519\", \"rsa-pss\", \"pq2025\") is read from your JACS agent's key metadata at runtime. sign_email records it in the jacs-signature.json document so the verifier knows which algorithm to use.","breadcrumbs":"Email Signing & Verification » The EmailSigner trait","id":"1380","title":"The EmailSigner trait"},"1381":{"body":"Parses and canonicalizes the email headers and body Computes SHA-256 hashes for each header, body part, and attachment Builds the JACS email signature payload Canonicalizes the payload via RFC 8785 (JCS) Calls your sign_bytes() to produce the cryptographic signature Attaches the result as jacs-signature.json You do not need to know any of this to use it — it is a single function call.","breadcrumbs":"Email Signing & Verification » What sign_email does internally","id":"1381","title":"What sign_email does internally"},"1382":{"body":"If the email already has a jacs-signature.json (it was previously signed by another agent), sign_email automatically: Renames the existing signature to jacs-signature-0.json (or -1, -2, ...) Computes a parent_signature_hash linking to the previous signature Signs the email with a new jacs-signature.json This builds a verifiable forwarding chain. No extra code needed.","breadcrumbs":"Email Signing & Verification » Forwarding (re-signing)","id":"1382","title":"Forwarding (re-signing)"},"1383":{"body":"","breadcrumbs":"Email Signing & Verification » Verifying an email","id":"1383","title":"Verifying an email"},"1384":{"body":"use jacs::email::verify_email;\nuse jacs::simple::SimpleAgent; let signed_eml = std::fs::read(\"incoming_signed.eml\")?;\nlet sender_public_key: Vec = /* fetch from HAI registry or local store */; // Any agent can verify — the sender's public key is passed explicitly\nlet (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?;\nlet result = verify_email(&signed_eml, &agent, &sender_public_key)?; if result.valid { println!(\"Email is authentic and unmodified\");\n} else { // Inspect which fields failed for field in &result.field_results { println!(\"{}: {:?}\", field.field, field.status); }\n} verify_email does everything in one call: Extracts jacs-signature.json from the email Removes it (the signature covers the email without itself) Verifies the JACS document signature against the sender's public key Compares every hash in the JACS document against the actual email content Returns per-field results","breadcrumbs":"Email Signing & Verification » One-call API (recommended)","id":"1384","title":"One-call API (recommended)"},"1385":{"body":"If you need to inspect the JACS document metadata (issuer, timestamps) before doing the content comparison: use jacs::email::{verify_email_document, verify_email_content};\nuse jacs::simple::SimpleAgent; let (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?; // Step 1: Verify the cryptographic signature — returns the trusted JACS document\nlet (doc, parts) = verify_email_document(&signed_eml, &agent, &sender_public_key)?; // Inspect the document\nprintln!(\"Signed by: {}\", doc.metadata.issuer);\nprintln!(\"Created at: {}\", doc.metadata.created_at); // Step 2: Compare content hashes\nlet result = verify_email_content(&doc, &parts);\nassert!(result.valid); All cryptographic operations are handled by the JACS agent via SimpleAgent::verify_with_key(). The agent's own key is not used -- the sender's public key is passed explicitly.","breadcrumbs":"Email Signing & Verification » Two-step API (when you need the JACS document)","id":"1385","title":"Two-step API (when you need the JACS document)"},"1386":{"body":"The ContentVerificationResult contains a field_results vector with one entry per field: Status Meaning Pass Hash matches — field is authentic Modified Hash mismatch but case-insensitive email address match (address headers only) Fail Content does not match the signed hash Unverifiable Field absent or not verifiable (e.g. Message-ID may change in transit) Fields checked: from, to, cc, subject, date, message_id, in_reply_to, references, body_plain, body_html, and all attachments.","breadcrumbs":"Email Signing & Verification » Field-level results","id":"1386","title":"Field-level results"},"1387":{"body":"The jacs-signature.json attachment has this structure: { \"version\": \"1.0\", \"document_type\": \"email_signature\", \"payload\": { \"headers\": { \"from\": { \"value\": \"agent@example.com\", \"hash\": \"sha256:...\" }, \"to\": { \"value\": \"recipient@example.com\", \"hash\": \"sha256:...\" }, \"subject\": { \"value\": \"Hello\", \"hash\": \"sha256:...\" }, \"date\": { \"value\": \"Fri, 28 Feb 2026 12:00:00 +0000\", \"hash\": \"sha256:...\" }, \"message_id\": { \"value\": \"\", \"hash\": \"sha256:...\" } }, \"body_plain\": { \"content_hash\": \"sha256:...\" }, \"body_html\": null, \"attachments\": [ { \"filename\": \"report.pdf\", \"content_hash\": \"sha256:...\" } ], \"parent_signature_hash\": null }, \"metadata\": { \"issuer\": \"agent-jacs-id:v1\", \"document_id\": \"uuid\", \"created_at\": \"2026-02-28T12:00:00Z\", \"hash\": \"sha256:...\" }, \"signature\": { \"key_id\": \"agent-key-id\", \"algorithm\": \"ed25519\", \"signature\": \"base64...\", \"signed_at\": \"2026-02-28T12:00:00Z\" }\n} metadata.hash is the SHA-256 of the RFC 8785 canonical JSON of payload. signature.signature is the cryptographic signature over that same canonical JSON. The algorithm is always read from the agent — never hardcoded.","breadcrumbs":"Email Signing & Verification » The JACS signature document","id":"1387","title":"The JACS signature document"},"1388":{"body":"All items are re-exported from jacs::email: // Signing\njacs::email::sign_email(raw_email: &[u8], signer: &dyn EmailSigner) -> Result, EmailError>\njacs::email::EmailSigner // trait your agent implements // Verification\njacs::email::verify_email(raw, &agent, pubkey) // one-call: crypto + content check\njacs::email::verify_email_document(raw, &agent, pk) // step 1: crypto only\njacs::email::verify_email_content(&doc, &parts) // step 2: content hash comparison\njacs::email::normalize_algorithm(...) // algorithm name normalization // Types\njacs::email::ContentVerificationResult // overall result with field_results\njacs::email::FieldResult // per-field status\njacs::email::FieldStatus // Pass | Modified | Fail | Unverifiable\njacs::email::JacsEmailSignatureDocument // the full signature document\njacs::email::EmailError // error type // Attachment helpers (for advanced use)\njacs::email::get_jacs_attachment(...) // extract jacs-signature.json bytes\njacs::email::remove_jacs_attachment(...) // strip jacs-signature.json from email\njacs::email::add_jacs_attachment(...) // inject jacs-signature.json into email","breadcrumbs":"Email Signing & Verification » Public API summary","id":"1388","title":"Public API summary"},"1389":{"body":"JACS uses a buffer-then-sign pattern for streaming outputs. Token streams from LLMs are accumulated in memory and signed once the stream completes. This is the correct approach for LLM outputs because: LLM responses are small. A typical response is under 100KB of text. Buffering this costs nothing. Signatures cover the complete output. A partial signature over incomplete text is useless for verification. Framework adapters handle this automatically. If you use a JACS adapter, streaming signing just works.","breadcrumbs":"Streaming Signing » Streaming Signing","id":"1389","title":"Streaming Signing"},"139":{"body":"Term Layer Meaning Crypto status A Outcome of signature verification: Verified, SelfSigned, Unverified, Invalid Policy status B Outcome of trust policy check: allowed, blocked, not_assessed Attestation status C Outcome of attestation verification: local_valid, full_valid Verified A Signature is valid and signer key was resolved SelfSigned A Signature is valid but signer is the verifier Unverified A Key not available — cannot check signature Invalid A Signature check failed Allowed B Agent passes the configured trust policy Blocked B Agent does not pass the trust policy Not assessed B No agent card provided — trust not evaluated","breadcrumbs":"Trust Layers » Terminology Glossary","id":"139","title":"Terminology Glossary"},"1390":{"body":"","breadcrumbs":"Streaming Signing » How It Works by Framework","id":"1390","title":"How It Works by Framework"},"1391":{"body":"The wrapStream middleware accumulates text-delta chunks via a TransformStream. When the stream flushes, it signs the complete text and emits a provider-metadata chunk containing the provenance record. import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { streamText } from 'ai'; const model = withProvenance(openai('gpt-4o'), { client });\nconst result = await streamText({ model, prompt: 'Explain trust.' }); for await (const chunk of result.textStream) { process.stdout.write(chunk); // stream to user in real time\n}\n// provenance is available after stream completes","breadcrumbs":"Streaming Signing » Vercel AI SDK (streamText)","id":"1391","title":"Vercel AI SDK (streamText)"},"1392":{"body":"LangChain tools execute synchronously (or await async results) before returning to the model. JACS signs each tool result individually via wrap_tool_call or signed_tool. No special streaming handling is needed because the signing happens at the tool output boundary, not the token stream. from jacs.adapters.langchain import jacs_signing_middleware agent = create_agent( model=\"openai:gpt-4o\", tools=tools, middleware=[jacs_signing_middleware(client=jacs_client)],\n)\n# Tool results are auto-signed before the model sees them","breadcrumbs":"Streaming Signing » LangChain / LangGraph","id":"1392","title":"LangChain / LangGraph"},"1393":{"body":"HTTP middleware signs the response body before it is sent. For streaming HTTP responses (SSE, chunked encoding), sign the complete message content before streaming, or sign each event individually. # FastAPI: middleware signs JSON responses automatically\nfrom jacs.adapters.fastapi import JacsMiddleware\napp.add_middleware(JacsMiddleware)","breadcrumbs":"Streaming Signing » Express / Koa / FastAPI","id":"1393","title":"Express / Koa / FastAPI"},"1394":{"body":"If you're calling an LLM API directly without a framework adapter, accumulate the response yourself and sign it when complete: import jacs.simple as jacs jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Accumulate streamed response\nchunks = []\nasync for chunk in llm_stream(\"What is trust?\"): chunks.append(chunk) print(chunk, end=\"\") # stream to user # Sign the complete response\ncomplete_text = \"\".join(chunks)\nsigned = jacs.sign_message({\"response\": complete_text, \"model\": \"gpt-4o\"}) const jacs = require('@hai.ai/jacs/simple');\nawait jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com' }); const chunks = [];\nfor await (const chunk of llmStream('What is trust?')) { chunks.push(chunk); process.stdout.write(chunk);\n} const signed = await jacs.signMessage({ response: chunks.join(''), model: 'gpt-4o',\n});","breadcrumbs":"Streaming Signing » Raw LLM APIs (No Framework Adapter)","id":"1394","title":"Raw LLM APIs (No Framework Adapter)"},"1395":{"body":"The buffer-then-sign pattern assumes the full content fits in memory. This is always true for LLM text responses. If you need to sign very large data (multi-GB files, video streams), use sign_file instead, which hashes the file on disk without loading it into memory.","breadcrumbs":"Streaming Signing » When NOT to Buffer","id":"1395","title":"When NOT to Buffer"},"1396":{"body":"Vercel AI SDK Adapter LangChain Adapters Framework Adapters (Node.js)","breadcrumbs":"Streaming Signing » See Also","id":"1396","title":"See Also"},"1397":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1397","title":"CLI Examples"},"1398":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1398","title":"Quick Reference"},"1399":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1399","title":"Getting Started"},"14":{"body":"It does not treat MCP and A2A as the same thing. MCP is for model-to-tool calls inside an application boundary; A2A is for agent discovery and exchange across boundaries. It does not assume every aspirational integration is first-class. If a chapter describes a feature that is not fully supported today, it has been moved out of the main path and tracked separately. It does not require a registry or blockchain to work. JACS identity is key-based and can be used entirely locally.","breadcrumbs":"Introduction » What This Book Does Not Claim","id":"14","title":"What This Book Does Not Claim"},"140":{"body":"\"Which layer do I need?\" I just need to prove data hasn't been tampered with → Layer A. Use sign_message() and verify(). I need to exchange signed data with other agents → Layer B. Use sign_artifact() and A2A discovery. See the A2A Quickstart . I need to record WHY data should be trusted → Layer C. Use create_attestation(). See the Attestation Tutorial . I need both exchange AND trust evidence → Layer B + C. See A2A + Attestation Composition .","breadcrumbs":"Trust Layers » Quick Decision Flow","id":"140","title":"Quick Decision Flow"},"1400":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1400","title":"First-Time Setup"},"1401":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1401","title":"Verify Your Setup"},"1402":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1402","title":"Document Operations"},"1403":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1403","title":"Creating Documents"},"1404":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1404","title":"Verifying Documents"},"1405":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1405","title":"Updating Documents"},"1406":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1406","title":"Extracting Embedded Content"},"1407":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1407","title":"Agreement Workflows"},"1408":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1408","title":"Creating an Agreement"},"1409":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1409","title":"Signing an Agreement"},"141":{"body":"\"Unverified\" does not mean \"Invalid.\" Unverified means the signer's key wasn't available. Invalid means the signature check actively failed. These have very different security implications. A2A trust policy is not attestation verification. A2A policy (Layer B) answers \"should I talk to this agent?\" Attestation (Layer C) answers \"why should I trust this data?\" They compose but are not interchangeable. \"Trusted\" is not the same as \"Verified.\" In JACS, \"trusted\" refers to trust store membership (Layer B). \"Verified\" refers to cryptographic signature validation (Layer A).","breadcrumbs":"Trust Layers » Common Misconceptions","id":"141","title":"Common Misconceptions"},"1410":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1410","title":"Complete Agreement Workflow"},"1411":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1411","title":"Agent Operations"},"1412":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1412","title":"Creating a Custom Agent"},"1413":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1413","title":"DNS-Based Identity"},"1414":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1414","title":"Agent Verification"},"1415":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1415","title":"Task Management"},"1416":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1416","title":"Creating Tasks"},"1417":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1417","title":"Scripting Examples"},"1418":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1418","title":"Batch Document Processing"},"1419":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1419","title":"Verification Report"},"142":{"body":"JACS includes native bindings (Rust compiled to platform-specific libraries), so deployment depends on pre-built binary availability for your target platform.","breadcrumbs":"Deployment Compatibility » Deployment Compatibility","id":"142","title":"Deployment Compatibility"},"1420":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1420","title":"Watch for New Documents"},"1421":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1421","title":"Environment Configuration"},"1422":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1422","title":"Using Environment Variables"},"1423":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1423","title":"Multiple Configurations"},"1424":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1424","title":"Error Handling"},"1425":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1425","title":"Understanding Exit Codes"},"1426":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1426","title":"Handling Failures"},"1427":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1427","title":"See Also"},"1428":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1428","title":"Node.js Examples"},"1429":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod v0.7.0 uses an async-first API. All NAPI operations return Promises by default; sync variants use a Sync suffix. // Initialize JACS (ES Modules, async)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1429","title":"Setup"},"143":{"body":"Platform Language Notes Linux (x86_64, aarch64) All Primary target macOS (Apple Silicon, Intel) All Full support Windows (x86_64) Rust, Node.js Python wheels may need manual build AWS Lambda Python, Node.js Use Lambda layers for native deps Docker / Kubernetes All Standard containerization Vercel (Node.js runtime) Node.js Via serverless functions","breadcrumbs":"Deployment Compatibility » Supported Platforms","id":"143","title":"Supported Platforms"},"1430":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1430","title":"Basic Document Operations"},"1431":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1431","title":"Creating and Signing Documents"},"1432":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1432","title":"Verifying Documents"},"1433":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1433","title":"Updating Documents"},"1434":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1434","title":"HTTP Server with Express"},"1435":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1435","title":"Complete Express Server"},"1436":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1436","title":"HTTP Client"},"1437":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1437","title":"MCP Integration"},"1438":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-server', domain: 'mcp.local', }); const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, client, \"server\" ); const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1438","title":"MCP Server"},"1439":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-client', domain: 'mcp.local', }); const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, client, \"client\" ); const mcpClient = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await mcpClient.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await mcpClient.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await mcpClient.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await mcpClient.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await mcpClient.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1439","title":"MCP Client"},"144":{"body":"Platform Why Workaround Cloudflare Workers No native module support (WASM-only) Use a proxy service Deno Deploy No native Node.js addons Use Deno with --allow-ffi locally Bun Native builds may fail Use Node.js runtime instead Browser / WASM Post-quantum crypto not available in WASM Planned for a future release","breadcrumbs":"Deployment Compatibility » Not Yet Supported","id":"144","title":"Not Yet Supported"},"1440":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1440","title":"Agreements"},"1441":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1441","title":"Creating Multi-Party Agreements"},"1442":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1442","title":"Signing Agreements"},"1443":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1443","title":"Checking Agreement Status"},"1444":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1444","title":"Document Store"},"1445":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1445","title":"Simple File-Based Store"},"1446":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1446","title":"Error Handling"},"1447":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1447","title":"Robust Error Handling Pattern"},"1448":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1448","title":"Testing"},"1449":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1449","title":"Jest Test Setup"},"145":{"body":"Language Minimum Version Rust 1.93+ (edition 2024) Python 3.10+ Node.js 18+ (LTS recommended)","breadcrumbs":"Deployment Compatibility » Version Requirements","id":"145","title":"Version Requirements"},"1450":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1450","title":"See Also"},"1451":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1451","title":"Python Examples"},"1452":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1452","title":"Setup"},"1453":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1453","title":"Basic Document Operations"},"1454":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1454","title":"Creating and Signing Documents"},"1455":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1455","title":"Verifying Documents"},"1456":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1456","title":"Updating Documents"},"1457":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1457","title":"HTTP Server with FastAPI"},"1458":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1458","title":"Complete FastAPI Server"},"1459":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1459","title":"HTTP Client"},"146":{"body":"FROM python:3.12-slim\nRUN pip install jacs\nCOPY . /app\nWORKDIR /app\nRUN python -c \"import jacs.simple as j; j.quickstart(name='docker-agent', domain='docker.local')\"\nCMD [\"python\", \"main.py\"]","breadcrumbs":"Deployment Compatibility » Docker Example","id":"146","title":"Docker Example"},"1460":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1460","title":"MCP Integration"},"1461":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1461","title":"FastMCP Server with JACS"},"1462":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1462","title":"MCP Client with JACS"},"1463":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1463","title":"Agreements"},"1464":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1464","title":"Creating Multi-Party Agreements"},"1465":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1465","title":"Signing Agreements"},"1466":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1466","title":"Checking Agreement Status"},"1467":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1467","title":"Document Store"},"1468":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1468","title":"Simple File-Based Store"},"1469":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1469","title":"Batch Processing"},"147":{"body":"For AWS Lambda, include the JACS native library in a Lambda layer or bundle it in your deployment package. Set JACS_PRIVATE_KEY_PASSWORD as a Lambda environment variable (use AWS Secrets Manager for production). Headless environments (Docker, Lambda, CI): Set JACS_KEYCHAIN_BACKEND=disabled to skip OS keychain lookups, which are not available in containers or serverless runtimes. Use JACS_PRIVATE_KEY_PASSWORD or JACS_PASSWORD_FILE instead.","breadcrumbs":"Deployment Compatibility » Lambda Deployment","id":"147","title":"Lambda Deployment"},"1470":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1470","title":"Batch Document Creator"},"1471":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1471","title":"Testing"},"1472":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1472","title":"Pytest Setup"},"1473":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1473","title":"Error Handling"},"1474":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1474","title":"Robust Error Handling Pattern"},"1475":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1475","title":"See Also"},"1476":{"body":"This page is now a curated index of examples that still line up with the current APIs. The old monolithic example chapter mixed outdated agent APIs with supported workflows.","breadcrumbs":"Integration Examples » Integration Examples","id":"1476","title":"Integration Examples"},"1477":{"body":"jacs-mcp/README.md Best starting point for the full Rust MCP server jacspy/examples/mcp/server.py Python FastMCP server wrapped with JACSMCPServer jacspy/examples/mcp/client.py Python FastMCP client wrapped with JACSMCPClient jacsnpm/examples/mcp.stdio.server.js Node stdio server with createJACSTransportProxy() jacsnpm/examples/mcp.stdio.client.js Node stdio client with signed transport","breadcrumbs":"Integration Examples » MCP","id":"1477","title":"MCP"},"1478":{"body":"jacspy/examples/langchain/signing_callback.py Best current Python example for signed LangGraph tool execution jacsnpm/examples/langchain/basic-agent.ts Node LangChain.js agent using JACS tools jacsnpm/examples/langchain/signing-callback.ts Node auto-signing pattern for LangGraph-style flows","breadcrumbs":"Integration Examples » LangChain / LangGraph","id":"1478","title":"LangChain / LangGraph"},"1479":{"body":"jacspy/tests/test_a2a_server.py Best current Python reference for generated .well-known routes jacsnpm/src/a2a-server.js Node Express A2A discovery middleware jacsnpm/examples/a2a-agent-example.js Node A2A card and artifact demo jacs/tests/a2a_cross_language_tests.rs Cross-language behavior reference for signing and verification","breadcrumbs":"Integration Examples » A2A","id":"1479","title":"A2A"},"148":{"body":"If no pre-built binary exists for your platform: # Python\npip install maturin\ncd jacspy && maturin develop --release # Node.js\ncd jacsnpm && npm run build Requires Rust 1.93+ toolchain installed via rustup .","breadcrumbs":"Deployment Compatibility » Building from Source","id":"148","title":"Building from Source"},"1480":{"body":"jacspy/examples/http/server.py FastAPI app with JacsMiddleware jacspy/examples/http/client.py Python client consuming signed responses jacsnpm/examples/expressmiddleware.js Express middleware example","breadcrumbs":"Integration Examples » HTTP / App Middleware","id":"1480","title":"HTTP / App Middleware"},"1481":{"body":"If an example and a higher-level prose page disagree, trust: the current binding README the current tests the example that imports the API you intend to use today","breadcrumbs":"Integration Examples » Rule Of Thumb","id":"1481","title":"Rule Of Thumb"},"1482":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands. For a workflow-oriented tutorial, see CLI Tutorial . For practical scripting examples, see CLI Examples .","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1482","title":"CLI Command Reference"},"1483":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1483","title":"Global Commands"},"1484":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1484","title":"jacs version"},"1485":{"body":"Create a persistent agent with keys on disk and optionally sign data -- no manual setup needed. If ./jacs.config.json already exists, loads it; otherwise creates a new agent. Agent, keys, and config are saved to ./jacs_data, ./jacs_keys, and ./jacs.config.json. Password is required: set JACS_PRIVATE_KEY_PASSWORD (recommended) or JACS_PASSWORD_FILE (CLI file bootstrap). Set exactly one explicit source; if both are set, CLI exits with an error. This is the fastest way to start using JACS. # Print agent info (ID, algorithm)\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json # Use a specific algorithm\njacs quickstart --name my-agent --domain my-agent.example.com --algorithm ring-Ed25519 Options: --name - Agent name used for first-time quickstart creation (required) --domain - Agent domain used for DNS/public-key verification workflows (required) --algorithm - Signing algorithm (default: pq2025). Also: ring-Ed25519, RSA-PSS --sign - Sign input (from stdin or --file) instead of printing info --file - Read JSON input from file instead of stdin (requires --sign)","breadcrumbs":"CLI Command Reference » jacs quickstart","id":"1485","title":"jacs quickstart"},"1486":{"body":"Verify a signed JACS document. No agent or config file required -- the CLI creates an ephemeral verifier if needed. # Verify a local file\njacs verify signed-document.json # JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document\njacs verify --remote https://example.com/signed-doc.json # Specify a directory of public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Options: - Path to the signed JACS JSON file (positional, required unless --remote is used) --remote - Fetch document from URL before verifying --json - Output result as JSON ({\"valid\": true, \"signerId\": \"...\", \"timestamp\": \"...\"}) --key-dir - Directory containing public keys for verification Exit codes: 0 for valid, 1 for invalid or error. Output (text): Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z Output (JSON): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} If ./jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise it creates a temporary ephemeral verifier internally. See the Verification Guide for Python, Node.js, and DNS verification workflows.","breadcrumbs":"CLI Command Reference » jacs verify","id":"1486","title":"jacs verify"},"1487":{"body":"Manage private key passwords in the OS keychain (macOS Keychain or Linux Secret Service via D-Bus). This allows JACS to retrieve your private key password without environment variables or password files. Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments. # Store a password interactively (prompts for input)\njacs keychain set # Store a password non-interactively (for scripting)\njacs keychain set --password \"YourStr0ng!Pass#Here\" # Retrieve the stored password (prints to stdout, for piping)\nexport JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get) # Remove the stored password\njacs keychain delete # Check keychain availability and whether a password is stored\njacs keychain status Subcommand Description jacs keychain set Store a password (prompts interactively) jacs keychain set --password Store a specific password (for scripting) jacs keychain get Print stored password to stdout jacs keychain delete Remove stored password from OS keychain jacs keychain status Check keychain availability and storage state Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable. Password resolution order: When JACS needs the private key password, it checks sources in this order: JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain (if keychain feature is enabled and not disabled)","breadcrumbs":"CLI Command Reference » jacs keychain","id":"1487","title":"jacs keychain"},"1488":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1488","title":"jacs init"},"1489":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1489","title":"jacs help"},"149":{"body":"Common issues and solutions when installing or using JACS.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"149","title":"Troubleshooting"},"1490":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1490","title":"Configuration Commands"},"1491":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1491","title":"jacs config"},"1492":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1492","title":"Agent Commands"},"1493":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1493","title":"jacs agent"},"1494":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1494","title":"Task Commands"},"1495":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1495","title":"jacs task"},"1496":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1496","title":"Document Commands"},"1497":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f - Path to input file. Must be JSON format -o - Output filename for the created document -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema - Path to JSON schema file to use for validation --attach - Path to file or directory for file attachments -e, --embed - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1497","title":"jacs document create"},"1498":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a - Path to the agent file -f - Path to original document file -n - Path to new/modified document file -o - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema - Path to JSON schema file for validation --attach - Path to file or directory for additional attachments -e, --embed - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1498","title":"jacs document update"},"1499":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a - Path to the agent file -f - Path to input file. Must be JSON format -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1499","title":"jacs document verify"},"15":{"body":"GitHub Repository Issue Tracker","breadcrumbs":"Introduction » Community","id":"15","title":"Community"},"150":{"body":"","breadcrumbs":"Troubleshooting » Installation Issues","id":"150","title":"Installation Issues"},"1500":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a - Path to the agent file -f - Path to input file containing embedded files -d - Path to directory of files to process -s, --schema - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1500","title":"jacs document extract"},"1501":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1501","title":"Agreement Commands"},"1502":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1502","title":"Common Patterns"},"1503":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1503","title":"Basic Document Lifecycle"},"1504":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1504","title":"Working with Attachments"},"1505":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1505","title":"Schema Validation Workflow"},"1506":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1506","title":"Global Options"},"1507":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1507","title":"Exit Codes"},"1508":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1508","title":"Environment Variables"},"1509":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1509","title":"File Formats"},"151":{"body":"Check your Python version (3.10+ required). If no pre-built wheel exists for your platform, install the Rust toolchain and build from source: pip install maturin\ncd jacspy && maturin develop --release","breadcrumbs":"Troubleshooting » pip install fails","id":"151","title":"pip install fails"},"1510":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1510","title":"Input Files"},"1511":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1511","title":"Output Files"},"1512":{"body":"This is the comprehensive configuration guide covering zero-config quickstart, storage backends, observability, and environment variables. For the raw schema field list, see Config File Schema .","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1512","title":"Configuration Reference"},"1513":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1513","title":"Overview"},"1514":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (local key cache by publicKeyHash), dns (DNS TXT fingerprint validation), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that yields verifiable key material is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1514","title":"Key resolution for verifiers"},"1515":{"body":"If you just want to sign and verify without manual config setup, use quickstart(name, domain, ...): import jacs.simple as jacs\ninfo = jacs.quickstart(name=\"config-agent\", domain=\"config.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path) const jacs = require('@hai.ai/jacs/simple');\nconst info = await jacs.quickstart({ name: 'config-agent', domain: 'config.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath); jacs quickstart --name config-agent --domain config.example.com quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Configuration Reference » Zero-Config Path","id":"1515","title":"Zero-Config Path"},"1516":{"body":"For persistent agents, a config file needs only two fields (plus $schema): { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"pq2025\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Configuration Reference » Minimal Configuration","id":"1516","title":"Minimal Configuration"},"1517":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"pq2025\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1517","title":"Complete Example Configuration"},"1518":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1518","title":"Observability Configuration"},"1519":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1519","title":"Logs Configuration"},"152":{"body":"Pre-built binaries are available for Linux/macOS/Windows x64 and ARM64 macOS. If no pre-built binary matches your platform, you need the Rust toolchain installed so the native addon can compile during npm install.","breadcrumbs":"Troubleshooting » npm install fails","id":"152","title":"npm install fails"},"1520":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1520","title":"Metrics Configuration"},"1521":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1521","title":"Tracing Configuration"},"1522":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1522","title":"Authentication & Headers"},"1523":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1523","title":"Common Patterns"},"1524":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1524","title":"Development Configuration"},"1525":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1525","title":"Production Configuration"},"1526":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1526","title":"File-based Configuration"},"1527":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1527","title":"Environment Variable Integration"},"1528":{"body":"Only one environment variable is truly required (unless using the OS keychain): JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations, unless the password is stored in the OS keychain)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1528","title":"Required Environment Variable"},"1529":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: pq2025) jacs_default_storage - Storage backend (default: fs) jacs_keychain_backend - OS keychain backend for password storage (default: \"auto\"). See below. jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1529","title":"Configuration-Based Settings"},"153":{"body":"The default wheels and binaries target glibc. On Alpine or other musl-based systems, build from source with the Rust toolchain, or use a Debian-based container image instead.","breadcrumbs":"Troubleshooting » Alpine Linux / musl libc","id":"153","title":"Alpine Linux / musl libc"},"1530":{"body":"The jacs_keychain_backend field controls whether JACS looks up the private key password from the OS credential store (macOS Keychain or Linux Secret Service): { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect the platform default (macOS Keychain or Linux Secret Service). This is the default when the field is omitted. \"macos-keychain\" Explicitly use the macOS Keychain \"linux-secret-service\" Explicitly use the Linux D-Bus Secret Service (GNOME Keyring, KDE Wallet, KeePassXC) \"disabled\" Never consult the OS keychain. Recommended for CI, headless servers, and containers. You can also override via environment variable: export JACS_KEYCHAIN_BACKEND=disabled # skip keychain in CI When not set to \"disabled\", password resolution checks: env var first, then OS keychain, then error. See the CLI keychain commands for storing and managing passwords. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » OS Keychain Configuration","id":"1530","title":"OS Keychain Configuration"},"1531":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1531","title":"Storage Configuration"},"1532":{"body":"Backend Value Description Use Case Filesystem \"fs\" Signed JSON documents on local disk Default, development, single-node deployments Local Indexed SQLite \"rusqlite\" Signed documents in SQLite with FTS search Local search, bindings, MCP AWS S3 \"aws\" Amazon S3 object storage Remote object storage Memory \"memory\" In-memory object storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications For local indexed document search in JACS core, use \"rusqlite\". Additional database backends such as PostgreSQL, DuckDB, Redb, and SurrealDB live in separate crates and are not core jacs_default_storage values.","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1532","title":"Available Storage Backends"},"1533":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments Local Indexed SQLite (\"rusqlite\") { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: Built with the default sqlite Cargo feature Database path: /jacs_documents.sqlite3 Best for: Local full-text search, MCP/binding document operations, single-machine deployments that want indexed reads AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1533","title":"Backend-Specific Configuration"},"1534":{"body":"Filesystem (fs) stores signed documents as JSON files under jacs_data/documents/. Rusqlite (rusqlite) stores signed documents in jacs_data/jacs_documents.sqlite3 and is the indexed DocumentService path used by bindings and MCP. Agent files and keys remain path-based assets under jacs_data/ and jacs_keys/. Observability data (logs, metrics) can use separate storage via observability configuration.","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1534","title":"Storage Behavior"},"1535":{"body":"Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes a signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Configuration Reference » DocumentService Guarantees","id":"1535","title":"DocumentService Guarantees"},"1536":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1536","title":"Configuration Examples"},"1537":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access Rusqlite : Protect the local database file with the same filesystem permissions you use for other signed artifacts Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1537","title":"Security Considerations"},"1538":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1538","title":"Migration Between Storage Backends"},"1539":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1539","title":"Error Codes"},"154":{"body":"","breadcrumbs":"Troubleshooting » Configuration Issues","id":"154","title":"Configuration Issues"},"1540":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1540","title":"CLI Exit Codes"},"1541":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1541","title":"Configuration Errors"},"1542":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1542","title":"Missing Configuration"},"1543":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1543","title":"Invalid Configuration"},"1544":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1544","title":"Key Directory Not Found"},"1545":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1545","title":"Cryptographic Errors"},"1546":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1546","title":"Private Key Not Found"},"1547":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1547","title":"Invalid Key Format"},"1548":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1548","title":"Key Password Required"},"1549":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1549","title":"Algorithm Mismatch"},"155":{"body":"Run jacs quickstart --name my-agent --domain my-agent.example.com to auto-create a config, or copy the example: cp jacs.config.example.json jacs.config.json","breadcrumbs":"Troubleshooting » Config not found","id":"155","title":"Config not found"},"1550":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1550","title":"Signature Errors"},"1551":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1551","title":"Verification Failed"},"1552":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1552","title":"Missing Signature"},"1553":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1553","title":"Invalid Signature Format"},"1554":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1554","title":"Unknown Signing Algorithm"},"1555":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1555","title":"DNS Verification Errors"},"1556":{"body":"Error: strict DNSSEC validation failed for (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1556","title":"DNSSEC Validation Failed"},"1557":{"body":"Error: DNS TXT lookup failed for (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1557","title":"DNS Record Not Found"},"1558":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1558","title":"DNS Required"},"1559":{"body":"Error: DNS lookup timed out for Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1559","title":"DNS Lookup Timeout"},"156":{"body":"Wrong or missing password. Check JACS_PRIVATE_KEY_PASSWORD. For CLI, you may also set JACS_PASSWORD_FILE to a file that contains only the password, or use jacs keychain set to store the password in the OS keychain. Set exactly one explicit source; if both env var and password file are set, CLI fails by design. The OS keychain is only consulted when neither env var nor password file is present.","breadcrumbs":"Troubleshooting » Private key decryption failed","id":"156","title":"Private key decryption failed"},"1560":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1560","title":"Document Errors"},"1561":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1561","title":"Invalid JSON"},"1562":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1562","title":"Schema Validation Failed"},"1563":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1563","title":"Document Not Found"},"1564":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1564","title":"Version Mismatch"},"1565":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1565","title":"Agreement Errors"},"1566":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1566","title":"Agreement Not Found"},"1567":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1567","title":"Already Signed"},"1568":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1568","title":"Not Authorized"},"1569":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1569","title":"Agreement Locked"},"157":{"body":"Set the signingAlgorithm field in your config, or pass it explicitly to quickstart(...) / create(...). Valid values: pq2025, ring-Ed25519, RSA-PSS.","breadcrumbs":"Troubleshooting » Algorithm detection failed","id":"157","title":"Algorithm detection failed"},"1570":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1570","title":"Storage Errors"},"1571":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1571","title":"Storage Backend Error"},"1572":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1572","title":"AWS S3 Error"},"1573":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1573","title":"Connection Error"},"1574":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1574","title":"HTTP/MCP Errors"},"1575":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1575","title":"Request Verification Failed"},"1576":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1576","title":"Response Verification Failed"},"1577":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1577","title":"Middleware Configuration Error"},"1578":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1578","title":"Debugging Tips"},"1579":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1579","title":"Enable Verbose Output"},"158":{"body":"","breadcrumbs":"Troubleshooting » Runtime Issues","id":"158","title":"Runtime Issues"},"1580":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1580","title":"Check Configuration"},"1581":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1581","title":"Verify Agent"},"1582":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1582","title":"Test Signing"},"1583":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1583","title":"See Also"},"1584":{"body":"This reference explains every field in the AttestationVerificationResult returned by verify_attestation() and verify_attestation_full().","breadcrumbs":"Attestation Verification Results » Attestation Verification Results","id":"1584","title":"Attestation Verification Results"},"1585":{"body":"{ \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true }, \"evidence\": [ { \"kind\": \"custom\", \"digest_valid\": true, \"freshness_valid\": true, \"errors\": [] } ], \"chain\": { \"depth\": 1, \"all_links_valid\": true, \"links\": [] }, \"errors\": []\n}","breadcrumbs":"Attestation Verification Results » Result Structure","id":"1585","title":"Result Structure"},"1586":{"body":"Field Type Description valid boolean Overall result. true only if all sub-checks pass. crypto object Cryptographic verification results. evidence array Per-evidence-ref verification results (full tier only). chain object|null Derivation chain verification (full tier only, if derivation exists). errors array Human-readable error messages for any failures.","breadcrumbs":"Attestation Verification Results » Top-Level Fields","id":"1586","title":"Top-Level Fields"},"1587":{"body":"Field Type Description signature_valid boolean The cryptographic signature matches the document content and the signer's public key. hash_valid boolean The jacsSha256 hash matches the canonicalized document content. Common failure scenarios: signature_valid: false -- The document was tampered with after signing, or the wrong public key was used. hash_valid: false -- The document body was modified after the hash was computed.","breadcrumbs":"Attestation Verification Results » crypto Object","id":"1587","title":"crypto Object"},"1588":{"body":"Each entry corresponds to one evidence reference in the attestation's evidence array. Field Type Description kind string Evidence type (a2a, email, jwt, tlsnotary, custom). digest_valid boolean The evidence digest matches the expected value. freshness_valid boolean The collectedAt timestamp is within acceptable bounds. errors array Error messages specific to this evidence item. Common failure scenarios: digest_valid: false -- The evidence content has changed since the attestation was created. freshness_valid: false -- The evidence is too old. Check collectedAt and your freshness policy.","breadcrumbs":"Attestation Verification Results » evidence Array (Full Tier Only)","id":"1588","title":"evidence Array (Full Tier Only)"},"1589":{"body":"Present only when the attestation has a derivation field. Field Type Description depth number Number of links in the derivation chain. all_links_valid boolean Every derivation link verified successfully. links array Per-link verification details. Each link in links: Field Type Description input_digests_valid boolean Input digests match the referenced documents. output_digests_valid boolean Output digests match the transformation result. transform object Transform metadata (name, hash, reproducible).","breadcrumbs":"Attestation Verification Results » chain Object (Full Tier Only)","id":"1589","title":"chain Object (Full Tier Only)"},"159":{"body":"Ensure the data and key directories exist and are writable. By default these are ./jacs_data and ./jacs_keys.","breadcrumbs":"Troubleshooting » Agent creation fails","id":"159","title":"Agent creation fails"},"1590":{"body":"","breadcrumbs":"Attestation Verification Results » Verification Tiers","id":"1590","title":"Verification Tiers"},"1591":{"body":"Checks: crypto.signature_valid + crypto.hash_valid Speed: < 1ms typical Network: None Use for: Real-time validation, hot path","breadcrumbs":"Attestation Verification Results » Local Tier (verify_attestation())","id":"1591","title":"Local Tier (verify_attestation())"},"1592":{"body":"Checks: Everything in local + evidence digests + freshness + derivation chain Speed: < 10ms typical (no network), varies with evidence count Network: Optional (for remote evidence resolution) Use for: Audit trails, compliance, trust decisions","breadcrumbs":"Attestation Verification Results » Full Tier (verify_attestation(full=True))","id":"1592","title":"Full Tier (verify_attestation(full=True))"},"1593":{"body":"","breadcrumbs":"Attestation Verification Results » Troubleshooting","id":"1593","title":"Troubleshooting"},"1594":{"body":"The valid field aggregates all sub-checks. If crypto passes but evidence or chain checks fail, valid will be false. Check the evidence and chain fields for details.","breadcrumbs":"Attestation Verification Results » \"valid is false but crypto shows all true\"","id":"1594","title":"\"valid is false but crypto shows all true\""},"1595":{"body":"If you created the attestation without evidence references, the evidence array will be empty. This is not an error -- it means there are no external proofs to verify.","breadcrumbs":"Attestation Verification Results » \"evidence is empty\"","id":"1595","title":"\"evidence is empty\""},"1596":{"body":"If the attestation has no derivation field, chain will be null. This is normal for standalone attestations that don't reference prior attestations.","breadcrumbs":"Attestation Verification Results » \"chain is null\"","id":"1596","title":"\"chain is null\""},"1597":{"body":"JACS uses JSON Canonicalization Scheme (JCS) for hashing. If you serialize and re-parse the document, ensure the serializer preserves field order and does not add/remove whitespace in a way that changes the canonical form.","breadcrumbs":"Attestation Verification Results » \"signature_valid is false after serialization\"","id":"1597","title":"\"signature_valid is false after serialization\""},"1598":{"body":"The jacs attest command creates and verifies attestation documents from the command line. Attestation extends basic signing with structured claims, evidence references, and derivation chains.","breadcrumbs":"Attestation CLI Reference » CLI Reference: jacs attest","id":"1598","title":"CLI Reference: jacs attest"},"1599":{"body":"Create a signed attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest create","id":"1599","title":"jacs attest create"},"16":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"16","title":"What is JACS?"},"160":{"body":"Ensure the signer's public key is accessible. If verifying a document from another agent, you may need to import their public key or use the trust store.","breadcrumbs":"Troubleshooting » Signature verification fails","id":"160","title":"Signature verification fails"},"1600":{"body":"jacs attest create --claims '' [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1600","title":"Synopsis"},"1601":{"body":"Flag Required Description --claims '' Yes JSON array of claims. Each claim must have name and value fields. --subject-type No Type of subject: agent, artifact, workflow, identity. Default: derived from context. --subject-id No Identifier of the subject being attested. --subject-digest No SHA-256 digest of the subject content. --evidence '' No JSON array of evidence references. --from-document No Lift an existing signed JACS document into an attestation. Overrides subject flags. -o, --output No Write attestation to file instead of stdout.","breadcrumbs":"Attestation CLI Reference » Options","id":"1601","title":"Options"},"1602":{"body":"Create a basic attestation: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123def456...\" \\ --claims '[{\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}]' Attestation with multiple claims: jacs attest create \\ --subject-type agent \\ --subject-id \"agent-abc\" \\ --subject-digest \"sha256hash...\" \\ --claims '[ {\"name\": \"reviewed\", \"value\": true, \"confidence\": 0.95}, {\"name\": \"source\", \"value\": \"internal_db\", \"assuranceLevel\": \"verified\"} ]' Lift an existing signed document to attestation: jacs attest create \\ --from-document mydata.signed.json \\ --claims '[{\"name\": \"approved\", \"value\": true}]' With evidence references: jacs attest create \\ --subject-type artifact \\ --subject-id \"report-456\" \\ --subject-digest \"def789...\" \\ --claims '[{\"name\": \"scanned\", \"value\": true}]' \\ --evidence '[{ \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"} }]' Write to file: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o attestation.json","breadcrumbs":"Attestation CLI Reference » Examples","id":"1602","title":"Examples"},"1603":{"body":"Verify an attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest verify","id":"1603","title":"jacs attest verify"},"1604":{"body":"jacs attest verify [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1604","title":"Synopsis"},"1605":{"body":"Argument Required Description Yes Path to the attestation JSON file to verify.","breadcrumbs":"Attestation CLI Reference » Arguments","id":"1605","title":"Arguments"},"1606":{"body":"Flag Required Description --full No Use full verification (evidence + derivation chain). Default: local verification (crypto + hash only). --json No Output the verification result as JSON. --key-dir No Directory containing public keys for verification. --max-depth No Maximum derivation chain depth. Default: 10.","breadcrumbs":"Attestation CLI Reference » Options","id":"1606","title":"Options"},"1607":{"body":"Basic verification (local tier): jacs attest verify attestation.json Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Full verification: jacs attest verify attestation.json --full Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Evidence: 1 item(s) verified [0] custom: digest OK, freshness OK Chain: not present JSON output (for scripting): jacs attest verify attestation.json --json Output: { \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true, \"signer_id\": \"agent-id-abc123\", \"algorithm\": \"ring-Ed25519\" }, \"evidence\": [], \"chain\": null, \"errors\": []\n} Verify with external keys: jacs attest verify attestation.json --key-dir ./trusted_keys/ Pipe through jq: jacs attest verify attestation.json --json | jq '.crypto'","breadcrumbs":"Attestation CLI Reference » Examples","id":"1607","title":"Examples"},"1608":{"body":"","breadcrumbs":"Attestation CLI Reference » Piping and Scripting Patterns","id":"1608","title":"Piping and Scripting Patterns"},"1609":{"body":"jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o att.json && \\\njacs attest verify att.json --json | jq '.valid'","breadcrumbs":"Attestation CLI Reference » Create and verify in one pipeline","id":"1609","title":"Create and verify in one pipeline"},"161":{"body":"Check the jacs_data_directory path in your config. Documents are stored as JSON files in that directory.","breadcrumbs":"Troubleshooting » Documents not found","id":"161","title":"Documents not found"},"1610":{"body":"#!/bin/bash\nset -e RESULT=$(jacs attest verify \"$1\" --json 2>/dev/null)\nVALID=$(echo \"$RESULT\" | jq -r '.valid') if [ \"$VALID\" = \"true\" ]; then echo \"Attestation is valid\" exit 0\nelse echo \"Attestation is INVALID\" echo \"$RESULT\" | jq '.errors' exit 1\nfi","breadcrumbs":"Attestation CLI Reference » Check validity in a script","id":"1610","title":"Check validity in a script"},"1611":{"body":"for file in attestations/*.json; do echo -n \"$file: \" jacs attest verify \"$file\" --json | jq -r '.valid'\ndone","breadcrumbs":"Attestation CLI Reference » Batch verify multiple attestations","id":"1611","title":"Batch verify multiple attestations"},"1612":{"body":"Code Meaning 0 Success (create: attestation created; verify: attestation valid) 1 Failure (create: error creating attestation; verify: attestation invalid or error)","breadcrumbs":"Attestation CLI Reference » Exit Codes","id":"1612","title":"Exit Codes"},"1613":{"body":"Variable Description JACS_PRIVATE_KEY_PASSWORD Password for the agent's private key JACS_MAX_DERIVATION_DEPTH Override maximum derivation chain depth (default: 10) JACS_DATA_DIRECTORY Directory for JACS data files JACS_KEY_DIRECTORY Directory containing keys JACS_AGENT_ID_AND_VERSION Agent identity for signing","breadcrumbs":"Attestation CLI Reference » Environment Variables","id":"1613","title":"Environment Variables"},"1614":{"body":"Sign vs. Attest Decision Guide Attestation Tutorial Attestation Verification Results CLI Command Reference","breadcrumbs":"Attestation CLI Reference » See Also","id":"1614","title":"See Also"},"1615":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1615","title":"Migration Guide"},"1616":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1616","title":"Version Compatibility"},"1617":{"body":"","breadcrumbs":"Migration Guide » Migrating Node.js from 0.6.x to 0.7.0","id":"1617","title":"Migrating Node.js from 0.6.x to 0.7.0"},"1618":{"body":"In v0.7.0, all NAPI operations return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). Before (v0.6.x): const agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify(content));\nconst isValid = agent.verifyDocument(doc); After (v0.7.0, async -- recommended): const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content));\nconst isValid = await agent.verifyDocument(doc); After (v0.7.0, sync -- for scripts/CLI): const agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));\nconst isValid = agent.verifyDocumentSync(doc);","breadcrumbs":"Migration Guide » Breaking Change: Async-First API","id":"1618","title":"Breaking Change: Async-First API"},"1619":{"body":"v0.6.x v0.7.0 Async (default) v0.7.0 Sync agent.load(path) await agent.load(path) agent.loadSync(path) agent.createDocument(...) await agent.createDocument(...) agent.createDocumentSync(...) agent.verifyDocument(doc) await agent.verifyDocument(doc) agent.verifyDocumentSync(doc) agent.verifyAgent() await agent.verifyAgent() agent.verifyAgentSync() agent.updateAgent(json) await agent.updateAgent(json) agent.updateAgentSync(json) agent.updateDocument(...) await agent.updateDocument(...) agent.updateDocumentSync(...) agent.signString(data) await agent.signString(data) agent.signStringSync(data) agent.createAgreement(...) await agent.createAgreement(...) agent.createAgreementSync(...) agent.signAgreement(...) await agent.signAgreement(...) agent.signAgreementSync(...) agent.checkAgreement(...) await agent.checkAgreement(...) agent.checkAgreementSync(...)","breadcrumbs":"Migration Guide » Method Renaming Summary","id":"1619","title":"Method Renaming Summary"},"162":{"body":"git clone https://github.com/HumanAssisted/JACS.git\ncd JACS # Rust core + CLI\ncargo build --release\ncargo install --path jacs --features cli # Python binding\ncd jacspy && maturin develop --release # Node.js binding\ncd jacsnpm && npm run build Requires Rust 1.93+ (install via rustup ).","breadcrumbs":"Troubleshooting » Building from Source","id":"162","title":"Building from Source"},"1620":{"body":"These methods remain synchronous without a Sync suffix because they use V8-thread-only APIs (Env, JsObject): agent.signRequest(params) -- unchanged agent.verifyResponse(doc) -- unchanged agent.verifyResponseWithAgentId(doc) -- unchanged","breadcrumbs":"Migration Guide » V8-Thread-Only Methods (No Change)","id":"1620","title":"V8-Thread-Only Methods (No Change)"},"1621":{"body":"The @hai.ai/jacs/simple module follows the same pattern: // v0.6.x\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessage({ action: 'approve' }); // v0.7.0 async (recommended)\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = await jacs.signMessage({ action: 'approve' }); // v0.7.0 sync\njacs.quickstartSync({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Migration Guide » Simplified API (Module-Level)","id":"1621","title":"Simplified API (Module-Level)"},"1622":{"body":"These functions do not call NAPI and remain unchanged (no suffix needed): hashString(), createConfig(), getPublicKey(), isLoaded(), exportAgent(), getAgentInfo() getDnsRecord(), getWellKnownJson(), verifyStandalone() Trust store: trustAgent(), listTrustedAgents(), untrustAgent(), isTrusted(), getTrustedAgent()","breadcrumbs":"Migration Guide » Pure Sync Functions (No Change)","id":"1622","title":"Pure Sync Functions (No Change)"},"1623":{"body":"Update dependency: npm install @hai.ai/jacs@0.7.0 Add await to all NAPI method calls, or append Sync to method names Update test assertions to handle Promises (use async/await in test functions) V8-thread-only methods (signRequest, verifyResponse, verifyResponseWithAgentId) need no changes","breadcrumbs":"Migration Guide » Migration Steps","id":"1623","title":"Migration Steps"},"1624":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1624","title":"Migrating from 0.5.1 to 0.5.2"},"1625":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1625","title":"Migration Notes"},"1626":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1626","title":"Deprecated Environment Variables"},"1627":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1627","title":"New Environment Variables"},"1628":{"body":"In v0.9.0, several method names were standardized. The old names remain as aliases for backward compatibility but are deprecated and will be removed in 1.0.0 (minimum 2 minor releases after deprecation).","breadcrumbs":"Migration Guide » Deprecated Method Aliases (0.9.0)","id":"1628","title":"Deprecated Method Aliases (0.9.0)"},"1629":{"body":"Set the JACS_SHOW_DEPRECATIONS=1 environment variable to emit runtime warnings when deprecated methods are called: export JACS_SHOW_DEPRECATIONS=1 This is recommended during development and CI to identify code that needs updating.","breadcrumbs":"Migration Guide » Runtime Deprecation Warnings","id":"1629","title":"Runtime Deprecation Warnings"},"163":{"body":"GitHub Issues -- report bugs and feature requests Quick Start Guide -- step-by-step setup","breadcrumbs":"Troubleshooting » Getting Help","id":"163","title":"Getting Help"},"1630":{"body":"SDK Deprecated Method Canonical Replacement Since Removal Python (binding) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Python (A2A) a2a.wrap_artifact_with_provenance() a2a.sign_artifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifact() agent.signArtifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifactSync() agent.signArtifactSync() 0.9.0 1.0.0 Node.js (A2A) a2a.wrapArtifactWithProvenance() a2a.signArtifact() 0.9.0 1.0.0 Rust (core) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Go SignA2AArtifact() (simple API) Uses sign_artifact internally -- -- All aliases behave identically to their canonical replacements. No behavioral changes are needed when migrating -- only rename the method call.","breadcrumbs":"Migration Guide » Deprecated Alias Table","id":"1630","title":"Deprecated Alias Table"},"1631":{"body":"Python: # Before (deprecated)\nwrapped = agent.wrap_a2a_artifact(artifact_json, \"task\") # After (canonical)\nsigned = agent.sign_artifact(artifact_json, \"task\") Node.js: // Before (deprecated)\nconst wrapped = await agent.wrapA2aArtifact(artifactJson, 'task'); // After (canonical)\nconst signed = await agent.signArtifact(artifactJson, 'task'); Python A2A integration: # Before (deprecated)\nwrapped = a2a.wrap_artifact_with_provenance(artifact, \"task\") # After (canonical)\nsigned = a2a.sign_artifact(artifact, \"task\") Node.js A2A integration: // Before (deprecated)\nconst wrapped = await a2a.wrapArtifactWithProvenance(artifact, 'task'); // After (canonical)\nconst signed = await a2a.signArtifact(artifact, 'task');","breadcrumbs":"Migration Guide » Migration Examples","id":"1631","title":"Migration Examples"},"1632":{"body":"Module-level functions (e.g., jacs.load(), jacs.sign_request() in Python; load(), signRequest() in Node.js) were deprecated in earlier releases. Use JacsAgent instance methods instead. See the Python and Node.js API references for the full list.","breadcrumbs":"Migration Guide » Module-Level Function Deprecation (Reminder)","id":"1632","title":"Module-Level Function Deprecation (Reminder)"},"1633":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1633","title":"Migrating from 0.2.x to 0.3.x"},"1634":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1634","title":"Configuration Changes"},"1635":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1635","title":"Migration Steps"},"1636":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1636","title":"Migrating Storage Backends"},"1637":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1637","title":"Filesystem to AWS S3"},"1638":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1638","title":"AWS S3 to Filesystem"},"1639":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1639","title":"Migrating Cryptographic Algorithms"},"164":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"164","title":"Installation"},"1640":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1640","title":"Ed25519 to Post-Quantum"},"1641":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1641","title":"Migrating Between Platforms"},"1642":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1642","title":"Node.js to Python"},"1643":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1643","title":"Sharing Agents Between Platforms"},"1644":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1644","title":"Migrating Key Formats"},"1645":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1645","title":"Unencrypted to Encrypted Keys"},"1646":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1646","title":"Database Migration"},"1647":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1647","title":"Adding Database Storage"},"1648":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1648","title":"MCP Integration Migration"},"1649":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1649","title":"Adding JACS to Existing MCP Server"},"165":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"165","title":"Requirements"},"1650":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1650","title":"HTTP API Migration"},"1651":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1651","title":"Adding JACS to Existing Express API"},"1652":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1652","title":"Troubleshooting Migration"},"1653":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1653","title":"Common Issues"},"1654":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1654","title":"Verification Checklist"},"1655":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1655","title":"Rollback Procedures"},"1656":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1656","title":"See Also"},"166":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"166","title":"Verify Rust Version"},"167":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"167","title":"Installing the CLI"},"168":{"body":"cargo install jacs-cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"168","title":"From crates.io (Recommended)"},"169":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Installation » From Homebrew (macOS)","id":"169","title":"From Homebrew (macOS)"},"17":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust with flexible key resolution (local trust stores, DNS, optional key services) Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"17","title":"The Problem JACS Solves"},"170":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS\ncargo install --path jacs-cli","breadcrumbs":"Installation » From Source","id":"170","title":"From Source"},"171":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"171","title":"Verify Installation"},"172":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Installation » MCP Server","id":"172","title":"MCP Server"},"173":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"173","title":"Using as a Library"},"174":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"174","title":"With Optional Features"},"175":{"body":"Feature Description cli (Deprecated -- use cargo install jacs-cli instead) otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Installation » Available Features","id":"175","title":"Available Features"},"176":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"176","title":"Platform Support"},"177":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq2025, legacy pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"177","title":"WebAssembly Notes"},"178":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ./jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"178","title":"Configuration"},"179":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"179","title":"Manual Configuration"},"18":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"18","title":"JACS Core Philosophy"},"180":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq2025, legacy pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"180","title":"Environment Variables"},"181":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"181","title":"Troubleshooting"},"182":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"182","title":"Build Errors"},"183":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"183","title":"Runtime Errors"},"184":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"184","title":"Next Steps"},"185":{"body":"This page walks through common CLI workflows. For a complete command reference, see the CLI Command Reference . For practical scripting examples, see CLI Examples . The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Tutorial » CLI Tutorial","id":"185","title":"CLI Tutorial"},"186":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Tutorial » Getting Help","id":"186","title":"Getting Help"},"187":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks jacs mcp Start the built-in MCP server (stdio transport)","breadcrumbs":"CLI Tutorial » Commands Overview","id":"187","title":"Commands Overview"},"188":{"body":"","breadcrumbs":"CLI Tutorial » Initialization","id":"188","title":"Initialization"},"189":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Tutorial » Quick Start","id":"189","title":"Quick Start"},"19":{"body":"JACS is built specifically for AI agent communication patterns, while still being usable as a general-purpose signed JSON provenance layer. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"19","title":"🎯 Agent-First Design"},"190":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"CLI Tutorial » MCP Server","id":"190","title":"MCP Server"},"191":{"body":"","breadcrumbs":"CLI Tutorial » Configuration Commands","id":"191","title":"Configuration Commands"},"192":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Tutorial » Create Configuration","id":"192","title":"Create Configuration"},"193":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Tutorial » Read Configuration","id":"193","title":"Read Configuration"},"194":{"body":"","breadcrumbs":"CLI Tutorial » Agent Commands","id":"194","title":"Agent Commands"},"195":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Tutorial » Create Agent","id":"195","title":"Create Agent"},"196":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Tutorial » Verify Agent","id":"196","title":"Verify Agent"},"197":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Tutorial » DNS Commands","id":"197","title":"DNS Commands"},"198":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Tutorial » Lookup Agent","id":"198","title":"Lookup Agent"},"199":{"body":"","breadcrumbs":"CLI Tutorial » Task Commands","id":"199","title":"Task Commands"},"2":{"body":"Signed JSON and file envelopes with tamper detection Persistent agent identity with encrypted private keys Trust bootstrap primitives such as share_public_key, share_agent, and trust_agent_with_key A2A artifact signing and trust policies (open, verified, strict) MCP integration paths for ready-made servers, transport security, or tool registration Framework adapters for Python and Node.js ecosystems Multi-party agreements with quorum, timeout, and algorithm constraints Cross-language compatibility across Rust, Python, Node.js, and Go","breadcrumbs":"Introduction » What JACS Gives You","id":"2","title":"What JACS Gives You"},"20":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"20","title":"🔐 Trust Through Cryptography"},"200":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Tutorial » Create Task","id":"200","title":"Create Task"},"201":{"body":"","breadcrumbs":"CLI Tutorial » Document Commands","id":"201","title":"Document Commands"},"202":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Create Document","id":"202","title":"Create Document"},"203":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Tutorial » Update Document","id":"203","title":"Update Document"},"204":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Verify Document","id":"204","title":"Verify Document"},"205":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Tutorial » Extract Embedded Content","id":"205","title":"Extract Embedded Content"},"206":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Tutorial » Agreement Commands","id":"206","title":"Agreement Commands"},"207":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Tutorial » Environment Variables","id":"207","title":"Environment Variables"},"208":{"body":"","breadcrumbs":"CLI Tutorial » Common Workflows","id":"208","title":"Common Workflows"},"209":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Tutorial » Create and Sign a Document","id":"209","title":"Create and Sign a Document"},"21":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"21","title":"📋 Standards-Based"},"210":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Tutorial » Multi-Agent Agreement","id":"210","title":"Multi-Agent Agreement"},"211":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Tutorial » Verify Another Agent","id":"211","title":"Verify Another Agent"},"212":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Tutorial » Exit Codes","id":"212","title":"Exit Codes"},"213":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Tutorial » Next Steps","id":"213","title":"Next Steps"},"214":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"214","title":"Creating an Agent"},"215":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"215","title":"What is an Agent?"},"216":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"216","title":"Creating Your First Agent"},"217":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"217","title":"Quick Method (Recommended)"},"218":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"218","title":"Manual Method"},"219":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"Engaging, accurate content delivered\", \"failureDescription\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"219","title":"With Custom Agent Definition"},"22":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"22","title":"Key Concepts"},"220":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"220","title":"Agent Types"},"221":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"name\": \"data-processing\", \"serviceDescription\": \"Process and transform data\", \"successDescription\": \"Data transformed successfully\", \"failureDescription\": \"Input data could not be processed\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"221","title":"AI Agent Example"},"222":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@example.com\", \"isPrimary\": true } ], \"jacsServices\": [ { \"name\": \"code-review\", \"serviceDescription\": \"Review code for quality and security\", \"successDescription\": \"Actionable review delivered\", \"failureDescription\": \"Could not complete review\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"222","title":"Human Agent Example"},"223":{"body":"Services define what an agent can do. Each service has: { \"name\": \"service-identifier\", \"serviceDescription\": \"What the service does\", \"successDescription\": \"Definition of successful completion\", \"failureDescription\": \"What constitutes failure\"\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"223","title":"Agent Services"},"224":{"body":"{ \"name\": \"document-processing\", \"serviceDescription\": \"Process and analyze documents\", \"successDescription\": \"Documents processed accurately\", \"failureDescription\": \"Unable to process one or more documents\", \"costDescription\": \"Usage-based pricing\", \"privacyPolicy\": \"https://example.com/privacy\", \"termsOfService\": \"https://example.com/terms\"\n}","breadcrumbs":"Creating an Agent » Detailed Service Example","id":"224","title":"Detailed Service Example"},"225":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"firstName\": \"Example\", \"lastName\": \"Agent\", \"email\": \"agent@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"225","title":"Agent Contacts"},"226":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"226","title":"Cryptographic Keys"},"227":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq2025 Post-quantum ML-DSA-87 signatures Future-proof security pq-dilithium Legacy post-quantum signatures Backward compatibility only (deprecated)","breadcrumbs":"Creating an Agent » Key Algorithms","id":"227","title":"Key Algorithms"},"228":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"228","title":"Configure Key Algorithm"},"229":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"229","title":"Key Storage"},"23":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"23","title":"Agents"},"230":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"230","title":"Verifying Agents"},"231":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"231","title":"Verify Your Own Agent"},"232":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"232","title":"Verify a Specific Agent File"},"233":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"233","title":"With DNS Verification"},"234":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"234","title":"Updating Agents"},"235":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"High-quality content generated\", \"failureDescription\": \"Unable to generate requested content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"235","title":"Agent Document Structure"},"236":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"236","title":"Best Practices"},"237":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"237","title":"Security"},"238":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"238","title":"Agent Design"},"239":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"239","title":"Operations"},"24":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"24","title":"Documents"},"240":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"240","title":"Next Steps"},"241":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"241","title":"Working with Documents"},"242":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"242","title":"What is a JACS Document?"},"243":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"243","title":"Creating Documents"},"244":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"244","title":"From a JSON File"},"245":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"245","title":"From a Directory"},"246":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"246","title":"With Custom Schema"},"247":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"247","title":"Output Options"},"248":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"248","title":"Document Structure"},"249":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"249","title":"Required Header Fields"},"25":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"25","title":"Tasks"},"250":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"250","title":"Document Levels"},"251":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"251","title":"File Attachments"},"252":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"252","title":"Attach Files"},"253":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"253","title":"Embed vs. Reference"},"254":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"254","title":"Attachment Structure"},"255":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"255","title":"Verifying Documents"},"256":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"256","title":"Basic Verification"},"257":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"257","title":"Verify with Schema"},"258":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"258","title":"Verify Directory"},"259":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"259","title":"Verbose Output"},"26":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"26","title":"Agreements"},"260":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"260","title":"Updating Documents"},"261":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"261","title":"Update with Attachments"},"262":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"262","title":"Extracting Embedded Content"},"263":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"263","title":"Document Types"},"264":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"264","title":"Task Documents"},"265":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"265","title":"Message Documents"},"266":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"266","title":"Custom Documents"},"267":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"267","title":"Version History"},"268":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"268","title":"Working with Multiple Agents"},"269":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"269","title":"Different Agent Signs Document"},"27":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"27","title":"How JACS Works"},"270":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"270","title":"Verify Document from Unknown Agent"},"271":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"271","title":"Best Practices"},"272":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"272","title":"Document Design"},"273":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"273","title":"Security"},"274":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"274","title":"Performance"},"275":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"275","title":"Common Workflows"},"276":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"276","title":"Create and Share Document"},"277":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"277","title":"Track Document Changes"},"278":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"278","title":"Process Multiple Documents"},"279":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"279","title":"Next Steps"},"28":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"28","title":"Real-World Examples"},"280":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"280","title":"Creating and Using Agreements"},"281":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"281","title":"What is an Agreement?"},"282":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"282","title":"Agreement Lifecycle"},"283":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"283","title":"Creating Agreements"},"284":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"284","title":"Basic Agreement"},"285":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"285","title":"With Context"},"286":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"286","title":"Signing Agreements"},"287":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"287","title":"Sign as Current Agent"},"288":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"288","title":"Sign as Different Agent"},"289":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"289","title":"Sign with Response"},"29":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"29","title":"🤖 AI Content Pipeline"},"290":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"290","title":"Checking Agreement Status"},"291":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"291","title":"Check if Complete"},"292":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"292","title":"Agreement Structure"},"293":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"293","title":"Task Agreements"},"294":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"294","title":"Multi-Agent Workflow Example"},"295":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"295","title":"Agreement Hash"},"296":{"body":"","breadcrumbs":"Creating and Using Agreements » Agreement Options (v0.6.2+)","id":"296","title":"Agreement Options (v0.6.2+)"},"297":{"body":"Set a deadline after which the agreement expires: # Python\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id], timeout=\"2025-12-31T23:59:59Z\"\n) If the deadline passes before all required signatures are collected, check_agreement() returns an error.","breadcrumbs":"Creating and Using Agreements » Timeout","id":"297","title":"Timeout"},"298":{"body":"Require only a subset of agents to sign: # Only 2 of 3 agents need to sign\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id, carol.agent_id], quorum=2\n) When quorum is met, check_agreement() succeeds even if some agents haven't signed.","breadcrumbs":"Creating and Using Agreements » Quorum (M-of-N Signing)","id":"298","title":"Quorum (M-of-N Signing)"},"299":{"body":"Enforce that only specific cryptographic algorithms can be used: # Only post-quantum algorithms allowed\nagreement = client.create_agreement( document=proposal, agent_ids=agent_ids, required_algorithms=[\"pq2025\", \"pq-dilithium\"], minimum_strength=\"post-quantum\"\n) An agent using RSA-PSS or Ed25519 will be rejected when trying to sign this agreement.","breadcrumbs":"Creating and Using Agreements » Algorithm Constraints","id":"299","title":"Algorithm Constraints"},"3":{"body":"If you are choosing where to start: Which Integration? Use Cases MCP Overview A2A Interoperability Python Framework Adapters Node.js LangChain.js","breadcrumbs":"Introduction » Best Entry Points","id":"3","title":"Best Entry Points"},"30":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"30","title":"📊 Data Processing Workflow"},"300":{"body":"agreement = client.create_agreement( document={\"proposal\": \"Deploy model v2\"}, agent_ids=[alice.agent_id, bob.agent_id, mediator.agent_id], question=\"Do you approve deployment?\", timeout=\"2025-06-30T00:00:00Z\", quorum=2, minimum_strength=\"post-quantum\"\n)","breadcrumbs":"Creating and Using Agreements » Combined Options","id":"300","title":"Combined Options"},"301":{"body":"For running multiple agents in one process, use JacsClient instead of the module-level API:","breadcrumbs":"Creating and Using Agreements » Using JacsClient (Instance-Based API)","id":"301","title":"Using JacsClient (Instance-Based API)"},"302":{"body":"from jacs.client import JacsClient alice = JacsClient.ephemeral(\"ring-Ed25519\") # for testing\nbob = JacsClient.ephemeral(\"ring-Ed25519\") signed = alice.sign_message({\"action\": \"approve\"})\n# alice.agent_id, bob.agent_id are unique See the full example: examples/multi_agent_agreement.py","breadcrumbs":"Creating and Using Agreements » Python","id":"302","title":"Python"},"303":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const alice = JacsClient.ephemeral('ring-Ed25519');\nconst bob = JacsClient.ephemeral('ring-Ed25519'); const signed = alice.signMessage({ action: 'approve' }); See the full example: examples/multi_agent_agreement.ts","breadcrumbs":"Creating and Using Agreements » Node.js","id":"303","title":"Node.js"},"304":{"body":"The JACS MCP server exposes agreement tools that LLMs can use directly: Tool Description jacs_create_agreement Create agreement with quorum, timeout, algorithm constraints jacs_sign_agreement Co-sign an agreement jacs_check_agreement Check status: who signed, quorum met, expired See MCP Integration for setup.","breadcrumbs":"Creating and Using Agreements » MCP Tools for Agreements","id":"304","title":"MCP Tools for Agreements"},"305":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree Use quorum for resilience : Don't require unanimous consent unless necessary Set timeouts : Prevent agreements from hanging indefinitely Enforce post-quantum for sensitive agreements : Use minimum_strength: \"post-quantum\" for long-term security","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"305","title":"Best Practices"},"306":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security Multi-Agent Agreement Example (Python) Multi-Agent Agreement Example (Node.js)","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"306","title":"Next Steps"},"307":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"307","title":"DNS-Based Agent Verification"},"308":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"308","title":"Overview"},"309":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider DNS verification is also a practical bridge for DID-style deployments: you can publish DID metadata for discovery while using DNS TXT + JACS signature verification as the operational trust anchor. No blockchain is required for this model.","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"309","title":"Why DNS Verification?"},"31":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"31","title":"🔍 Multi-Agent Analysis"},"310":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"310","title":"Publishing Agent Identity"},"311":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"311","title":"Generate DNS Commands"},"312":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"312","title":"Provider-Specific Formats"},"313":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"313","title":"DNS Record Structure"},"314":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"314","title":"Setting Up with Route 53 (AWS)"},"315":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"315","title":"Setting Up with Cloudflare"},"316":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"316","title":"Setting Up with Azure DNS"},"317":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"317","title":"Verifying Agents with DNS"},"318":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"318","title":"Look Up Another Agent"},"319":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"319","title":"Verify Agent with DNS"},"32":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ⚠️ Schema-native (lifecycle via integrations) ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent JACS provides signed artifacts, schemas, trust primitives, and auditability. Real-time transport and task orchestration are handled by integrations (e.g., A2A, MCP, HTTP server layers).","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"32","title":"Benefits Over Alternatives"},"320":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"320","title":"DNS Validation Modes"},"321":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"321","title":"Agent Domain Configuration"},"322":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"322","title":"DNSSEC Requirements"},"323":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"323","title":"Checking DNSSEC Status"},"324":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"324","title":"Security Considerations"},"325":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"325","title":"Trust Model"},"326":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"326","title":"Best Practices"},"327":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"327","title":"Caching"},"328":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"328","title":"Troubleshooting"},"329":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"329","title":"\"DNS record not found\""},"33":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"33","title":"When to Use JACS"},"330":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"330","title":"\"DNSSEC validation failed\""},"331":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"331","title":"\"Fingerprint mismatch\""},"332":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"332","title":"Integration with CI/CD"},"333":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"333","title":"Next Steps"},"334":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"334","title":"Rust Library API"},"335":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"335","title":"Adding JACS as a Dependency"},"336":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Rust Library API » Feature Flags","id":"336","title":"Feature Flags"},"337":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"337","title":"Core Types"},"338":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"338","title":"Agent"},"339":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"339","title":"JACSDocument"},"34":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"34","title":"Next Steps"},"340":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"340","title":"Creating an Agent"},"341":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"341","title":"Minimal Agent"},"342":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"342","title":"Loading by Configuration"},"343":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"343","title":"DNS Strict Mode"},"344":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"344","title":"Working with Documents"},"345":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"345","title":"Creating Documents"},"346":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"346","title":"Creating Documents with Attachments"},"347":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"347","title":"Loading Documents"},"348":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"348","title":"Updating Documents"},"349":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"349","title":"Verifying Documents"},"35":{"body":"Choose the smallest supported integration that matches your deployment.","breadcrumbs":"Which Integration? » Which JACS Path Should I Use?","id":"35","title":"Which JACS Path Should I Use?"},"350":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"350","title":"Saving Documents"},"351":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"351","title":"Creating Tasks"},"352":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"352","title":"Signing and Verification"},"353":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"353","title":"Signing Documents"},"354":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"354","title":"Verification"},"355":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"355","title":"Custom Schema Validation"},"356":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"356","title":"Configuration"},"357":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"357","title":"Loading Configuration"},"358":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"358","title":"Accessing Configuration"},"359":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"359","title":"Observability"},"36":{"body":"If you need... Start here Why Signed tool outputs inside LangChain / LangGraph on Python Python Framework Adapters Smallest path: sign tool results without adding MCP Signed tool outputs inside LangChain.js / LangGraph on Node Node.js LangChain.js Same idea for TypeScript A ready-made local MCP server for Claude, Codex, or another MCP client MCP Overview and jacs-mcp Fastest full server path To secure your existing MCP server/client code Python MCP or Node.js MCP Use wrappers or transport proxies around code you already have Cross-organization agent discovery and signed artifact exchange A2A Interoperability MCP is not enough for this boundary Signed HTTP APIs without adopting MCP Python Framework Adapters , Express , Koa Sign requests or responses at the web layer Multi-party approval or quorum workflows Multi-Agent Agreements Agreements are the right primitive, not just one-off signatures Direct signing from scripts, jobs, or services Quick Start , Python Basic Usage , Node Basic Usage , Go Installation Start from sign/verify before adding framework layers","breadcrumbs":"Which Integration? » Start Here","id":"36","title":"Start Here"},"360":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"360","title":"Initialize Default Observability"},"361":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"361","title":"Custom Observability Configuration"},"362":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // AWS object storage\nlet storage = MultiStorage::new(\"aws\".to_string())?; For signed document CRUD/search, prefer the unified DocumentService surface: use jacs::document::service_from_agent; let docs = service_from_agent(agent_handle)?;\n// `fs` and `rusqlite` currently resolve in JACS core.","breadcrumbs":"Rust Library API » Storage Backends","id":"362","title":"Storage Backends"},"363":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"363","title":"Error Handling"},"364":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"364","title":"Thread Safety"},"365":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"365","title":"Complete Example"},"366":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"366","title":"Next Steps"},"367":{"body":"This page covers the Rust-specific observability API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig, and related types. For a cross-language guide covering structured events, OTEL collector setup, and monitoring backend integration, see the Observability & Monitoring Guide . JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your Rust applications.","breadcrumbs":"Observability (Rust API) » Observability (Rust API)","id":"367","title":"Observability (Rust API)"},"368":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability (Rust API) » Overview","id":"368","title":"Overview"},"369":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support Convenience helpers for recording operations are always available (no feature flag needed).","breadcrumbs":"Observability (Rust API) » Feature Flags","id":"369","title":"Feature Flags"},"37":{"body":"Everything stays inside one service you control and your own logs are enough You only need integrity, not signer identity or third-party verification A plain checksum or database audit log already satisfies the requirement","breadcrumbs":"Which Integration? » When You Probably Do Not Need JACS","id":"37","title":"When You Probably Do Not Need JACS"},"370":{"body":"","breadcrumbs":"Observability (Rust API) » Quick Start","id":"370","title":"Quick Start"},"371":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability (Rust API) » Default Configuration","id":"371","title":"Default Configuration"},"372":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability (Rust API) » Custom Configuration","id":"372","title":"Custom Configuration"},"373":{"body":"","breadcrumbs":"Observability (Rust API) » Logging","id":"373","title":"Logging"},"374":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability (Rust API) » Log Levels","id":"374","title":"Log Levels"},"375":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability (Rust API) » Log Destinations","id":"375","title":"Log Destinations"},"376":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability (Rust API) » Using Logs","id":"376","title":"Using Logs"},"377":{"body":"","breadcrumbs":"Observability (Rust API) » Metrics","id":"377","title":"Metrics"},"378":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Enabling Metrics","id":"378","title":"Enabling Metrics"},"379":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability (Rust API) » Metrics Destinations","id":"379","title":"Metrics Destinations"},"38":{"body":"Prototype with quickstart and simple sign/verify calls. Attach provenance at the boundary that already exists in your system: LangChain tool, FastAPI response, MCP call, or A2A artifact. Add trust policy only when other agents or organizations enter the picture. Add agreements, DNS, or attestations only if your deployment actually needs them. The mistake to avoid is starting with the broadest story. Start with the boundary you need to secure now.","breadcrumbs":"Which Integration? » Recommended Adoption Order","id":"38","title":"Recommended Adoption Order"},"380":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability (Rust API) » Recording Metrics","id":"380","title":"Recording Metrics"},"381":{"body":"JACS convenience helpers automatically record: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability (Rust API) » Built-in Metrics","id":"381","title":"Built-in Metrics"},"382":{"body":"","breadcrumbs":"Observability (Rust API) » Distributed Tracing","id":"382","title":"Distributed Tracing"},"383":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability (Rust API) » Enabling Tracing","id":"383","title":"Enabling Tracing"},"384":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Tracing Destinations","id":"384","title":"Tracing Destinations"},"385":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability (Rust API) » Sampling Configuration","id":"385","title":"Sampling Configuration"},"386":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability (Rust API) » Using Tracing Spans","id":"386","title":"Using Tracing Spans"},"387":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability (Rust API) » Configuration File","id":"387","title":"Configuration File"},"388":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability (Rust API) » OpenTelemetry Collector Setup","id":"388","title":"OpenTelemetry Collector Setup"},"389":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability (Rust API) » Reset and Cleanup","id":"389","title":"Reset and Cleanup"},"39":{"body":"This chapter stays close to current product use, not roadmap integrations.","breadcrumbs":"Use cases » Use Cases","id":"39","title":"Use Cases"},"390":{"body":"","breadcrumbs":"Observability (Rust API) » Best Practices","id":"390","title":"Best Practices"},"391":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability (Rust API) » Development","id":"391","title":"Development"},"392":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability (Rust API) » Production","id":"392","title":"Production"},"393":{"body":"","breadcrumbs":"Observability (Rust API) » Troubleshooting","id":"393","title":"Troubleshooting"},"394":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability (Rust API) » Logs Not Appearing","id":"394","title":"Logs Not Appearing"},"395":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability (Rust API) » Metrics Not Exporting","id":"395","title":"Metrics Not Exporting"},"396":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability (Rust API) » Traces Missing","id":"396","title":"Traces Missing"},"397":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability (Rust API) » Next Steps","id":"397","title":"Next Steps"},"398":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"398","title":"Node.js Installation"},"399":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"399","title":"Requirements"},"4":{"body":"","breadcrumbs":"Introduction » Implementations","id":"4","title":"Implementations"},"40":{"body":"Use this when: Claude Desktop, Codex, or another MCP client is calling tools that should not run on blind trust. Recommended JACS path: Use jacs-mcp if you want a full server immediately Use Python MCP Integration or Node.js MCP Integration if you already have server code What JACS adds: Signed JSON-RPC messages Fail-closed verification by default Agent identity and auditability for tool calls","breadcrumbs":"Use cases » 1. Secure A Local MCP Tool Server","id":"40","title":"1. Secure A Local MCP Tool Server"},"400":{"body":"","breadcrumbs":"Installation » Installation","id":"400","title":"Installation"},"401":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"401","title":"Using npm"},"402":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"402","title":"Using yarn"},"403":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"403","title":"Using pnpm"},"404":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality (async API)\ntry { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"404","title":"Verify Installation"},"405":{"body":"The @hai.ai/jacs package exposes these entry points:","breadcrumbs":"Installation » Package Structure","id":"405","title":"Package Structure"},"406":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';\nimport * as jacs from '@hai.ai/jacs/simple'; // quickstart, load, signMessage, verify, etc.","breadcrumbs":"Installation » Core and simple API","id":"406","title":"Core and simple API"},"407":{"body":"import { JacsClient } from '@hai.ai/jacs/client';","breadcrumbs":"Installation » Instance-based client (recommended for new code)","id":"407","title":"Instance-based client (recommended for new code)"},"408":{"body":"import { createJACSTransportProxy, createJACSTransportProxyAsync, registerJacsTools } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP (@hai.ai/jacs/mcp)","id":"408","title":"MCP (@hai.ai/jacs/mcp)"},"409":{"body":"import { jacsMiddleware } from '@hai.ai/jacs/express';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa';\nimport { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http'; // legacy","breadcrumbs":"Installation » HTTP / framework adapters","id":"409","title":"HTTP / framework adapters"},"41":{"body":"Use this when: your model already runs inside LangChain or LangGraph and you want signed tool outputs without introducing MCP. Recommended JACS path: Python Framework Adapters Node.js LangChain.js What JACS adds: Signed tool results Optional strict mode at the adapter boundary Minimal changes to existing framework code","breadcrumbs":"Use cases » 2. Add Provenance To LangChain Or LangGraph","id":"41","title":"2. Add Provenance To LangChain Or LangGraph"},"410":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"410","title":"TypeScript Support"},"411":{"body":"","breadcrumbs":"Installation » Configuration","id":"411","title":"Configuration"},"412":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"412","title":"Basic Configuration"},"413":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"413","title":"Configuration File"},"414":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"414","title":"Environment Variables"},"415":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"415","title":"Storage Backends"},"416":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"416","title":"File System (Default)"},"417":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"417","title":"Local Indexed SQLite"},"418":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"418","title":"AWS Storage"},"419":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"419","title":"Memory Storage (Testing)"},"42":{"body":"Use this when: one agent produces work that another organization, service, or team must verify before acting on it. Recommended JACS path: A2A Interoperability A2A Quickstart What JACS adds: Agent Cards with JACS provenance metadata Signed A2A artifacts Trust policies for admission control","breadcrumbs":"Use cases » 3. Exchange Signed Artifacts Across Organizations","id":"42","title":"3. Exchange Signed Artifacts Across Organizations"},"420":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"420","title":"Cryptographic Algorithms"},"421":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"421","title":"ring-Ed25519 (Recommended)"},"422":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"422","title":"RSA-PSS"},"423":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"423","title":"pq-dilithium (Post-Quantum)"},"424":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"424","title":"pq2025 (Post-Quantum Hybrid)"},"425":{"body":"","breadcrumbs":"Installation » Development Setup","id":"425","title":"Development Setup"},"426":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"426","title":"Project Structure"},"427":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"427","title":"Package.json Setup"},"428":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; async function main() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\" }); const signedDoc = await agent.createDocument(documentJson); console.log('Document created:', signedDoc); const isValid = await agent.verifyDocument(signedDoc); console.log('Document valid:', isValid); console.log('JACS agent ready!');\n}\nmain().catch(console.error);","breadcrumbs":"Installation » Basic Application","id":"428","title":"Basic Application"},"429":{"body":"","breadcrumbs":"Installation » Common Issues","id":"429","title":"Common Issues"},"43":{"body":"Use this when: the boundary is an API route, not an MCP transport. Recommended JACS path: Python Framework Adapters for FastAPI Express Middleware Koa Middleware What JACS adds: Signed JSON responses Verified inbound requests A clean upgrade path to A2A discovery on the same app boundary","breadcrumbs":"Use cases » 4. Sign HTTP Or API Boundaries Without MCP","id":"43","title":"4. Sign HTTP Or API Boundaries Without MCP"},"430":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"430","title":"Module Not Found"},"431":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"431","title":"Permission Errors"},"432":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"432","title":"Binary Compatibility"},"433":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"433","title":"TypeScript Issues"},"434":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"434","title":"Next Steps"},"435":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"435","title":"Examples"},"436":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"436","title":"Simplified API"},"437":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended -- does not block the event loop)\nconst signed = await jacs.signMessage({ action: 'approve' }); // Sync (blocks event loop, use in scripts or CLI tools)\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Simplified API » v0.7.0: Async-First API","id":"437","title":"v0.7.0: Async-First API"},"438":{"body":"Quickstart -- one call (with required name/domain) to start signing: const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass { algorithm: 'ring-Ed25519' } to override the default (pq2025). To load an existing agent explicitly, use load() instead: const agent = await jacs.load('./jacs.config.json');\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });","breadcrumbs":"Simplified API » Quick Start","id":"438","title":"Quick Start"},"439":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"439","title":"When to Use the Simplified API"},"44":{"body":"Use this when: multiple agents must sign off on the same document, deployment, or decision. Recommended JACS path: Multi-Agent Agreements Rust Agreements What JACS adds: M-of-N quorum Timeout and algorithm constraints Verifiable signature chain across signers","breadcrumbs":"Use cases » 5. Run Multi-Agent Approval Workflows","id":"44","title":"5. Run Multi-Agent Approval Workflows"},"440":{"body":"Every function that calls into NAPI has both async (default) and sync variants: Function Sync Variant Description quickstart(options) quickstartSync(options) Create a persistent agent with keys on disk create(options) createSync(options) Create a new agent programmatically load(configPath) loadSync(configPath) Load agent from config file verifySelf() verifySelfSync() Verify agent's own integrity updateAgent(data) updateAgentSync(data) Update agent document updateDocument(id, data) updateDocumentSync(id, data) Update existing document signMessage(data) signMessageSync(data) Sign any JSON data signFile(path, embed) signFileSync(path, embed) Sign a file verify(doc) verifySync(doc) Verify signed document verifyById(id) verifyByIdSync(id) Verify by storage ID reencryptKey(old, new) reencryptKeySync(old, new) Re-encrypt private key createAgreement(doc, ids, ...) createAgreementSync(doc, ids, ...) Create multi-party agreement signAgreement(doc) signAgreementSync(doc) Sign an agreement checkAgreement(doc) checkAgreementSync(doc) Check agreement status audit(options?) auditSync(options?) Run a security audit Pure sync functions (no NAPI call, no suffix needed): Function Description verifyStandalone(doc, opts?) Verify without loading an agent getPublicKey() Get public key isLoaded() Check if agent is loaded getDnsRecord(domain, ttl?) Get DNS TXT record getWellKnownJson() Get well-known JSON trustAgent(json) Add agent to trust store listTrustedAgents() List trusted agent IDs untrustAgent(id) Remove from trust store isTrusted(id) Check if agent is trusted getTrustedAgent(id) Get trusted agent's JSON generateVerifyLink(doc, baseUrl?) Generate verification URL","breadcrumbs":"Simplified API » API Reference","id":"440","title":"API Reference"},"441":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Node quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before signMessage() or verify(). Parameters: options (object, required fields): { name: string, domain: string, description?: string, algorithm?: string, configPath?: string }. Default algorithm: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". Returns: Promise (async) or AgentInfo (sync) const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config path: ${info.configPath}`);\nconsole.log(`Public key: ${info.publicKeyPath}`);\nconsole.log(`Private key: ${info.privateKeyPath}`); // Or with a specific algorithm\nconst info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n}); // Sync variant (blocks event loop)\nconst info = jacs.quickstartSync({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n});","breadcrumbs":"Simplified API » quickstart(options)","id":"441","title":"quickstart(options)"},"442":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(options) when you want to load a specific config file explicitly. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: Promise (async) or AgentInfo (sync) const info = await jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`); // Sync variant\nconst info = jacs.loadSync('./jacs.config.json');","breadcrumbs":"Simplified API » load(configPath?)","id":"442","title":"load(configPath?)"},"443":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { await jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"443","title":"isLoaded()"},"444":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"444","title":"getAgentInfo()"},"445":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: Promise (async) or VerificationResult (sync) Throws: Error if no agent is loaded const result = await jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"445","title":"verifySelf()"},"446":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: Promise (async) or SignedDocument (sync) Throws: Error if no agent is loaded // Async (recommended)\nconst signed = await jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); // Sync\nconst signed = jacs.signMessageSync({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"446","title":"signMessage(data)"},"447":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: Promise (async) or SignedDocument (sync) // Reference only (stores hash)\nconst signed = await jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = await jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"447","title":"signFile(filePath, embed?)"},"448":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: Promise (async) or VerificationResult (sync) const result = await jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"448","title":"verify(signedDocument)"},"449":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (always sync -- no NAPI call) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"449","title":"verifyStandalone(signedDocument, options?)"},"45":{"body":"Use this when: you need an artifact to stay verifiable after it leaves the process that created it. Recommended JACS path: Verifying Signed Documents Working with Documents Python Basic Usage Node.js Basic Usage What JACS adds: Self-contained signed envelopes Re-verification at read time Cross-language interoperability","breadcrumbs":"Use cases » 6. Keep Signed Files Or JSON As Durable Artifacts","id":"45","title":"6. Keep Signed Files Or JSON As Durable Artifacts"},"450":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Promise (async) or object (sync) See Security Model -- Security Audit for full details and options. const result = await jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"450","title":"audit(options?)"},"451":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: Promise (async) or string (sync) -- The updated and re-signed agent document const agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'hybrid';\nconst updated = await jacs.updateAgent(agentDoc);","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"451","title":"updateAgent(newAgentData)"},"452":{"body":"Update an existing document with new data and re-sign it. Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: Promise (async) or SignedDocument (sync) const original = await jacs.signMessage({ status: 'pending', amount: 100 });\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved';\nconst updated = await jacs.updateDocument(original.documentId, doc);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"452","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"453":{"body":"Export the current agent document for sharing or inspection. Returns: string -- The agent JSON document (pure sync, no suffix needed) const agentDoc = jacs.exportAgent();\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"453","title":"exportAgent()"},"454":{"body":"Return the DNS TXT record line for the loaded agent. Pure sync, no suffix needed. Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"454","title":"getDnsRecord(domain, ttl?)"},"455":{"body":"Return the well-known JSON object for the loaded agent. Pure sync, no suffix needed. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"455","title":"getWellKnownJson()"},"456":{"body":"Get the loaded agent's public key in PEM format. Pure sync, no suffix needed. Returns: string -- PEM-encoded public key const pem = jacs.getPublicKey();\nconsole.log(pem);","breadcrumbs":"Simplified API » getPublicKey()","id":"456","title":"getPublicKey()"},"457":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"457","title":"Type Definitions"},"458":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"458","title":"AgentInfo"},"459":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"459","title":"SignedDocument"},"46":{"body":"Use this when: external systems need to verify your agent identity but you do not want a shared auth server in the middle. Recommended JACS path: DNS-Based Verification DNS Trust Anchoring What JACS adds: Public key fingerprint anchoring DNS-based verification flows Local private-key custody","breadcrumbs":"Use cases » 7. Publish Public Identity Without A Central Auth Service","id":"46","title":"7. Publish Public Identity Without A Central Auth Service"},"460":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"460","title":"VerificationResult"},"461":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"461","title":"Attachment"},"462":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = await jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = await jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = await jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = await jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = await jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nconst updatedAgent = await jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"462","title":"Complete Example"},"463":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\nawait jacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = await jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"463","title":"MCP Integration"},"464":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { await jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded await jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { await jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = await jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"464","title":"Error Handling"},"465":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"465","title":"See Also"},"466":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"466","title":"Basic Usage"},"467":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"Basic Usage » v0.7.0: Async-First API","id":"467","title":"v0.7.0: Async-First API"},"468":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"468","title":"Initializing an Agent"},"469":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Or use sync variant\nagent.loadSync('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"469","title":"Create and Load Agent"},"47":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"47","title":"Core Concepts"},"470":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"470","title":"Configuration File"},"471":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"471","title":"Creating Documents"},"472":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = await agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"472","title":"Basic Document Creation"},"473":{"body":"Validate against a custom JSON Schema: const signedDocument = await agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"473","title":"With Custom Schema"},"474":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"474","title":"With Output File"},"475":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"475","title":"Without Saving"},"476":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"476","title":"With Attachments"},"477":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"477","title":"Verifying Documents"},"478":{"body":"// Verify a document's signature and hash\nconst isValid = await agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"478","title":"Verify Document Signature"},"479":{"body":"// Verify with a custom signature field\nconst isValid = await agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"479","title":"Verify Specific Signature Field"},"48":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"48","title":"Agents"},"480":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"480","title":"Updating Documents"},"481":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"481","title":"Update Existing Document"},"482":{"body":"const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"482","title":"Update with New Attachments"},"483":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"483","title":"Signing and Verification"},"484":{"body":"// Sign any string data\nconst signature = await agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"484","title":"Sign Arbitrary Data"},"485":{"body":"// Verify a signature on string data\nconst isValid = await agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"485","title":"Verify Arbitrary Data"},"486":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"486","title":"Working with Agreements"},"487":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = await agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"487","title":"Create an Agreement"},"488":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = await agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"488","title":"Sign an Agreement"},"489":{"body":"// Check which agents have signed\nconst status = await agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"489","title":"Check Agreement Status"},"49":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"49","title":"Agent Identity"},"490":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"490","title":"Agent Operations"},"491":{"body":"// Verify the loaded agent's signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent valid:', isValid);","breadcrumbs":"Basic Usage » Verify Agent","id":"491","title":"Verify Agent"},"492":{"body":"// Update agent document\nconst updatedAgentJson = await agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"492","title":"Update Agent"},"493":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = await agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"493","title":"Sign External Agent"},"494":{"body":"These methods remain synchronous (V8-thread-only, no Sync suffix):","breadcrumbs":"Basic Usage » Request/Response Signing","id":"494","title":"Request/Response Signing"},"495":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"495","title":"Sign a Request"},"496":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"496","title":"Verify a Response"},"497":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"497","title":"Utility Functions"},"498":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"498","title":"Hash String"},"499":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"499","title":"Create Configuration"},"5":{"body":"Deepest feature surface CLI plus library APIs Best fit when you want a ready-made MCP server via jacs mcp","breadcrumbs":"Introduction » Rust","id":"5","title":"Rust"},"50":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"50","title":"Agent Lifecycle"},"500":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { await agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = await agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = await agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"500","title":"Error Handling"},"501":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = await agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (await agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = await agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = await agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = await agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"501","title":"Complete Example"},"502":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"502","title":"Next Steps"},"503":{"body":"Node has two MCP stories: Wrap an MCP transport with signing and verification Register JACS operations as MCP tools on an existing server If you want a full out-of-the-box server instead, prefer the Rust jacs-mcp binary.","breadcrumbs":"MCP Integration (Node.js) » MCP Integration (Node.js)","id":"503","title":"MCP Integration (Node.js)"},"504":{"body":"npm install @hai.ai/jacs @modelcontextprotocol/sdk","breadcrumbs":"MCP Integration (Node.js) » Install","id":"504","title":"Install"},"505":{"body":"Use this when you already have an MCP server or client and want signed JSON-RPC messages.","breadcrumbs":"MCP Integration (Node.js) » 1. Wrap A Transport","id":"505","title":"1. Wrap A Transport"},"506":{"body":"import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server');","breadcrumbs":"MCP Integration (Node.js) » With a loaded client","id":"506","title":"With a loaded client"},"507":{"body":"import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); createJACSTransportProxy() does not take a config path. Use the async factory when the agent is not already loaded.","breadcrumbs":"MCP Integration (Node.js) » With only a config path","id":"507","title":"With only a config path"},"508":{"body":"Use this when the model should explicitly call JACS operations such as signing, verification, agreement creation, or trust-store inspection. import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The registered tool set includes: document signing and verification agreement helpers audit and agent-info helpers trust-store helpers setup and registry helper stubs For lower-level integration, use getJacsMcpToolDefinitions() plus handleJacsMcpToolCall().","breadcrumbs":"MCP Integration (Node.js) » 2. Register JACS Tools On Your MCP Server","id":"508","title":"2. Register JACS Tools On Your MCP Server"},"509":{"body":"The transport proxy is not permissive by default. Signing or verification failures fail closed unless you explicitly pass allowUnsignedFallback: true createJACSTransportProxy() expects a real JacsClient or JacsAgent, not an unloaded shell","breadcrumbs":"MCP Integration (Node.js) » Failure Behavior","id":"509","title":"Failure Behavior"},"51":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"51","title":"Verification: load() vs verify_standalone()"},"510":{"body":"import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const server = new McpServer({ name: 'my-server', version: '1.0.0' });\nconst transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); await server.connect(secureTransport); For stdio servers, keep logs on stderr, not stdout.","breadcrumbs":"MCP Integration (Node.js) » Common Pattern","id":"510","title":"Common Pattern"},"511":{"body":"jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js jacsnpm/examples/mcp.sse.server.js jacsnpm/examples/mcp.sse.client.js","breadcrumbs":"MCP Integration (Node.js) » Example Paths In This Repo","id":"511","title":"Example Paths In This Repo"},"512":{"body":"Choose LangChain.js Integration instead when: the model and tools already live in the same Node.js process you only need signed tool outputs, not an MCP boundary you do not need other MCP clients to connect","breadcrumbs":"MCP Integration (Node.js) » When To Use LangChain Instead","id":"512","title":"When To Use LangChain Instead"},"513":{"body":"Use the LangChain.js adapter when the model already runs inside your Node.js app and you want provenance at the tool boundary.","breadcrumbs":"LangChain.js » LangChain.js Integration","id":"513","title":"LangChain.js Integration"},"514":{"body":"","breadcrumbs":"LangChain.js » Choose The Pattern","id":"514","title":"Choose The Pattern"},"515":{"body":"Use createJacsTools() when the model should explicitly ask to sign, verify, inspect trust, or create agreements. import { JacsClient } from '@hai.ai/jacs/client';\nimport { createJacsTools } from '@hai.ai/jacs/langchain'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const jacsTools = createJacsTools({ client });\nconst llmWithTools = model.bindTools([...myTools, ...jacsTools]); The tool set includes 14 tools: jacs_sign jacs_verify jacs_create_agreement jacs_sign_agreement jacs_check_agreement jacs_verify_self jacs_trust_agent jacs_trust_agent_with_key jacs_list_trusted jacs_is_trusted jacs_share_public_key jacs_share_agent jacs_audit jacs_agent_info","breadcrumbs":"LangChain.js » Give The Agent JACS Tools","id":"515","title":"Give The Agent JACS Tools"},"516":{"body":"Use this when the model should keep using your existing tool set but every result needs a signature. Wrap one tool: import { signedTool } from '@hai.ai/jacs/langchain'; const signed = signedTool(mySearchTool, { client }); Wrap a LangGraph ToolNode: import { jacsToolNode } from '@hai.ai/jacs/langchain'; const node = jacsToolNode([tool1, tool2], { client }); For custom graph logic: import { jacsWrapToolCall } from '@hai.ai/jacs/langchain'; const wrapToolCall = jacsWrapToolCall({ client });","breadcrumbs":"LangChain.js » Auto-Sign Existing Tools","id":"516","title":"Auto-Sign Existing Tools"},"517":{"body":"npm install @hai.ai/jacs @langchain/core\nnpm install @langchain/langgraph @langchain/langgraph is only required for jacsToolNode().","breadcrumbs":"LangChain.js » Install","id":"517","title":"Install"},"518":{"body":"Pass strict: true when you want wrapper failures to throw instead of returning error-shaped output: const jacsTools = createJacsTools({ client, strict: true });","breadcrumbs":"LangChain.js » Strict Mode","id":"518","title":"Strict Mode"},"519":{"body":"jacsnpm/examples/langchain/basic-agent.ts jacsnpm/examples/langchain/signing-callback.ts","breadcrumbs":"LangChain.js » Examples In This Repo","id":"519","title":"Examples In This Repo"},"52":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"52","title":"Documents"},"520":{"body":"Choose Node.js MCP Integration instead when: the model is outside your process and connects over MCP you want a shared MCP server usable by multiple clients you need transport-level signing in addition to signed tool outputs","breadcrumbs":"LangChain.js » When To Use MCP Instead","id":"520","title":"When To Use MCP Instead"},"521":{"body":"Sign it. Prove it. -- for every AI model output. The JACS Vercel AI SDK adapter adds cryptographic provenance to AI-generated text and tool results using the LanguageModelV3Middleware pattern. Works with generateText, streamText, and any model provider (OpenAI, Anthropic, etc.).","breadcrumbs":"Vercel AI SDK » Vercel AI SDK","id":"521","title":"Vercel AI SDK"},"522":{"body":"","breadcrumbs":"Vercel AI SDK » 5-Minute Quickstart","id":"522","title":"5-Minute Quickstart"},"523":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai","breadcrumbs":"Vercel AI SDK » 1. Install","id":"523","title":"1. Install"},"524":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Vercel AI SDK » 2. Create a JACS client","id":"524","title":"2. Create a JACS client"},"525":{"body":"import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const model = withProvenance(openai('gpt-4'), { client });\nconst { text, providerMetadata } = await generateText({ model, prompt: 'Hello!' }); console.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID","breadcrumbs":"Vercel AI SDK » 3. Sign every model output","id":"525","title":"3. Sign every model output"},"526":{"body":"import { JacsClient } from '@hai.ai/jacs/client';\nimport { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst model = withProvenance(openai('gpt-4'), { client }); const { text, providerMetadata } = await generateText({ model, prompt: 'Summarize the quarterly report.',\n}); console.log(text);\nconsole.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID\nconsole.log(providerMetadata?.jacs?.text?.signed); // true Every model output is signed by your JACS agent. The provenance record is attached to providerMetadata.jacs.","breadcrumbs":"Vercel AI SDK » Quick Start","id":"526","title":"Quick Start"},"527":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai # or any provider The ai package is a peer dependency.","breadcrumbs":"Vercel AI SDK » Installation","id":"527","title":"Installation"},"528":{"body":"","breadcrumbs":"Vercel AI SDK » Two Ways to Use","id":"528","title":"Two Ways to Use"},"529":{"body":"Wraps a model with the JACS middleware in one call: import { withProvenance } from '@hai.ai/jacs/vercel-ai'; const model = withProvenance(openai('gpt-4'), { client });","breadcrumbs":"Vercel AI SDK » withProvenance (convenience)","id":"529","title":"withProvenance (convenience)"},"53":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"53","title":"Document Structure"},"530":{"body":"Returns a LanguageModelV3Middleware you can compose with other middleware: import { jacsProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { wrapLanguageModel } from 'ai'; const provenance = jacsProvenance({ client }); const model = wrapLanguageModel({ model: openai('gpt-4'), middleware: provenance,\n});","breadcrumbs":"Vercel AI SDK » jacsProvenance (composable)","id":"530","title":"jacsProvenance (composable)"},"531":{"body":"interface ProvenanceOptions { client: JacsClient; // Required: initialized JacsClient signText?: boolean; // Sign generated text (default: true) signToolResults?: boolean; // Sign tool call results (default: true) strict?: boolean; // Throw on signing failure (default: false) metadata?: Record; // Extra metadata in provenance records\n}","breadcrumbs":"Vercel AI SDK » Options","id":"531","title":"Options"},"532":{"body":"Streaming works automatically. Text chunks are accumulated and signed when the stream completes: import { streamText } from 'ai'; const result = streamText({ model: withProvenance(openai('gpt-4'), { client }), prompt: 'Write a haiku.',\n}); for await (const chunk of result.textStream) { process.stdout.write(chunk);\n} // Provenance is available after stream completes\nconst metadata = await result.providerMetadata;\nconsole.log(metadata?.jacs?.text?.signed); // true","breadcrumbs":"Vercel AI SDK » Streaming","id":"532","title":"Streaming"},"533":{"body":"When signToolResults is true (default), tool results in the prompt are signed: import { generateText, tool } from 'ai';\nimport { z } from 'zod'; const { text, providerMetadata } = await generateText({ model: withProvenance(openai('gpt-4'), { client }), tools: { getWeather: tool({ parameters: z.object({ city: z.string() }), execute: async ({ city }) => `Weather in ${city}: sunny, 72F`, }), }, prompt: 'What is the weather in Paris?',\n}); // Both text output and tool results are signed\nconsole.log(providerMetadata?.jacs?.text?.signed);\nconsole.log(providerMetadata?.jacs?.toolResults?.signed);","breadcrumbs":"Vercel AI SDK » Tool Call Signing","id":"533","title":"Tool Call Signing"},"534":{"body":"Each signed output produces a ProvenanceRecord: interface ProvenanceRecord { signed: boolean; // Whether signing succeeded documentId: string; // JACS document ID agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp error?: string; // Error message if signing failed metadata?: Record;\n} Access records from providerMetadata.jacs: const { providerMetadata } = await generateText({ model, prompt: '...' }); const textProvenance = providerMetadata?.jacs?.text;\nconst toolProvenance = providerMetadata?.jacs?.toolResults;","breadcrumbs":"Vercel AI SDK » Provenance Record","id":"534","title":"Provenance Record"},"535":{"body":"By default, signing failures are logged but do not throw. Enable strict to throw on failure: const model = withProvenance(openai('gpt-4'), { client, strict: true, // Throws if signing fails\n});","breadcrumbs":"Vercel AI SDK » Strict Mode","id":"535","title":"Strict Mode"},"536":{"body":"Express Middleware - Sign HTTP API responses MCP Integration - Secure MCP transport API Reference - Complete API documentation","breadcrumbs":"Vercel AI SDK » Next Steps","id":"536","title":"Next Steps"},"537":{"body":"Sign it. Prove it. -- in your Express app. JACS provides jacsMiddleware for Express v4/v5 that verifies incoming signed request bodies and optionally auto-signs JSON responses. No body-parser gymnastics, no monkey-patching.","breadcrumbs":"Express Middleware » Express Middleware","id":"537","title":"Express Middleware"},"538":{"body":"","breadcrumbs":"Express Middleware » 5-Minute Quickstart","id":"538","title":"5-Minute Quickstart"},"539":{"body":"npm install @hai.ai/jacs express","breadcrumbs":"Express Middleware » 1. Install","id":"539","title":"1. Install"},"54":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"54","title":"Required JACS Fields"},"540":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Express Middleware » 2. Create a JACS client","id":"540","title":"2. Create a JACS client"},"541":{"body":"import express from 'express';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const app = express();\napp.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » 3. Add signing middleware","id":"541","title":"3. Add signing middleware"},"542":{"body":"import express from 'express';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express(); app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"542","title":"Quick Start"},"543":{"body":"jacsMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign res.json() responses (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n}) If neither client nor configPath is provided, the middleware initializes a client with JacsClient.quickstart({ name: 'jacs-express', domain: 'localhost' }) on first request.","breadcrumbs":"Express Middleware » Options","id":"543","title":"Options"},"544":{"body":"Every request gets req.jacsClient -- a JacsClient instance you can use for manual signing/verification in route handlers. POST/PUT/PATCH with verify: true (default): The string body is verified as a JACS document. On success, req.jacsPayload contains the extracted payload. On failure, a 401 is returned (unless optional: true). With sign: true : res.json() is intercepted to auto-sign the response body before sending.","breadcrumbs":"Express Middleware » What the Middleware Does","id":"544","title":"What the Middleware Does"},"545":{"body":"app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client })); app.post('/api/process', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Missing payload' }); } const { action, data } = req.jacsPayload; res.json({ processed: true, action });\n}); With optional: true, unsigned requests pass through with req.jacsPayload unset: app.use(jacsMiddleware({ client, optional: true })); app.post('/api/mixed', (req, res) => { if (req.jacsPayload) { // Verified JACS request res.json({ verified: true, data: req.jacsPayload }); } else { // Unsigned request -- handle accordingly res.json({ verified: false }); }\n});","breadcrumbs":"Express Middleware » Verify Incoming Requests","id":"545","title":"Verify Incoming Requests"},"546":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Express Middleware » Auth Replay Protection (Auth Endpoints)","id":"546","title":"Auth Replay Protection (Auth Endpoints)"},"547":{"body":"Enable sign: true to intercept res.json() calls: app.use(jacsMiddleware({ client, sign: true })); app.post('/api/data', (req, res) => { // This response will be JACS-signed automatically res.json({ result: 42, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Auto-Sign Responses","id":"547","title":"Auto-Sign Responses"},"548":{"body":"Use req.jacsClient for fine-grained control: app.use(jacsMiddleware({ client })); app.post('/api/custom', async (req, res) => { const result = processData(req.jacsPayload); // Sign manually const signed = await req.jacsClient.signMessage(result); res.type('application/json').send(signed.raw);\n});","breadcrumbs":"Express Middleware » Manual Signing in Routes","id":"548","title":"Manual Signing in Routes"},"549":{"body":"Apply JACS to specific routes only: const app = express();\nconst jacs = jacsMiddleware({ client }); // Public routes -- no JACS\napp.get('/health', (req, res) => res.json({ status: 'ok' })); // Protected routes\napp.use('/api', express.text({ type: 'application/json' }), jacs); app.post('/api/secure', (req, res) => { res.json({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Per-Route Middleware","id":"549","title":"Per-Route Middleware"},"55":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"55","title":"Document Types"},"550":{"body":"Use different JacsClient instances per route group: const adminClient = await JacsClient.quickstart({ name: 'admin-agent', domain: 'admin.example.com', algorithm: 'pq2025',\n});\nconst userClient = await JacsClient.quickstart({ name: 'user-agent', domain: 'user.example.com', algorithm: 'ring-Ed25519',\n}); app.use('/admin', express.text({ type: 'application/json' }));\napp.use('/admin', jacsMiddleware({ client: adminClient })); app.use('/user', express.text({ type: 'application/json' }));\napp.use('/user', jacsMiddleware({ client: userClient }));","breadcrumbs":"Express Middleware » Multiple Agents","id":"550","title":"Multiple Agents"},"551":{"body":"The legacy JACSExpressMiddleware from @hai.ai/jacs/http still works but is deprecated. To migrate: Old New import { JACSExpressMiddleware } from '@hai.ai/jacs/http' import { jacsMiddleware } from '@hai.ai/jacs/express' JACSExpressMiddleware({ configPath: '...' }) jacsMiddleware({ configPath: '...' }) Per-request agent init Shared client, lazy-loaded once res.send() monkey-patch res.json() interception (opt-in) The new middleware is simpler, faster (no per-request init), and gives you req.jacsClient for manual operations.","breadcrumbs":"Express Middleware » Migration from JACSExpressMiddleware","id":"551","title":"Migration from JACSExpressMiddleware"},"552":{"body":"Koa Middleware - Same pattern for Koa HTTP Server - Core HTTP integration concepts Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"552","title":"Next Steps"},"553":{"body":"Sign it. Prove it. -- in your Koa app. JACS provides jacsKoaMiddleware for Koa with the same design as the Express middleware -- verify incoming signed bodies, optionally auto-sign responses.","breadcrumbs":"Koa Middleware » Koa Middleware","id":"553","title":"Koa Middleware"},"554":{"body":"import Koa from 'koa';\nimport bodyParser from 'koa-bodyparser';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = new Koa(); app.use(bodyParser({ enableTypes: ['text'] }));\napp.use(jacsKoaMiddleware({ client, verify: true })); app.use(async (ctx) => { console.log(ctx.state.jacsPayload); // verified payload ctx.body = { status: 'ok' };\n}); app.listen(3000);","breadcrumbs":"Koa Middleware » Quick Start","id":"554","title":"Quick Start"},"555":{"body":"jacsKoaMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign ctx.body after next() (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n})","breadcrumbs":"Koa Middleware » Options","id":"555","title":"Options"},"556":{"body":"Every request gets ctx.state.jacsClient for manual use. POST/PUT/PATCH with verify: true : The string body is verified. On success, ctx.state.jacsPayload is set. On failure, 401 is returned (unless optional: true). With sign: true : After downstream middleware runs, if ctx.body is a non-Buffer object, it is signed before the response is sent.","breadcrumbs":"Koa Middleware » How It Works","id":"556","title":"How It Works"},"557":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsKoaMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Koa Middleware » Auth Replay Protection (Auth Endpoints)","id":"557","title":"Auth Replay Protection (Auth Endpoints)"},"558":{"body":"app.use(jacsKoaMiddleware({ client, sign: true })); app.use(async (ctx) => { // This will be JACS-signed automatically after next() ctx.body = { result: 42, timestamp: new Date().toISOString() };\n});","breadcrumbs":"Koa Middleware » Auto-Sign Responses","id":"558","title":"Auto-Sign Responses"},"559":{"body":"app.use(jacsKoaMiddleware({ client })); app.use(async (ctx) => { const result = processData(ctx.state.jacsPayload); const signed = await ctx.state.jacsClient.signMessage(result); ctx.type = 'application/json'; ctx.body = signed.raw;\n});","breadcrumbs":"Koa Middleware » Manual Signing","id":"559","title":"Manual Signing"},"56":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"56","title":"Tasks"},"560":{"body":"Feature Express Koa Import jacsMiddleware from @hai.ai/jacs/express jacsKoaMiddleware from @hai.ai/jacs/koa Client access req.jacsClient ctx.state.jacsClient Payload req.jacsPayload ctx.state.jacsPayload Auto-sign target res.json() interception ctx.body after next()","breadcrumbs":"Koa Middleware » Comparison with Express","id":"560","title":"Comparison with Express"},"561":{"body":"Express Middleware - Express version Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Koa Middleware » Next Steps","id":"561","title":"Next Steps"},"562":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"562","title":"HTTP Server"},"563":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"563","title":"Overview"},"564":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"564","title":"Core Concepts"},"565":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"565","title":"Request/Response Flow"},"566":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"566","title":"HTTP Client"},"567":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"567","title":"Basic Client Usage"},"568":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"568","title":"Using Fetch"},"569":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"569","title":"Express Server"},"57":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"57","title":"Task Structure"},"570":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"570","title":"Using Express Middleware"},"571":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"571","title":"Middleware Configuration"},"572":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"572","title":"Manual Request/Response Handling"},"573":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"573","title":"Koa Server"},"574":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"574","title":"Using Koa Middleware"},"575":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"575","title":"API Reference"},"576":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"576","title":"jacs.signRequest(payload)"},"577":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"577","title":"jacs.verifyResponse(responseString)"},"578":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"578","title":"jacs.signResponse(payload)"},"579":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"579","title":"JACSExpressMiddleware(options)"},"58":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"58","title":"Task Lifecycle"},"580":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"580","title":"JACSKoaMiddleware(options)"},"581":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"581","title":"Complete Example"},"582":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"582","title":"Server (server.js)"},"583":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"583","title":"Client (client.js)"},"584":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"584","title":"Security Considerations"},"585":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"585","title":"Content-Type"},"586":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"586","title":"Error Handling"},"587":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"587","title":"Agent Keys"},"588":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"588","title":"Middleware Order"},"589":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"59","title":"Task Components"},"590":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"590","title":"API Reference"},"591":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"591","title":"Installation"},"592":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"API Reference » v0.7.0: Async-First API","id":"592","title":"v0.7.0: Async-First API"},"593":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"593","title":"Core Module"},"594":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"594","title":"JacsAgent Class"},"595":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() or loadSync() to initialize with a configuration. Example: const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"595","title":"Constructor"},"596":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: Promise (async) or string (sync) -- The loaded agent's JSON Example: const agent = new JacsAgent(); // Async (recommended)\nconst agentJson = await agent.load('./jacs.config.json'); // Sync\nconst agentJson = agent.loadSync('./jacs.config.json'); console.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath) / agent.loadSync(configPath)","id":"596","title":"agent.load(configPath) / agent.loadSync(configPath)"},"597":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: Promise (async) or string (sync) -- The signed document as a JSON string Example: // Basic document creation (async)\nconst doc = await agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // Without saving (sync)\nconst tempDoc = agent.createDocumentSync( JSON.stringify({ data: 'temporary' }), null, null, true\n);","breadcrumbs":"API Reference » agent.createDocument(...) / agent.createDocumentSync(...)","id":"597","title":"agent.createDocument(...) / agent.createDocumentSync(...)"},"598":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: Promise (async) or boolean (sync) -- True if the document is valid Example: const isValid = await agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n}","breadcrumbs":"API Reference » agent.verifyDocument(...) / agent.verifyDocumentSync(...)","id":"598","title":"agent.verifyDocument(...) / agent.verifyDocumentSync(...)"},"599":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifySignature(...) / agent.verifySignatureSync(...)","id":"599","title":"agent.verifySignature(...) / agent.verifySignatureSync(...)"},"6":{"body":"Best fit for LangChain, LangGraph, CrewAI, FastAPI, and local MCP/A2A helpers Strong adapter story for adding provenance inside an existing app","breadcrumbs":"Introduction » Python (jacs)","id":"6","title":"Python (jacs)"},"60":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"60","title":"Agreements"},"600":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: Promise (async) or string (sync) Example: const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`;\nconst updatedDoc = await agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title' })\n);","breadcrumbs":"API Reference » agent.updateDocument(...) / agent.updateDocumentSync(...)","id":"600","title":"agent.updateDocument(...) / agent.updateDocumentSync(...)"},"601":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.createAgreement(...) / agent.createAgreementSync(...)","id":"601","title":"agent.createAgreement(...) / agent.createAgreementSync(...)"},"602":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgreement(...) / agent.signAgreementSync(...)","id":"602","title":"agent.signAgreement(...) / agent.signAgreementSync(...)"},"603":{"body":"Check the status of an agreement. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync) -- JSON string with agreement status","breadcrumbs":"API Reference » agent.checkAgreement(...) / agent.checkAgreementSync(...)","id":"603","title":"agent.checkAgreement(...) / agent.checkAgreementSync(...)"},"604":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifactJson (string): JSON string of the artifact to sign artifactType (string): Type of artifact (e.g., \"task\", \"message\") parentSignaturesJson (string, optional): JSON string of parent signatures for chain of custody Returns: Promise (async) or string (sync) -- The signed, wrapped artifact as a JSON string Example: const signed = await agent.signArtifact( JSON.stringify({ action: 'classify', input: 'hello' }), 'task'\n);","breadcrumbs":"API Reference » agent.signArtifact(...) / agent.signArtifactSync(...)","id":"604","title":"agent.signArtifact(...) / agent.signArtifactSync(...)"},"605":{"body":"Deprecated since 0.9.0. Use signArtifact() / signArtifactSync() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to signArtifact() / signArtifactSync(). Parameters: Same as signArtifact() / signArtifactSync().","breadcrumbs":"API Reference » agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)","id":"605","title":"agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)"},"606":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: Promise (async) or string (sync) -- Base64-encoded signature","breadcrumbs":"API Reference » agent.signString(...) / agent.signStringSync(...)","id":"606","title":"agent.signString(...) / agent.signStringSync(...)"},"607":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyString(...) / agent.verifyStringSync(...)","id":"607","title":"agent.verifyString(...) / agent.verifyStringSync(...)"},"608":{"body":"Sign a request payload, wrapping it in a JACS document. This method is synchronous (no Sync suffix) because it uses V8-thread-only APIs. Parameters: params (any): The request payload object Returns: string -- JACS-signed request as a JSON string","breadcrumbs":"API Reference » agent.signRequest(params) -- V8-thread-only","id":"608","title":"agent.signRequest(params) -- V8-thread-only"},"609":{"body":"Verify a JACS-signed response and extract the payload. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object containing the verified payload","breadcrumbs":"API Reference » agent.verifyResponse(documentString) -- V8-thread-only","id":"609","title":"agent.verifyResponse(documentString) -- V8-thread-only"},"61":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"61","title":"Agreement Structure"},"610":{"body":"Verify a response and return both the payload and signer's agent ID. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object with payload and agent ID","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString) -- V8-thread-only","id":"610","title":"agent.verifyResponseWithAgentId(documentString) -- V8-thread-only"},"611":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyAgent(...) / agent.verifyAgentSync(...)","id":"611","title":"agent.verifyAgent(...) / agent.verifyAgentSync(...)"},"612":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.updateAgent(...) / agent.updateAgentSync(...)","id":"612","title":"agent.updateAgent(...) / agent.updateAgentSync(...)"},"613":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgent(...) / agent.signAgentSync(...)","id":"613","title":"agent.signAgent(...) / agent.signAgentSync(...)"},"614":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"614","title":"Utility Functions"},"615":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string -- Hexadecimal hash string import { hashString } from '@hai.ai/jacs';\nconst hash = hashString('data to hash');","breadcrumbs":"API Reference » hashString(data)","id":"615","title":"hashString(data)"},"616":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional) jacsDataDirectory (string, optional) jacsKeyDirectory (string, optional) jacsAgentPrivateKeyFilename (string, optional) jacsAgentPublicKeyFilename (string, optional) jacsAgentKeyAlgorithm (string, optional) jacsPrivateKeyPassword (string, optional) jacsAgentIdAndVersion (string, optional) jacsDefaultStorage (string, optional) Returns: string -- Configuration as JSON string","breadcrumbs":"API Reference » createConfig(options)","id":"616","title":"createConfig(options)"},"617":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"617","title":"HTTP Module"},"618":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"618","title":"JACSExpressMiddleware(options)"},"619":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"619","title":"JACSKoaMiddleware(options)"},"62":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"62","title":"Agreement Process"},"620":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"620","title":"MCP Module"},"621":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"621","title":"createJACSTransportProxy(transport, configPath, role)"},"622":{"body":"Async factory that waits for JACS to be fully loaded. Returns: Promise","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"622","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"623":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');","breadcrumbs":"API Reference » TypeScript Support","id":"623","title":"TypeScript Support"},"624":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() -> Use agent.load() / agent.loadSync() signAgent() -> Use agent.signAgent() / agent.signAgentSync() verifyString() -> Use agent.verifyString() / agent.verifyStringSync() signString() -> Use agent.signString() / agent.signStringSync() verifyAgent() -> Use agent.verifyAgent() / agent.verifyAgentSync() updateAgent() -> Use agent.updateAgent() / agent.updateAgentSync() verifyDocument() -> Use agent.verifyDocument() / agent.verifyDocumentSync() updateDocument() -> Use agent.updateDocument() / agent.updateDocumentSync() verifySignature() -> Use agent.verifySignature() / agent.verifySignatureSync() createAgreement() -> Use agent.createAgreement() / agent.createAgreementSync() signAgreement() -> Use agent.signAgreement() / agent.signAgreementSync() createDocument() -> Use agent.createDocument() / agent.createDocumentSync() checkAgreement() -> Use agent.checkAgreement() / agent.checkAgreementSync() signRequest() -> Use agent.signRequest() (V8-thread-only, sync) verifyResponse() -> Use agent.verifyResponse() (V8-thread-only, sync) verifyResponseWithAgentId() -> Use agent.verifyResponseWithAgentId() (V8-thread-only, sync) Migration Example: // Old (deprecated, v0.6.x)\nimport jacs from '@hai.ai/jacs';\njacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, async)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, sync)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"624","title":"Deprecated Functions"},"625":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const doc = await agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"625","title":"Error Handling"},"626":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"626","title":"See Also"},"627":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"627","title":"Python Installation"},"628":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"628","title":"Requirements"},"629":{"body":"","breadcrumbs":"Installation » Installation","id":"629","title":"Installation"},"63":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"63","title":"Agreement Types"},"630":{"body":"pip install jacs For framework adapters (LangChain, FastAPI, CrewAI, Anthropic, etc.) use optional extras, e.g. pip install jacs[langchain], jacs[fastapi], or jacs[all]. Optional: jacs[langgraph], jacs[ws]. See Framework Adapters and the package pyproject.toml.","breadcrumbs":"Installation » Using pip","id":"630","title":"Using pip"},"631":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"631","title":"Using conda"},"632":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"632","title":"Using poetry"},"633":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"633","title":"Development Installation"},"634":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs\nprint('JACS Python bindings loaded successfully!') # Quick check (no config file; in-memory agent)\nfrom jacs.client import JacsClient\nclient = JacsClient.ephemeral()\nsigned = client.sign_message({\"hello\": \"jacs\"})\nresult = client.verify(signed.raw_json)\nprint('Sign & verify OK:', result.valid) Or with an existing config file: import jacs\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')\nprint('Agent loaded successfully!') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"634","title":"Verify Installation"},"635":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"635","title":"Package Structure"},"636":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"636","title":"Core Module"},"637":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"637","title":"JacsAgent Methods"},"638":{"body":"","breadcrumbs":"Installation » Configuration","id":"638","title":"Configuration"},"639":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"639","title":"Configuration File"},"64":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"64","title":"Cryptographic Security"},"640":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"640","title":"Load Configuration in Python"},"641":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"641","title":"Programmatic Configuration"},"642":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"642","title":"Environment Variables"},"643":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"643","title":"Storage Backends"},"644":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"644","title":"File System (Default)"},"645":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"645","title":"Local Indexed SQLite"},"646":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"646","title":"AWS Storage"},"647":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"647","title":"Memory Storage (Testing)"},"648":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"648","title":"Cryptographic Algorithms"},"649":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"649","title":"ring-Ed25519 (Recommended)"},"65":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"65","title":"Supported Algorithms"},"650":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"650","title":"RSA-PSS"},"651":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"651","title":"pq-dilithium (Post-Quantum)"},"652":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"652","title":"pq2025 (Post-Quantum Hybrid)"},"653":{"body":"","breadcrumbs":"Installation » Development Setup","id":"653","title":"Development Setup"},"654":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"654","title":"Project Structure"},"655":{"body":"jacs>=0.9.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"655","title":"Requirements.txt Setup"},"656":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"656","title":"Basic Application"},"657":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"657","title":"Virtual Environment Setup"},"658":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"658","title":"Using venv"},"659":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"659","title":"Using conda"},"66":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"66","title":"Signature Process"},"660":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"660","title":"Using poetry"},"661":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"661","title":"Jupyter Notebook Setup"},"662":{"body":"","breadcrumbs":"Installation » Common Issues","id":"662","title":"Common Issues"},"663":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"663","title":"Module Not Found"},"664":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"664","title":"Permission Errors"},"665":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"665","title":"Binary Compatibility"},"666":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"666","title":"Windows Issues"},"667":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"667","title":"Type Hints and IDE Support"},"668":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"668","title":"Testing Setup"},"669":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"669","title":"Next Steps"},"67":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"67","title":"Key Management"},"670":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"670","title":"Examples"},"671":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"671","title":"Simplified API"},"672":{"body":"Zero-config -- one call to start signing: import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass algorithm=\"ring-Ed25519\" to override the default (pq2025). To load an existing agent explicitly, use load() instead: agent = jacs.load(\"./jacs.config.json\")\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})","breadcrumbs":"Simplified API » Quick Start","id":"672","title":"Quick Start"},"673":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"673","title":"When to Use the Simplified API"},"674":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"674","title":"API Reference"},"675":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Python quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before sign_message() or verify(). Parameters: name (str, required): Agent name used for first-time creation. domain (str, required): Agent domain used for DNS/public-key verification workflows. description (str, optional): Human-readable description. algorithm (str, optional): Signing algorithm. Default: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". config_path (str, optional): Config path (default: \"./jacs.config.json\"). Returns: AgentInfo dataclass info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config path: {info.config_path}\")\nprint(f\"Public key: {info.public_key_path}\")\nprint(f\"Private key: {info.private_key_path}\") # Or with a specific algorithm\ninfo = jacs.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", algorithm=\"ring-Ed25519\",\n)","breadcrumbs":"Simplified API » quickstart(name, domain, description=None, algorithm=None, config_path=None)","id":"675","title":"quickstart(name, domain, description=None, algorithm=None, config_path=None)"},"676":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(name=..., domain=..., ...) when you want to load a specific config file explicitly. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") strict (bool, optional): If True, verification failures raise; if None, uses JACS_STRICT_MODE env var Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None, strict=None)","id":"676","title":"load(config_path=None, strict=None)"},"677":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"677","title":"is_loaded()"},"678":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"678","title":"get_agent_info()"},"679":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"679","title":"verify_self()"},"68":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"68","title":"Versioning and Audit Trails"},"680":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"680","title":"sign_message(data)"},"681":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"681","title":"sign_file(file_path, embed=False)"},"682":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str|dict|SignedDocument): The signed document as JSON string, dict, or SignedDocument Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"682","title":"verify(signed_document)"},"683":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"683","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"684":{"body":"Verify a document by its storage ID (uuid:version) without passing the full JSON. Requires the document to be stored locally (e.g. in the agent's data directory). Parameters: document_id (str): Document ID in format \"uuid:version\" Returns: VerificationResult","breadcrumbs":"Simplified API » verify_by_id(document_id)","id":"684","title":"verify_by_id(document_id)"},"685":{"body":"Re-encrypt the loaded agent's private key with a new password. Parameters: old_password (str), new_password (str) Raises: AgentNotLoadedError if no agent loaded; JacsError if password is wrong","breadcrumbs":"Simplified API » reencrypt_key(old_password, new_password)","id":"685","title":"reencrypt_key(old_password, new_password)"},"686":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"686","title":"audit(config_path=None, recent_n=None)"},"687":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"687","title":"update_agent(new_agent_data)"},"688":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"688","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"689":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"689","title":"export_agent()"},"69":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"69","title":"Version Management"},"690":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"690","title":"get_dns_record(domain, ttl=3600)"},"691":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"691","title":"get_well_known_json()"},"692":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"692","title":"get_public_key()"},"693":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"693","title":"Type Definitions"},"694":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"694","title":"AgentInfo"},"695":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"695","title":"SignedDocument"},"696":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"696","title":"VerificationResult"},"697":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type content_hash: str # SHA-256 hash of file content content: Optional[str] = None # Base64-encoded content (if embedded) size_bytes: int = 0 # Size of the original file","breadcrumbs":"Simplified API » Attachment","id":"697","title":"Attachment"},"698":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"698","title":"Exceptions"},"699":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"699","title":"Complete Example"},"7":{"body":"Best fit for Express, Koa, Vercel AI SDK, LangChain.js, and MCP transport/tool integration Also exposes A2A helpers and Express discovery middleware","breadcrumbs":"Introduction » Node.js (@hai.ai/jacs)","id":"7","title":"Node.js (@hai.ai/jacs)"},"70":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"70","title":"Audit Trail Benefits"},"700":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"700","title":"MCP Integration"},"701":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"701","title":"Error Handling"},"702":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"702","title":"See Also"},"703":{"body":"This chapter covers fundamental JACS operations in Python. For quick signing and verification, start with the Simplified API (jacs.simple) or JacsClient ; the sections below use the JacsAgent class directly for fine-grained control.","breadcrumbs":"Basic Usage » Basic Usage","id":"703","title":"Basic Usage"},"704":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"704","title":"Initializing an Agent"},"705":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"705","title":"Create and Load Agent"},"706":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"706","title":"Configuration File"},"707":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"707","title":"Creating Documents"},"708":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"708","title":"Basic Document Creation"},"709":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"709","title":"With Custom Schema"},"71":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"71","title":"Storage and Transport"},"710":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"710","title":"With Output File"},"711":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"711","title":"Without Saving"},"712":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"712","title":"With Attachments"},"713":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"713","title":"Verifying Documents"},"714":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"714","title":"Verify Document Signature"},"715":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"715","title":"Verify Specific Signature Field"},"716":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"716","title":"Updating Documents"},"717":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"717","title":"Update Existing Document"},"718":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"718","title":"Update with New Attachments"},"719":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"719","title":"Signing and Verification"},"72":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"72","title":"Storage Options"},"720":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"720","title":"Sign Arbitrary Data"},"721":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"721","title":"Verify Arbitrary Data"},"722":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"722","title":"Working with Agreements"},"723":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"723","title":"Create an Agreement"},"724":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"724","title":"Sign an Agreement"},"725":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"725","title":"Check Agreement Status"},"726":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"726","title":"Agent Operations"},"727":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"727","title":"Verify Agent"},"728":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"728","title":"Update Agent"},"729":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"729","title":"Sign External Agent"},"73":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"73","title":"Transport Mechanisms"},"730":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"730","title":"Request/Response Signing"},"731":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"731","title":"Sign a Request"},"732":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"732","title":"Verify a Response"},"733":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"733","title":"Utility Functions"},"734":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"734","title":"Hash String"},"735":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"735","title":"Create Configuration"},"736":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"736","title":"Error Handling"},"737":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"737","title":"Complete Example"},"738":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"738","title":"Working with Document Data"},"739":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"739","title":"Parse Signed Documents"},"74":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"74","title":"Format Compatibility"},"740":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"740","title":"Document Key Format"},"741":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"741","title":"Configuration Management"},"742":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"742","title":"Load from File"},"743":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"743","title":"Environment Variables"},"744":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"744","title":"Programmatic Configuration"},"745":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"745","title":"Next Steps"},"746":{"body":"Python exposes two different MCP stories: Secure a local FastMCP transport with jacs.mcp Expose JACS operations as MCP tools with jacs.adapters.mcp Use the first when you already have an MCP server or client. Use the second when you want the model to call JACS signing, agreement, A2A, or trust helpers as normal MCP tools.","breadcrumbs":"MCP Integration (Python) » MCP Integration (Python)","id":"746","title":"MCP Integration (Python)"},"747":{"body":"Local FastMCP server wrapping with JACSMCPServer Local FastMCP client wrapping with JACSMCPClient One-line server creation with create_jacs_mcp_server() FastMCP tool registration with register_jacs_tools(), register_a2a_tools(), and register_trust_tools()","breadcrumbs":"MCP Integration (Python) » What Is Supported","id":"747","title":"What Is Supported"},"748":{"body":"JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback-only URLs Unsigned fallback is disabled by default strict=True is about config loading and failure behavior, not an opt-in to security","breadcrumbs":"MCP Integration (Python) » Important Constraints","id":"748","title":"Important Constraints"},"749":{"body":"The shortest path is the factory: from jacs.mcp import create_jacs_mcp_server mcp = create_jacs_mcp_server(\"My Server\", \"./jacs.config.json\") @mcp.tool()\ndef hello(name: str) -> str: return f\"Hello, {name}!\" If you already have a FastMCP instance: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\")","breadcrumbs":"MCP Integration (Python) » 1. Secure A FastMCP Server","id":"749","title":"1. Secure A FastMCP Server"},"75":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"75","title":"Next Steps"},"750":{"body":"from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") async with client: result = await client.call_tool(\"hello\", {\"name\": \"World\"}) To allow unsigned fallback explicitly: client = JACSMCPClient( \"http://localhost:8000/sse\", \"./jacs.config.json\", allow_unsigned_fallback=True,\n)","breadcrumbs":"MCP Integration (Python) » 2. Secure A FastMCP Client","id":"750","title":"2. Secure A FastMCP Client"},"751":{"body":"This is the better fit when the model should be able to ask for signatures, agreements, A2A cards, or trust-store operations directly. from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\") register_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client) The core tool set includes document signing, verification, agreements, audit, and agent-info helpers. The A2A and trust helpers are opt-in registrations.","breadcrumbs":"MCP Integration (Python) » 3. Register JACS As MCP Tools","id":"751","title":"3. Register JACS As MCP Tools"},"752":{"body":"From jacs.mcp: jacs_tool to sign a specific tool's response jacs_middleware() for explicit Starlette middleware jacs_call() for one-off authenticated local MCP calls","breadcrumbs":"MCP Integration (Python) » Useful Helper APIs","id":"752","title":"Useful Helper APIs"},"753":{"body":"jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacspy/examples/mcp_server.py jacspy/tests/test_adapters_mcp.py","breadcrumbs":"MCP Integration (Python) » Example Paths In This Repo","id":"753","title":"Example Paths In This Repo"},"754":{"body":"Choose Python Framework Adapters instead of MCP when: the model and tools already live in the same Python process you only need signed LangChain, LangGraph, CrewAI, or FastAPI boundaries you do not need MCP clients to connect from outside the app","breadcrumbs":"MCP Integration (Python) » When To Use Adapters Instead","id":"754","title":"When To Use Adapters Instead"},"755":{"body":"Use adapters when the model already runs inside your Python app and you want provenance at the framework boundary, not a separate MCP server.","breadcrumbs":"Framework Adapters » Framework Adapters","id":"755","title":"Framework Adapters"},"756":{"body":"If you need... API Start here Signed LangChain tool results jacs_signing_middleware, signed_tool LangChain / LangGraph section below Signed LangGraph ToolNode outputs jacs_wrap_tool_call, with_jacs_signing LangChain / LangGraph section below Signed FastAPI responses and verified inbound requests JacsMiddleware, jacs_route FastAPI section below Signed CrewAI task output jacs_guardrail, signed_task CrewAI section below Signed Anthropic tool return values jacs.adapters.anthropic.signed_tool Anthropic section below Install only the extra you need: pip install jacs[langchain]\npip install jacs[fastapi]\npip install jacs[crewai]\npip install jacs[anthropic] Optional: jacs[langgraph] (LangGraph ToolNode), jacs[ws] (WebSockets). See pyproject.toml for the full list.","breadcrumbs":"Framework Adapters » Choose The Adapter","id":"756","title":"Choose The Adapter"},"757":{"body":"This is the smallest JACS path if your model already lives in LangChain.","breadcrumbs":"Framework Adapters » LangChain / LangGraph","id":"757","title":"LangChain / LangGraph"},"758":{"body":"from langchain.agents import create_agent\nfrom jacs.client import JacsClient\nfrom jacs.adapters.langchain import jacs_signing_middleware client = JacsClient.quickstart(name=\"langchain-agent\", domain=\"langchain.local\") agent = create_agent( model=\"openai:gpt-4o\", tools=[search_tool, calc_tool], middleware=[jacs_signing_middleware(client=client)],\n)","breadcrumbs":"Framework Adapters » LangChain middleware","id":"758","title":"LangChain middleware"},"759":{"body":"from jacs.adapters.langchain import with_jacs_signing tool_node = with_jacs_signing([search_tool, calc_tool], client=client)","breadcrumbs":"Framework Adapters » LangGraph ToolNode","id":"759","title":"LangGraph ToolNode"},"76":{"body":"Get signing and verifying in under a minute. No manual setup needed.","breadcrumbs":"Quick Start » Quick Start Guide","id":"76","title":"Quick Start Guide"},"760":{"body":"from jacs.adapters.langchain import signed_tool signed_search = signed_tool(search_tool, client=client) The executable example to start from in this repo is jacspy/examples/langchain/signing_callback.py.","breadcrumbs":"Framework Adapters » Wrap one tool instead of the whole graph","id":"760","title":"Wrap one tool instead of the whole graph"},"761":{"body":"Use this when the trust boundary is an API route instead of an MCP transport. from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.adapters.fastapi import JacsMiddleware client = JacsClient.quickstart(name=\"api-agent\", domain=\"api.local\")\napp = FastAPI()\napp.add_middleware(JacsMiddleware, client=client) Useful options: strict=True to reject verification failures instead of passing through sign_responses=False or verify_requests=False to narrow the behavior a2a=True to also expose A2A discovery routes from the same FastAPI app For auth-style endpoints, replay protection is available: app.add_middleware( JacsMiddleware, client=client, strict=True, auth_replay_protection=True, auth_max_age_seconds=30, auth_clock_skew_seconds=5,\n) To sign only one route: from jacs.adapters.fastapi import jacs_route @app.get(\"/signed\")\n@jacs_route(client=client)\nasync def signed_endpoint(): return {\"ok\": True}","breadcrumbs":"Framework Adapters » FastAPI / Starlette","id":"761","title":"FastAPI / Starlette"},"762":{"body":"CrewAI support is guardrail-first: from crewai import Task\nfrom jacs.adapters.crewai import jacs_guardrail task = Task( description=\"Summarize the report\", agent=my_agent, guardrail=jacs_guardrail(client=client),\n) If you build tasks with factories, signed_task() can pre-attach the guardrail.","breadcrumbs":"Framework Adapters » CrewAI","id":"762","title":"CrewAI"},"763":{"body":"Use the Anthropic adapter when you want signed return values from normal Python tool functions: from jacs.adapters.anthropic import signed_tool @signed_tool(client=client)\ndef get_weather(location: str) -> str: return f\"Weather in {location}: sunny\"","breadcrumbs":"Framework Adapters » Anthropic / Claude SDK","id":"763","title":"Anthropic / Claude SDK"},"764":{"body":"Choose Python MCP Integration instead of adapters when: the model is outside your process and talks over MCP you want an MCP tool suite for JACS operations you need the same server to be usable by external MCP clients","breadcrumbs":"Framework Adapters » When To Use MCP Instead","id":"764","title":"When To Use MCP Instead"},"765":{"body":"Complete API documentation for the jacs Python package. For most use cases, the Simplified API (jacs.simple) and JacsClient (instance-based, multiple agents) are recommended. This page documents the lower-level JacsAgent class and module-level functions.","breadcrumbs":"API Reference » API Reference","id":"765","title":"API Reference"},"766":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"766","title":"Installation"},"767":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"767","title":"Core Module"},"768":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"768","title":"JacsAgent Class"},"769":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"769","title":"Constructor"},"77":{"body":"quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Quick Start » Zero-Config Quick Start","id":"77","title":"Zero-Config Quick Start"},"770":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"770","title":"agent.load(config_path)"},"771":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"771","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"772":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"772","title":"agent.verify_document(document_string)"},"773":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"773","title":"agent.verify_signature(document_string, signature_field=None)"},"774":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"774","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"775":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"775","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"776":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"776","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"777":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"777","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"778":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifact_json (str): JSON string of the artifact to sign artifact_type (str): Type of artifact (e.g., \"task\", \"message\") parent_signatures_json (str, optional): JSON string of parent signatures for chain of custody Returns: str - The signed, wrapped artifact as a JSON string Example: signed = agent.sign_artifact( json.dumps({\"action\": \"classify\", \"input\": \"hello\"}), \"task\"\n)","breadcrumbs":"API Reference » agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"778","title":"agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"779":{"body":"Deprecated since 0.9.0. Use sign_artifact() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to sign_artifact(). Parameters: Same as sign_artifact().","breadcrumbs":"API Reference » agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"779","title":"agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"78":{"body":"Rust CLI quickstart requires a password source. Choose one: # Option A: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations)\njacs keychain set # prompts once, then all JACS commands find the password automatically # Option C: Password file (CLI convenience)\nexport JACS_PASSWORD_FILE=/secure/path/jacs-password.txt If both JACS_PRIVATE_KEY_PASSWORD and JACS_PASSWORD_FILE are set, CLI fails fast to avoid ambiguity. The OS keychain is the lowest-priority source and is only consulted when neither env var nor password file is set. Python/Node quickstart can auto-generate a secure password if JACS_PRIVATE_KEY_PASSWORD is unset. Set JACS_SAVE_PASSWORD_FILE=true if you want the generated password persisted to ./jacs_keys/.jacs_password. In production, set JACS_PRIVATE_KEY_PASSWORD explicitly. One call and you're signing. Python pip install jacs import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") Node.js npm install @hai.ai/jacs const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); Rust CLI cargo install jacs-cli # Info mode -- prints agent ID and algorithm\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json Pass algorithm=\"ring-Ed25519\" (or { algorithm: 'ring-Ed25519' } in JS, --algorithm ring-Ed25519 in CLI) to override the default (pq2025). That's it -- you're signing. For most use cases, the quick start above is all you need. Jump to Which integration should I use? to find the right framework adapter, or read on for manual agent setup.","breadcrumbs":"Quick Start » Password bootstrap","id":"78","title":"Password bootstrap"},"780":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"780","title":"agent.sign_string(data)"},"781":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"781","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"782":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"782","title":"agent.sign_request(params)"},"783":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"783","title":"agent.verify_response(document_string)"},"784":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"784","title":"agent.verify_response_with_agent_id(document_string)"},"785":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"785","title":"agent.verify_agent(agent_file=None)"},"786":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"786","title":"agent.update_agent(new_agent_string)"},"787":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"787","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"788":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"788","title":"Module-Level Functions"},"789":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"789","title":"jacs.load(config_path)"},"79":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Quick Start » macOS Homebrew install (Rust CLI)","id":"79","title":"macOS Homebrew install (Rust CLI)"},"790":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"790","title":"jacs.sign_request(data)"},"791":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"791","title":"jacs.verify_request(data)"},"792":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"792","title":"jacs.sign_response(data)"},"793":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"793","title":"jacs.verify_response(data)"},"794":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient, create_jacs_mcp_server, jacs_call Canonical MCP documentation lives at Python MCP Integration . This API section lists the MCP entry points only: JACSMCPServer(mcp_server, config_path=\"./jacs.config.json\", strict=False) - Wrap a FastMCP server with JACS request verification and response signing. JACSMCPClient(url, config_path=\"./jacs.config.json\", strict=False, **kwargs) - Create a FastMCP client with JACS signing/verification interceptors. create_jacs_mcp_server(name, config_path=None) - One-line server factory. jacs_call(server_url, method, **params) - One-shot authenticated MCP call. For examples, strict-mode behavior, and security guidance, see Python MCP Integration .","breadcrumbs":"API Reference » MCP Module","id":"794","title":"MCP Module"},"795":{"body":"","breadcrumbs":"API Reference » Configuration","id":"795","title":"Configuration"},"796":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"796","title":"Configuration File Format"},"797":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"797","title":"Configuration Options"},"798":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"798","title":"Error Handling"},"799":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"799","title":"Common Exceptions"},"8":{"body":"Good fit for services that need signing and verification without framework adapters","breadcrumbs":"Introduction » Go (jacsgo)","id":"8","title":"Go (jacsgo)"},"80":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Quick Start » MCP server (Rust CLI)","id":"80","title":"MCP server (Rust CLI)"},"800":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"800","title":"Type Hints"},"801":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"801","title":"Thread Safety"},"802":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"802","title":"See Also"},"803":{"body":"jacsgo provides Go bindings for signing and verifying JACS documents in services, APIs, and agent runtimes. Note: Go bindings are community-maintained. Python and Node.js currently have broader framework adapter coverage. For full MCP surface use the Rust jacs-mcp server; the Go MCP examples in the repo are demo code.","breadcrumbs":"Installation & Quick Start » Go (jacsgo) Installation and Quick Start","id":"803","title":"Go (jacsgo) Installation and Quick Start"},"804":{"body":"go get github.com/HumanAssisted/JACS/jacsgo","breadcrumbs":"Installation & Quick Start » Install","id":"804","title":"Install"},"805":{"body":"Create an agent first (CLI: jacs create --name my-agent, or programmatically with jacs.Create() and JACS_PRIVATE_KEY_PASSWORD). Then: package main import ( \"fmt\" \"log\" jacs \"github.com/HumanAssisted/JACS/jacsgo\"\n) func main() { // Load agent: nil = default ./jacs.config.json if err := jacs.Load(nil); err != nil { log.Fatal(\"create an agent first: jacs create --name my-agent\") } signed, err := jacs.SignMessage(map[string]interface{}{ \"event\": \"tool-result\", \"status\": \"ok\", }) if err != nil { log.Fatal(err) } result, err := jacs.Verify(signed.Raw) if err != nil { log.Fatal(err) } fmt.Printf(\"Valid: %t signer=%s\\n\", result.Valid, result.SignerID)\n}","breadcrumbs":"Installation & Quick Start » Minimal Sign + Verify","id":"805","title":"Minimal Sign + Verify"},"806":{"body":"Use jacs.Create(name, &jacs.CreateAgentOptions{...}). Password must be set in options or via JACS_PRIVATE_KEY_PASSWORD. See the jacsgo README for the full API table and options.","breadcrumbs":"Installation & Quick Start » Programmatic agent creation","id":"806","title":"Programmatic agent creation"},"807":{"body":"For multiple agents in one process, use NewJacsAgent(), then agent.Load(path) and agent methods; call agent.Close() when done. Attestation, A2A (agent cards, trust policy), and protocol helpers are available on JacsAgent and as package-level wrappers (see godoc or the jacsgo README).","breadcrumbs":"Installation & Quick Start » Concurrent use","id":"807","title":"Concurrent use"},"808":{"body":"Sign outbound API/MCP payloads before crossing trust boundaries Verify inbound signed payloads before executing sensitive actions Sign files (SignFile) for portable chain-of-custody workflows Generate DNS TXT fingerprints (GetDnsRecord) for public identity verification","breadcrumbs":"Installation & Quick Start » Common Go Use Cases","id":"808","title":"Common Go Use Cases"},"809":{"body":"The Go repository includes runnable examples for transport-level signing: jacsgo/examples/mcp/main.go for MCP-style request/response signing jacsgo/examples/http/ for signed HTTP client/server traffic","breadcrumbs":"Installation & Quick Start » MCP and HTTP Patterns","id":"809","title":"MCP and HTTP Patterns"},"81":{"body":"For full control over agent creation, you can set up an agent manually with a config file and JACS_PRIVATE_KEY_PASSWORD environment variable. This is optional since quickstart(...) already creates a persistent agent. Rust CLI","breadcrumbs":"Quick Start » Advanced: Explicit Agent Setup","id":"81","title":"Advanced: Explicit Agent Setup"},"810":{"body":"JACS agent identity is key-based (jacsId + versioned signatures) Verification behavior follows the configured key-resolution order in the runtime (for example local and remote resolution modes supported by the underlying JACS core) DID interoperability is possible at the integration layer without requiring blockchain infrastructure See DNS-Based Verification and DID Integration (No Blockchain Required) .","breadcrumbs":"Installation & Quick Start » Identity and Trust Notes","id":"810","title":"Identity and Trust Notes"},"811":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"811","title":"JSON Schemas"},"812":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"812","title":"Schema Architecture"},"813":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"813","title":"Schema Categories"},"814":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"814","title":"Configuration Schema"},"815":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"815","title":"Document Schemas"},"816":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"816","title":"Component Schemas"},"817":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"817","title":"Schema Locations"},"818":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"818","title":"Using Schemas"},"819":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"819","title":"In Documents"},"82":{"body":"cargo install jacs-cli","breadcrumbs":"Quick Start » Install","id":"82","title":"Install"},"820":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"820","title":"In Configuration Files"},"821":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"821","title":"Custom Schema Validation"},"822":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"822","title":"HAI Extensions"},"823":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"823","title":"Versioning"},"824":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"824","title":"Schema Composition"},"825":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"825","title":"Creating Custom Schemas"},"826":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"826","title":"Validation Rules"},"827":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"827","title":"Required Fields"},"828":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"828","title":"Format Validation"},"829":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"829","title":"Enum Constraints"},"83":{"body":"# Create configuration and agent in one step\njacs init # Or step by step:\n# 1. Create config\njacs config create\n# 2. Create agent with keys\njacs agent create --create-keys true\n# 3. Verify\njacs agent verify","breadcrumbs":"Quick Start » Initialize","id":"83","title":"Initialize"},"830":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"830","title":"Schema Reference"},"831":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"831","title":"See Also"},"832":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"832","title":"Agent Schema"},"833":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"833","title":"Schema Location"},"834":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"834","title":"Overview"},"835":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"835","title":"Schema Structure"},"836":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"836","title":"Agent Types"},"837":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"837","title":"Contact Requirements"},"838":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"838","title":"Agent Properties"},"839":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"839","title":"Core Fields (from Header)"},"84":{"body":"jacs document create -f mydata.json Node.js","breadcrumbs":"Quick Start » Sign a document","id":"84","title":"Sign a document"},"840":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"840","title":"Agent-Specific Fields"},"841":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"841","title":"Services"},"842":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"842","title":"Service Schema Fields"},"843":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"843","title":"PII Types"},"844":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"844","title":"Contacts"},"845":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"845","title":"Contact Schema Fields"},"846":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"846","title":"DNS Verification"},"847":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"847","title":"Complete Example"},"848":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"848","title":"AI Agent"},"849":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"849","title":"Human Agent"},"85":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install","id":"85","title":"Install"},"850":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"850","title":"Organization Agent"},"851":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"851","title":"Creating Agents"},"852":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"852","title":"Python"},"853":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"853","title":"Node.js"},"854":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"854","title":"CLI"},"855":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"855","title":"Verifying Agents"},"856":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"856","title":"See Also"},"857":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"857","title":"Document Schema"},"858":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"858","title":"Schema Location"},"859":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"859","title":"Overview"},"86":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load from config file\nawait jacs.load('./jacs.config.json'); const signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`); Python","breadcrumbs":"Quick Start » Load and use","id":"86","title":"Load and use"},"860":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"860","title":"Core Fields"},"861":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"861","title":"Identification"},"862":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"862","title":"Versioning"},"863":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"863","title":"Document Level"},"864":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"864","title":"Cryptographic Fields"},"865":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string Yes Algorithm used (ring-Ed25519, RSA-PSS, pq2025; pq-dilithium is legacy/deprecated) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"865","title":"Signature"},"866":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"866","title":"Registration"},"867":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"867","title":"Hash"},"868":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"868","title":"Agreements"},"869":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"869","title":"Agreement Schema Fields"},"87":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install","id":"87","title":"Install"},"870":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"870","title":"File Attachments"},"871":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"871","title":"File Schema Fields"},"872":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"872","title":"Vector Embeddings"},"873":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"873","title":"Embedding Schema Fields"},"874":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"874","title":"Complete Example"},"875":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"875","title":"HAI Field Categories"},"876":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"876","title":"Working with Documents"},"877":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"877","title":"Creating Documents"},"878":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"878","title":"Verifying Documents"},"879":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"879","title":"Updating Documents"},"88":{"body":"import jacs.simple as jacs # Load from config file\njacs.load(\"./jacs.config.json\") signed = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Quick Start » Load and use","id":"88","title":"Load and use"},"880":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"880","title":"Adding Attachments"},"881":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"881","title":"Version History"},"882":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"882","title":"See Also"},"883":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"883","title":"Task Schema"},"884":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"884","title":"Schema Location"},"885":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"885","title":"Overview"},"886":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"886","title":"Schema Structure"},"887":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"887","title":"Task States"},"888":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"888","title":"State Transitions"},"889":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"889","title":"Task Properties"},"89":{"body":"For scripts, CI/CD, and server environments where you need agents created programmatically with explicit parameters (without interactive prompts), use create(). For most cases, quickstart(...) above is simpler and also creates a persistent agent. Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = await jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Programmatic Agent Creation (v0.6.0+)","id":"89","title":"Programmatic Agent Creation (v0.6.0+)"},"890":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"890","title":"Core Fields (from Header)"},"891":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"891","title":"Task-Specific Fields"},"892":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"892","title":"Relationship Fields"},"893":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"893","title":"Actions"},"894":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"894","title":"Action Schema Fields"},"895":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"895","title":"Unit Schema"},"896":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"896","title":"Agreements"},"897":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"897","title":"Start Agreement"},"898":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"898","title":"End Agreement"},"899":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"899","title":"Complete Example"},"9":{"body":"","breadcrumbs":"Introduction » Quick Start","id":"9","title":"Quick Start"},"90":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"90","title":"Understanding What Happened"},"900":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"900","title":"Task Relationships"},"901":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"901","title":"Sub-Tasks"},"902":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"902","title":"Task Copies (Branching)"},"903":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"903","title":"Merged Tasks"},"904":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"904","title":"Task Workflow"},"905":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"905","title":"1. Creating a Task"},"906":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"906","title":"2. Assigning an Agent"},"907":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"907","title":"3. Signing Start Agreement"},"908":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"908","title":"4. Completing Work"},"909":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"909","title":"5. Final Completion"},"91":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"91","title":"1. Agent Creation"},"910":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"910","title":"State Machine Rules"},"911":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"911","title":"See Also"},"912":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"912","title":"Agent State Schema"},"913":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"913","title":"Schema Location"},"914":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"914","title":"Overview"},"915":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"915","title":"Schema Structure"},"916":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"916","title":"State Types"},"917":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"917","title":"Properties"},"918":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"918","title":"Required Fields"},"919":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"919","title":"Optional Fields"},"92":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"92","title":"2. Configuration Setup"},"920":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"920","title":"Origin Tracking"},"921":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"921","title":"File References"},"922":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"922","title":"Examples"},"923":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"923","title":"Minimal Agent State"},"924":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"924","title":"Memory File with Embedding"},"925":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"925","title":"Adopted Skill"},"926":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"926","title":"General-Purpose Signed Document"},"927":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"927","title":"Rust API"},"928":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"928","title":"Creating Agent State Documents"},"929":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"929","title":"Signing and Verification"},"93":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"93","title":"3. Task Creation"},"930":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document by JACS document ID (jacs_id) jacs_load_state Load an agent state document by JACS document ID (jacs_id) jacs_update_state Update and re-sign an agent state document by JACS document ID (jacs_id) jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"930","title":"MCP Tools"},"931":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"931","title":"MCP Example: Sign a Memory File"},"932":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"932","title":"MCP Example: Sign Any Document"},"933":{"body":"All agent state documents are stored within the JACS data directory for security MCP verify/load/update flows are jacs_id-based; direct path-only access is disabled Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"933","title":"Security Notes"},"934":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"934","title":"See Also"},"935":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"935","title":"Commitment Schema"},"936":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"936","title":"Schema"},"937":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"937","title":"Required Fields"},"938":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"938","title":"Status Lifecycle"},"939":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"939","title":"Optional Fields"},"94":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature (async)\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"94","title":"Verify Everything Works"},"940":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"940","title":"Cross-References"},"941":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"941","title":"Multi-Agent Agreements"},"942":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"942","title":"Example"},"943":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"943","title":"Rust API"},"944":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"944","title":"Versioning"},"945":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"945","title":"See Also"},"946":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"946","title":"Todo List Schema"},"947":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"947","title":"Schema"},"948":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"948","title":"Required Fields"},"949":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"949","title":"Optional Fields"},"95":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nawait reviewer.load('./reviewer.config.json'); // Create agreement between agents\nconst signedAgreement = await agent.createAgreement( signedTask, [agentDoc.jacsId, reviewerDoc.jacsId], 'Do you agree to collaborate on this content task?'\n); // Both agents sign the agreement\nconst signed1 = await agent.signAgreement(signedAgreement);\nconst signed2 = await reviewer.signAgreement(signed1); // Check agreement status\nconst status = await agent.checkAgreement(signed2);\nconsole.log('Agreement status:', JSON.parse(status)); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"95","title":"Next Steps: Multi-Agent Workflow"},"950":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"950","title":"Todo Items"},"951":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"951","title":"Required Item Fields"},"952":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"952","title":"Optional Item Fields"},"953":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"953","title":"Cross-References"},"954":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"954","title":"Item Hierarchy"},"955":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"955","title":"Example"},"956":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"956","title":"Rust API"},"957":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"957","title":"Versioning"},"958":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"958","title":"See Also"},"959":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"959","title":"Conversation Schema"},"96":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"96","title":"What You've Accomplished"},"960":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"960","title":"Schema"},"961":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"961","title":"Message Fields"},"962":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"962","title":"Required"},"963":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"963","title":"Optional"},"964":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"964","title":"Threading Model"},"965":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"965","title":"Immutability"},"966":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"966","title":"Example"},"967":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"967","title":"Rust API"},"968":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"968","title":"Cross-References"},"969":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"969","title":"See Also"},"97":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"97","title":"Key Takeaways"},"970":{"body":"This page documents the jacs.config.json schema fields. For a comprehensive configuration guide including observability setup, storage backends, zero-config quickstart, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Config File Schema","id":"970","title":"Config File Schema"},"971":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Config File Schema » Schema Location","id":"971","title":"Schema Location"},"972":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Config File Schema » Minimal Configuration","id":"972","title":"Minimal Configuration"},"973":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend jacs_keychain_backend string OS keychain backend: \"auto\", \"macos-keychain\", \"linux-secret-service\", \"disabled\"","breadcrumbs":"Config File Schema » Fields","id":"973","title":"Fields"},"974":{"body":"","breadcrumbs":"Config File Schema » Configuration Options","id":"974","title":"Configuration Options"},"975":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable or jacs keychain set (OS keychain) instead. See OS Keychain Configuration .","breadcrumbs":"Config File Schema » Key Configuration","id":"975","title":"Key Configuration"},"976":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Config File Schema » Storage Configuration","id":"976","title":"Storage Configuration"},"977":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Config File Schema » Agent Identity","id":"977","title":"Agent Identity"},"978":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Config File Schema » Schema Versions","id":"978","title":"Schema Versions"},"979":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Config File Schema » DNS Configuration","id":"979","title":"DNS Configuration"},"98":{"body":"Now that you have the basics working: Verify Signed Documents - Verify any document from CLI, Python, or Node.js -- no agent required A2A Quickstart - Make your agent discoverable by other A2A agents in minutes Framework Adapters - Add auto-signing to LangChain, FastAPI, CrewAI, or Anthropic SDK in 1-3 lines Multi-Agent Agreements - Cross-trust-boundary verification with quorum and timeout Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"98","title":"Where to Go Next"},"980":{"body":"jacs_keychain_backend OS keychain backend for password storage. Controls whether JACS looks up the private key password from the OS credential store. { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect platform default (macOS Keychain or Linux Secret Service) \"macos-keychain\" macOS Keychain \"linux-secret-service\" Linux D-Bus Secret Service \"disabled\" Never consult OS keychain (recommended for CI/headless) Override with env var: JACS_KEYCHAIN_BACKEND=disabled See OS Keychain Configuration for full details. jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Config File Schema » Security","id":"980","title":"Security"},"981":{"body":"The observability object supports logs, metrics, and tracing sub-objects. For full details on all destinations, sampling options, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Observability Fields","id":"981","title":"Observability Fields"},"982":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory JACS_KEYCHAIN_BACKEND jacs_keychain_backend","breadcrumbs":"Config File Schema » Environment Variables","id":"982","title":"Environment Variables"},"983":{"body":"Configuration Reference - Full configuration guide with examples JSON Schemas Overview - Schema architecture Observability (Rust API) - Rust observability API Observability & Monitoring Guide - Structured events, OTEL collector setup","breadcrumbs":"Config File Schema » See Also","id":"983","title":"See Also"},"984":{"body":"JACS occupies a unique position as an agent-layer attestation framework. This page compares JACS with related standards and explains when to use them together.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS Attestation vs. Other Standards","id":"984","title":"JACS Attestation vs. Other Standards"},"985":{"body":"Feature JACS in-toto / SLSA Sigstore / cosign SCITT IETF RATS / EAT Primary domain AI agent runtime Build provenance Artifact signing Transparency logs Hardware/platform attestation Identity model Decentralized (key pairs) Build system certs Keyless (OIDC) Issuer certs Platform certs Agent-native Yes No No No Partial Offline verification Yes Yes (with keys) No (requires Rekor) No (requires log) Depends Multi-agent quorum Yes (M-of-N) No No No No Evidence normalization Yes (A2A, email, JWT, custom) No No No Partial (EAT claims) Transform receipts Yes (derivation chains) Yes (build steps) No No No Probabilistic claims Yes (confidence + assurance) No No No No Post-quantum Yes (ML-DSA-87) No No No Depends Central infrastructure Not required Not required Required (Fulcio + Rekor) Required (transparency log) Depends Schema format JSON Schema + JCS in-toto layout Sigstore bundle SCITT receipt CBOR/COSE","breadcrumbs":"JACS Attestation vs. Other Standards » Comparison Table","id":"985","title":"Comparison Table"},"986":{"body":"Domain difference: in-toto and SLSA focus on build provenance -- proving that a software artifact was built by a specific builder from specific source code. JACS focuses on runtime agent actions -- proving that a specific agent performed a specific action with specific evidence. Interoperability: JACS exports attestations as DSSE (Dead Simple Signing Envelope) documents, the same format used by in-toto v1.0+. This means: A JACS attestation can include an in-toto predicate type URI SLSA verifiers can validate the DSSE envelope structure JACS and in-toto attestations can coexist in the same verification pipeline When to use both: If your workflow includes both software builds (use SLSA/in-toto for build provenance) and AI agent actions (use JACS for runtime attestation), you can link them via derivation chains.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. in-toto / SLSA","id":"986","title":"JACS vs. in-toto / SLSA"},"987":{"body":"Domain difference: Sigstore provides signing infrastructure (Fulcio CA, Rekor transparency log) and cosign is a tool for signing container images and artifacts. JACS provides its own signing with decentralized identity. Key difference: Sigstore's keyless signing relies on centralized OIDC identity providers and a public transparency log. JACS uses self-managed key pairs and does not require any centralized infrastructure. When to use both: Sigstore for container image signing in CI/CD pipelines. JACS for AI agent action signing at runtime. A planned Sigstore bundle verification adapter (N+2) would let JACS attestations reference Sigstore signatures as evidence.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. Sigstore / cosign","id":"987","title":"JACS vs. Sigstore / cosign"},"988":{"body":"Most overlap. SCITT (Supply Chain Integrity, Transparency and Trust) defines a centralized transparency service for recording signed statements about artifacts. Key difference: SCITT requires a transparency log (centralized notary). JACS is fully decentralized and offline-capable. JACS verification works without contacting any server. Complementary use: JACS signs and attests. SCITT logs. An organization could use JACS to create signed attestations and then submit them to a SCITT transparency log for auditability, getting the benefits of both decentralized creation and centralized discoverability.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. SCITT","id":"988","title":"JACS vs. SCITT"},"989":{"body":"Layer difference: RATS (Remote ATtestation procedureS) and EAT (Entity Attestation Token) focus on hardware and platform attestation -- proving that a device or execution environment is in a known-good state. JACS fills the software agent layer above hardware. Alignment opportunity: JACS claim names could align with IANA-registered EAT claim types where they overlap. A JACS attestation could reference a RATS attestation result as evidence, creating a trust chain from hardware to agent. IETF drafts of interest: draft-huang-rats-agentic-eat-cap-attest-00 -- Capability attestation for agents, directly aligned with JACS claims model draft-messous-eat-ai-00 -- EAT profile for AI agents draft-jiang-seat-dynamic-attestation-00 -- Dynamic attestation for runtime assertions","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. IETF RATS / EAT","id":"989","title":"JACS vs. IETF RATS / EAT"},"99":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"99","title":"Troubleshooting"},"990":{"body":"The Cloud Security Alliance's Agentic Trust Framework defines progressive trust levels that map directly to JACS's trust model: CSA Level JACS Equivalent Verification None No JACS No signing Basic Open Valid signature accepted Standard Verified Trust store + DNS verification Enhanced Strict Attestation-level evidence required","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. CSA Agentic Trust Framework","id":"990","title":"JACS vs. CSA Agentic Trust Framework"},"991":{"body":"Use JACS when you need: Agent identity that works without PKI/CA infrastructure Non-repudiable action logging for AI agent workflows Multi-agent authorization with quorum (M-of-N approval) Offline verification without centralized services Evidence-backed trust that goes beyond simple signing Post-quantum readiness for long-lived agent identities","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS","id":"991","title":"When to Use JACS"},"992":{"body":"Scenario JACS + ... CI/CD pipeline with AI agents JACS (agent actions) + SLSA (build provenance) Enterprise with compliance requirements JACS (signing) + SCITT (transparency log) IoT/edge with hardware attestation JACS (agent layer) + RATS/EAT (hardware layer) Container-based agent deployment JACS (runtime signing) + cosign (image signing)","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS Alongside Other Tools","id":"992","title":"When to Use JACS Alongside Other Tools"},"993":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"993","title":"Security Model"},"994":{"body":"Passwords : The private key password can be provided via JACS_PRIVATE_KEY_PASSWORD environment variable, JACS_PASSWORD_FILE, or the OS keychain (macOS Keychain / Linux Secret Service). It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : Registry verification requires HTTPS for JACS_REGISTRY_URL (legacy alias: HAI_API_URL). Localhost HTTP is allowed for local testing only. No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0+)","id":"994","title":"Security Model (v0.6.0+)"},"995":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"995","title":"Core Security Principles"},"996":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"996","title":"1. Cryptographic Identity"},"997":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"997","title":"2. Document Integrity"},"998":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"998","title":"3. Non-Repudiation"},"999":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"999","title":"Security Audit (audit())"}},"length":1657,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.0},"1245":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.0},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.0}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.0}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.0},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.0},"1246":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.0},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.0},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.0},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":71,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1262":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":2.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.4142135623730951},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.0},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.449489742783178},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.0},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"241":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.0},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":62,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.0},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.4142135623730951}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":627,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1009":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"110":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.0},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.449489742783178},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":1.7320508075688772},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.0},"1282":{"tf":1.7320508075688772},"1283":{"tf":2.23606797749979},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.0},"1412":{"tf":2.8284271247461903},"1413":{"tf":3.3166247903554},"1414":{"tf":2.6457513110645907},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":2.0},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"211":{"tf":2.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":2.23606797749979},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.6457513110645907},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.449489742783178},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.4142135623730951},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":1.7320508075688772},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":1.7320508075688772},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":2.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.6457513110645907},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"81":{"tf":2.0},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.0},"834":{"tf":1.7320508075688772},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"854":{"tf":2.0},"855":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.0},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"912":{"tf":2.449489742783178},"914":{"tf":1.7320508075688772},"915":{"tf":1.4142135623730951},"916":{"tf":2.449489742783178},"918":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.7320508075688772},"921":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"931":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.4142135623730951},"946":{"tf":1.0},"95":{"tf":4.242640687119285},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.4142135623730951},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.4142135623730951},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":150,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":2.0},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.449489742783178},"1219":{"tf":2.0},"1220":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.0},"1408":{"tf":2.6457513110645907},"1409":{"tf":3.605551275463989},"1410":{"tf":3.3166247903554},"1440":{"tf":1.0},"1441":{"tf":2.23606797749979},"1442":{"tf":2.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":2.23606797749979},"1465":{"tf":2.0},"1466":{"tf":1.0},"1501":{"tf":3.1622776601683795},"1565":{"tf":1.0},"1566":{"tf":2.23606797749979},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.8284271247461903},"210":{"tf":2.6457513110645907},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.7320508075688772},"306":{"tf":2.0},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"722":{"tf":1.0},"723":{"tf":1.4142135623730951},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.0},"869":{"tf":1.0},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":45,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1391":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"29":{"tf":1.0},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":104,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1111":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1121":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":2.0},"1131":{"tf":1.0},"1133":{"tf":2.23606797749979},"1136":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":2.23606797749979},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.449489742783178},"1554":{"tf":2.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.0},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.7320508075688772},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.0},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":1.7320508075688772},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"1196":{"tf":1.4142135623730951},"120":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"318":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.4142135623730951},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":103,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.0},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"184":{"tf":1.0},"301":{"tf":1.4142135623730951},"32":{"tf":1.0},"334":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.4142135623730951},"397":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.0},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"592":{"tf":1.0},"608":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"674":{"tf":1.0},"683":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.7320508075688772},"794":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1372":{"tf":1.0},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.0},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.0},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0}}}}}},"df":63,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":2.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.0},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.4142135623730951},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.449489742783178},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.0},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.4142135623730951},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":79,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.4142135623730951},"1317":{"tf":1.7320508075688772},"1318":{"tf":1.0},"132":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":2.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":2.0},"1345":{"tf":1.7320508075688772},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":2.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.7320508075688772},"1598":{"tf":2.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.8284271247461903},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1614":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951},"989":{"tf":3.0},"990":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.0}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.0},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.0},"686":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.23606797749979},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.0},"1618":{"tf":1.0},"175":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.23606797749979},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.23606797749979},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.0},"646":{"tf":2.0},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.0},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":2.449489742783178},"1571":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1636":{"tf":1.0},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":51,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.0},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":44,"docs":{"1156":{"tf":1.0},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1461":{"tf":1.0},"1503":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1611":{"tf":1.0},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.0},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.0},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.4142135623730951},"503":{"tf":1.0},"665":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":1.7320508075688772},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.0}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.0},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"130":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.0},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.4142135623730951},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":23,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.449489742783178},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":31,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.0},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.0},"875":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.0},"1071":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.0},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.0},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1249":{"tf":1.0},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.0},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.0},"332":{"tf":1.0},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":1.7320508075688772},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.4142135623730951},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1482":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1614":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"207":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.0},"1459":{"tf":1.0},"1462":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.0},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":46,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.0},"1277":{"tf":1.0},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1629":{"tf":1.0},"212":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":1.7320508075688772},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":40,"docs":{"1062":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":1.7320508075688772},"1483":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":23,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.0},"943":{"tf":2.6457513110645907},"944":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"1502":{"tf":1.0},"1506":{"tf":1.0},"1523":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"380":{"tf":1.0},"429":{"tf":1.0},"436":{"tf":1.0},"510":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"671":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.0},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.0},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":26,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"874":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.0},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.0},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"125":{"tf":1.0},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.4142135623730951},"552":{"tf":1.0},"564":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":1.7320508075688772},"659":{"tf":2.0},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.0},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":109,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.0},"982":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":180,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":2.0},"1531":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1580":{"tf":1.4142135623730951},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"820":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.23606797749979},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1247":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"397":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.0},"1251":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.4142135623730951},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.0},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"767":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.0},"1229":{"tf":2.23606797749979},"1230":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":293,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":3.872983346207417},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.449489742783178},"1410":{"tf":2.449489742783178},"1412":{"tf":2.8284271247461903},"1416":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":3.872983346207417},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":3.1622776601683795},"200":{"tf":2.0},"202":{"tf":3.1622776601683795},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"304":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.0},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.0},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.0},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":102,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.0},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.4142135623730951},"648":{"tf":1.0},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.0},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":2.0},"1169":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"372":{"tf":1.0},"439":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"825":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.7320508075688772},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.0}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":15,"docs":{"1124":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.7320508075688772},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.0},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":29,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.4142135623730951},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.4142135623730951},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.0},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.0},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"653":{"tf":1.0},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.0},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":6,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":97,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":2.8284271247461903},"1199":{"tf":1.7320508075688772},"120":{"tf":2.8284271247461903},"1200":{"tf":2.449489742783178},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1203":{"tf":2.8284271247461903},"1204":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1557":{"tf":1.7320508075688772},"1558":{"tf":2.23606797749979},"1559":{"tf":2.0},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.6457513110645907},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.0},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":2.0},"309":{"tf":2.449489742783178},"311":{"tf":2.449489742783178},"312":{"tf":2.6457513110645907},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":3.3166247903554},"320":{"tf":3.4641016151377544},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":2.0},"332":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.0},"979":{"tf":2.0},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.23606797749979},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":473,"docs":{"1004":{"tf":2.0},"1005":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.0},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"1160":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.23606797749979},"121":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.0},"1218":{"tf":1.0},"122":{"tf":1.0},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":3.605551275463989},"1404":{"tf":3.3166247903554},"1405":{"tf":2.6457513110645907},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.23606797749979},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1432":{"tf":2.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":2.0},"1456":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":3.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":1.7320508075688772},"1497":{"tf":4.0},"1498":{"tf":3.0},"1499":{"tf":3.1622776601683795},"1500":{"tf":3.1622776601683795},"1501":{"tf":3.1622776601683795},"1503":{"tf":2.8284271247461903},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.0},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.4142135623730951},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":3.3166247903554},"203":{"tf":2.6457513110645907},"204":{"tf":3.1622776601683795},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.0},"278":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.4142135623730951},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.23606797749979},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":2.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":2.0},"74":{"tf":1.0},"740":{"tf":1.4142135623730951},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":2.0},"876":{"tf":1.0},"877":{"tf":2.449489742783178},"878":{"tf":1.0},"879":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":2.0},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.4142135623730951},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":55,"docs":{"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.449489742783178}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.0},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.0},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1383":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.0},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.0},"452":{"tf":1.7320508075688772},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.4142135623730951},"254":{"tf":1.0},"262":{"tf":1.0},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.4142135623730951},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.4142135623730951},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":124,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":3.605551275463989},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":2.449489742783178},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.7320508075688772},"1572":{"tf":1.7320508075688772},"1573":{"tf":1.4142135623730951},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"500":{"tf":2.0},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.4142135623730951},"625":{"tf":2.23606797749979},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":2.6457513110645907},"798":{"tf":1.7320508075688772},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.0},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":2.449489742783178},"1324":{"tf":2.0},"1325":{"tf":2.449489742783178},"1326":{"tf":2.23606797749979},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.23606797749979},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":2.23606797749979},"1336":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.8284271247461903},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":112,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1082":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"146":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1478":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1536":{"tf":1.0},"155":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"185":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.0},"435":{"tf":1.7320508075688772},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"581":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":1.7320508075688772},"699":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.4142135623730951},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.4142135623730951},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.23606797749979},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":40,"docs":{"1192":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1429":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":2.23606797749979},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"539":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":2.23606797749979},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.0},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.0},"729":{"tf":1.0},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.449489742783178},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.23606797749979},"262":{"tf":2.23606797749979},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"159":{"tf":1.0},"1594":{"tf":1.0},"160":{"tf":1.0},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1210":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.4142135623730951},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.0},"1332":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.0},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.0},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.0},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":1.7320508075688772},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":2.0},"890":{"tf":1.7320508075688772},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"945":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"981":{"tf":1.0},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":204,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":2.0},"1511":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"642":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.23606797749979},"871":{"tf":2.0},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.0}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.4142135623730951},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.0},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"369":{"tf":1.4142135623730951},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1127":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.0},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.23606797749979},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1577":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.0},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":35,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.0},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1334":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.0},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.4142135623730951},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.0},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.4142135623730951},"1240":{"tf":2.6457513110645907},"1241":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.0},"515":{"tf":1.0},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.0},"1506":{"tf":1.0},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.0},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.0},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.0},"1535":{"tf":1.0},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":33,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1204":{"tf":1.0},"1260":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.0},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.0},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":1.7320508075688772},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.4142135623730951},"673":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":1.7320508075688772},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.23606797749979},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":2.6457513110645907},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.0},"800":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.4142135623730951},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.0},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":40,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.0},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.0},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.0},"1650":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"617":{"tf":1.0},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.4142135623730951},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.4142135623730951},"451":{"tf":1.0},"652":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":134,"docs":{"1001":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.4142135623730951},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.0},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.0},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":13,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.0},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.0},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.0},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":80,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"165":{"tf":1.0},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.7320508075688772},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"504":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"527":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"633":{"tf":1.7320508075688772},"634":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"518":{"tf":1.0},"520":{"tf":1.4142135623730951},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.4142135623730951},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":109,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1327":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.0},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.0}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1561":{"tf":1.7320508075688772},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.0},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":2.449489742783178},"953":{"tf":1.7320508075688772},"954":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":588,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.449489742783178},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.4142135623730951},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.23606797749979},"1256":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.449489742783178},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.0},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1485":{"tf":2.449489742783178},"1486":{"tf":2.6457513110645907},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.7320508075688772},"1489":{"tf":1.7320508075688772},"149":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1493":{"tf":1.7320508075688772},"1495":{"tf":1.7320508075688772},"1496":{"tf":1.0},"1497":{"tf":3.0},"1498":{"tf":2.449489742783178},"1499":{"tf":2.23606797749979},"1500":{"tf":2.0},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1599":{"tf":1.0},"16":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.0},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.7320508075688772},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"51":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":2.449489742783178},"987":{"tf":2.23606797749979},"988":{"tf":2.23606797749979},"989":{"tf":2.23606797749979},"990":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951},"992":{"tf":2.449489742783178},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.4142135623730951},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.0},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.0},"803":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.7320508075688772}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":170,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.0},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.3166247903554},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.0},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.58257569495584},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.0},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":2.449489742783178},"1008":{"tf":2.6457513110645907},"1009":{"tf":2.23606797749979},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.449489742783178},"1065":{"tf":1.0},"1066":{"tf":2.0},"1067":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":2.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":2.23606797749979},"1075":{"tf":1.7320508075688772},"1076":{"tf":1.0},"1077":{"tf":2.23606797749979},"1078":{"tf":1.7320508075688772},"1079":{"tf":3.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":2.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.4142135623730951},"1089":{"tf":2.0},"1090":{"tf":2.0},"1091":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.7320508075688772},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.0},"1127":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":1.7320508075688772},"125":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":1.7320508075688772},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":1.7320508075688772},"1546":{"tf":2.449489742783178},"1547":{"tf":2.449489742783178},"1548":{"tf":1.7320508075688772},"1549":{"tf":2.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":1.7320508075688772},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"973":{"tf":1.7320508075688772},"975":{"tf":2.449489742783178},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.0},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":13,"docs":{"1393":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"554":{"tf":2.0},"560":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":2.6457513110645907},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":7,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1478":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"512":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"758":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.4142135623730951},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"1360":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":2.23606797749979},"141":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.0},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.0},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.0},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"957":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":2.0},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.4142135623730951},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.4142135623730951},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"871":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.0},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.605551275463989},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.449489742783178},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.23606797749979},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.4142135623730951},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.0},"1147":{"tf":1.0},"1487":{"tf":1.0},"1533":{"tf":1.4142135623730951},"910":{"tf":1.0}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"69":{"tf":1.0},"737":{"tf":1.0},"741":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.0},"218":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.0},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":96,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":2.0},"1227":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":2.6457513110645907},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"1252":{"tf":2.0},"1253":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.7320508075688772},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":2.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":2.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.0},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":2.0},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.23606797749979},"749":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.23606797749979},"794":{"tf":2.449489742783178},"80":{"tf":2.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.0},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.0},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.4142135623730951},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.0},"928":{"tf":1.7320508075688772},"931":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.0},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.4142135623730951},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.0},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.1622776601683795},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.7320508075688772},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.0},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.0},"571":{"tf":1.0},"574":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":32,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.7320508075688772},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1639":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.4142135623730951},"1654":{"tf":1.0},"1655":{"tf":1.0},"551":{"tf":1.4142135623730951},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.0},"1329":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"972":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.0},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":4.0},"1227":{"tf":2.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":22,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"1000":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1371":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":45,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.0},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.0},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.0},"1470":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.0},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":1.7320508075688772},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"1435":{"tf":1.7320508075688772},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"910":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.0},"1396":{"tf":1.0},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"1450":{"tf":1.4142135623730951},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1174":{"tf":1.0},"1188":{"tf":1.0},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.0},"1640":{"tf":1.0},"177":{"tf":1.0},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.0},"1589":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1377":{"tf":1.0},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.4142135623730951},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1604":{"tf":1.0},"1606":{"tf":1.0},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"588":{"tf":1.4142135623730951},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"836":{"tf":1.0},"850":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.0},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"259":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.0},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1181":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.4142135623730951},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.4142135623730951},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":1.7320508075688772},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.358898943540674},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.0},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.0},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1270":{"tf":1.0},"1272":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.4142135623730951},"511":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1478":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.0},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.7320508075688772},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.4142135623730951},"660":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.0},"1477":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.0}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1241":{"tf":1.0},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.0},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":1.7320508075688772},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.0},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.0},"1064":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1458":{"tf":1.0},"1469":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.4142135623730951},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.4142135623730951},"735":{"tf":1.0},"744":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.4142135623730951},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.4142135623730951},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1245":{"tf":1.0},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.4142135623730951},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.23606797749979},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.0},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"1475":{"tf":1.7320508075688772},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":2.0},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.0},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"1062":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":26,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.0},"13":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.449489742783178},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.23606797749979},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.0},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.4142135623730951},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.0},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.23606797749979},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.4142135623730951},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.4142135623730951},"1066":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.0},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":85,"docs":{"105":{"tf":1.0},"1060":{"tf":1.0},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1504":{"tf":1.0},"1512":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.0},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"751":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.0},"1260":{"tf":1.0},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.0},"900":{"tf":1.0},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.0},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.0},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.0},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.0},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.4142135623730951},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.0},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.0},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.0},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"935":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.0},"289":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":119,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.4142135623730951},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1072":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1079":{"tf":2.23606797749979},"1080":{"tf":2.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1095":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":2.0},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.0},"1144":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.4142135623730951},"183":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.0},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":61,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.7320508075688772},"34":{"tf":1.0},"367":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.0},"801":{"tf":1.0},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"1008":{"tf":1.0},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":149,"docs":{"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.7320508075688772},"1158":{"tf":1.0},"1159":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":2.0},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.0},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.23606797749979},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.7320508075688772},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"830":{"tf":3.0},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":2.449489742783178},"842":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":2.0},"858":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"886":{"tf":2.23606797749979},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.0},"911":{"tf":2.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":2.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.7320508075688772},"926":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"945":{"tf":1.7320508075688772},"946":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772},"970":{"tf":1.4142135623730951},"971":{"tf":1.0},"972":{"tf":1.0},"978":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.23606797749979},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.0},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.0},"1391":{"tf":1.0},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.0},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":130,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.0},"1013":{"tf":1.0},"1019":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1199":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.4142135623730951},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.0},"140":{"tf":1.7320508075688772},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"605":{"tf":1.0},"626":{"tf":1.0},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1112":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"1051":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":1.7320508075688772},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":10,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":87,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.449489742783178},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.0},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"842":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.0},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.4142135623730951},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.4142135623730951},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.0},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.0},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.0},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.449489742783178},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.0},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.7320508075688772},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.7320508075688772},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.0},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":437,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.23606797749979},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.23606797749979},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1125":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1206":{"tf":2.23606797749979},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1221":{"tf":2.23606797749979},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1316":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.0},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":2.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":2.0},"1394":{"tf":2.0},"1395":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":2.8284271247461903},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":1.7320508075688772},"1567":{"tf":2.0},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.0},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.0},"548":{"tf":1.7320508075688772},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":1.0},"724":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.23606797749979}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"1621":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.449489742783178},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.0},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.0},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.0},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.0},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.7320508075688772},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":1.4142135623730951},"990":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":55,"docs":{"1":{"tf":1.0},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"760":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.4142135623730951},"910":{"tf":1.7320508075688772},"938":{"tf":1.0},"967":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":37,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.7320508075688772},"912":{"tf":2.0},"914":{"tf":2.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"933":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.0},"163":{"tf":1.4142135623730951},"1635":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":60,"docs":{"1045":{"tf":1.0},"111":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":2.23606797749979},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.0},"1571":{"tf":2.0},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.0},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":2.8284271247461903},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.4142135623730951},"646":{"tf":1.0},"647":{"tf":1.0},"684":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.7320508075688772},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":2.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1487":{"tf":3.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.0},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1389":{"tf":2.23606797749979},"1391":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":1.7320508075688772},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.0},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.0},"1039":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1126":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.0},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.0},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.0},"1419":{"tf":1.0},"1619":{"tf":1.0},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.0},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.0},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":91,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":2.6457513110645907},"1494":{"tf":1.0},"1495":{"tf":2.0},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":3.4641016151377544},"25":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":2.0},"889":{"tf":1.0},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.7320508075688772},"896":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"93":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":78,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.0},"1213":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1215":{"tf":3.3166247903554},"1216":{"tf":1.0},"1217":{"tf":2.449489742783178},"1218":{"tf":2.0},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1223":{"tf":2.23606797749979},"1224":{"tf":1.7320508075688772},"1226":{"tf":2.6457513110645907},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1233":{"tf":2.449489742783178},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1236":{"tf":3.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1239":{"tf":1.0},"1241":{"tf":1.0},"1243":{"tf":2.0},"1244":{"tf":2.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1315":{"tf":1.0},"1329":{"tf":2.0},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":2.449489742783178},"1471":{"tf":1.0},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":1.7320508075688772},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.0},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"364":{"tf":1.7320508075688772},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772},"801":{"tf":2.8284271247461903},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":1.7320508075688772},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1559":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":17,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.0},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":74,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1223":{"tf":1.0},"1240":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1347":{"tf":1.0},"1349":{"tf":1.7320508075688772},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":1.7320508075688772},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.449489742783178},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":1.7320508075688772},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.449489742783178}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.4641016151377544},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.7320508075688772},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.4142135623730951},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1227":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.0},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":1.7320508075688772},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.0},"1184":{"tf":2.23606797749979},"1185":{"tf":2.23606797749979},"1186":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1196":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1360":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"1385":{"tf":1.0},"139":{"tf":2.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.23606797749979},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.0},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1313":{"tf":1.4142135623730951},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.0},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.0},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.0},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":1.7320508075688772},"270":{"tf":1.0},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.0},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1498":{"tf":2.6457513110645907},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":2.0},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"728":{"tf":2.0},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.23606797749979},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":34,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":377,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.23606797749979},"1305":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.4142135623730951},"397":{"tf":1.0},"40":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"528":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.0},"562":{"tf":1.0},"614":{"tf":1.0},"636":{"tf":1.0},"733":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":1.7320508075688772},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.0},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.0},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"1391":{"tf":1.0},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":203,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.0},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1419":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.0},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.0},"318":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.4142135623730951},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":349,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":1.4142135623730951},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.3166247903554},"1074":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"111":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1404":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.3166247903554},"1493":{"tf":1.0},"1499":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.0},"1611":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.6457513110645907},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.0},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":1.7320508075688772},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.23606797749979},"878":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":1.7320508075688772},"1070":{"tf":2.0},"1071":{"tf":1.7320508075688772},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.0},"1084":{"tf":2.23606797749979},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.23606797749979},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.0},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.7320508075688772},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.23606797749979},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.0},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"957":{"tf":1.7320508075688772},"977":{"tf":1.0},"978":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":22,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.0},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"592":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.4142135623730951},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":1.7320508075688772},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.0},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":51,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":75,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1027":{"tf":1.0},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.0},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":20,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.0},"1329":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.4142135623730951},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.4142135623730951},"436":{"tf":1.0},"508":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.4142135623730951}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.7320508075688772}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.4142135623730951},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":90,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":2.0},"1262":{"tf":2.23606797749979},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":2.449489742783178},"1274":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.7320508075688772},"1279":{"tf":2.0},"128":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.7320508075688772},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.449489742783178},"1324":{"tf":1.0},"1353":{"tf":2.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":2.0},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"137":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":2.0},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.7320508075688772},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":2.0},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":62,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":2.23606797749979},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.0},"1329":{"tf":2.23606797749979},"1330":{"tf":2.8284271247461903},"1331":{"tf":1.0},"1332":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.7320508075688772},"755":{"tf":2.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.4142135623730951},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"241":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.4142135623730951},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.7320508075688772},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.4142135623730951},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":62,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.7320508075688772},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.7320508075688772}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":649,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":2.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1009":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":2.0},"1032":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.4142135623730951},"1094":{"tf":1.0},"110":{"tf":1.7320508075688772},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.4142135623730951},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"1193":{"tf":2.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":2.0},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":2.0},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":2.0},"1283":{"tf":2.449489742783178},"1284":{"tf":1.7320508075688772},"1285":{"tf":2.0},"1286":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.7320508075688772},"1290":{"tf":2.449489742783178},"1291":{"tf":2.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1315":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1412":{"tf":3.0},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.4142135623730951},"1493":{"tf":2.23606797749979},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":2.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":2.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.6457513110645907},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":2.23606797749979},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":1.7320508075688772},"214":{"tf":2.23606797749979},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.449489742783178},"310":{"tf":1.4142135623730951},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"319":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951},"321":{"tf":2.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":2.6457513110645907},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.7320508075688772},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.4142135623730951},"705":{"tf":2.0},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"728":{"tf":2.23606797749979},"729":{"tf":1.4142135623730951},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.6457513110645907},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.4142135623730951},"807":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":2.0},"836":{"tf":2.0},"837":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"839":{"tf":2.0},"840":{"tf":2.23606797749979},"841":{"tf":1.7320508075688772},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":2.0},"849":{"tf":2.0},"850":{"tf":2.0},"851":{"tf":1.7320508075688772},"852":{"tf":2.0},"853":{"tf":1.4142135623730951},"854":{"tf":2.23606797749979},"855":{"tf":2.6457513110645907},"856":{"tf":1.7320508075688772},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.7320508075688772},"91":{"tf":2.0},"911":{"tf":1.4142135623730951},"912":{"tf":2.8284271247461903},"913":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.7320508075688772},"916":{"tf":2.6457513110645907},"917":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":2.0},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"95":{"tf":4.358898943540674},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.7320508075688772},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":154,"docs":{"1":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"1035":{"tf":1.7320508075688772},"1036":{"tf":1.7320508075688772},"1037":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.6457513110645907},"1219":{"tf":2.23606797749979},"1220":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.4142135623730951},"1408":{"tf":2.8284271247461903},"1409":{"tf":3.7416573867739413},"1410":{"tf":3.4641016151377544},"1440":{"tf":1.4142135623730951},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":1.4142135623730951},"1463":{"tf":1.4142135623730951},"1464":{"tf":2.449489742783178},"1465":{"tf":2.23606797749979},"1466":{"tf":1.4142135623730951},"1501":{"tf":3.3166247903554},"1565":{"tf":1.4142135623730951},"1566":{"tf":2.449489742783178},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":3.0},"210":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":2.449489742783178},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.7320508075688772},"292":{"tf":2.23606797749979},"293":{"tf":2.0},"294":{"tf":3.0},"295":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":2.449489742783178},"305":{"tf":2.0},"306":{"tf":2.23606797749979},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":2.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":2.449489742783178},"722":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"724":{"tf":2.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.23606797749979},"869":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":52,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1391":{"tf":2.0},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.449489742783178},"522":{"tf":1.0},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":2.0},"526":{"tf":2.0},"527":{"tf":2.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.7320508075688772},"531":{"tf":1.0},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":2.0}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":127,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.7320508075688772},"1043":{"tf":1.4142135623730951},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":2.0},"1098":{"tf":2.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1125":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":2.449489742783178},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.0},"1133":{"tf":2.6457513110645907},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":2.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":2.6457513110645907},"1142":{"tf":2.0},"1143":{"tf":2.0},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.6457513110645907},"1554":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":2.0},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.4142135623730951},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.7320508075688772},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.23606797749979},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":2.0},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1350":{"tf":1.7320508075688772},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":283,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"184":{"tf":1.0},"301":{"tf":1.7320508075688772},"32":{"tf":1.0},"334":{"tf":1.7320508075688772},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"436":{"tf":2.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.4142135623730951},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":1.0},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.7320508075688772},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":2.23606797749979},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":2.0},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.4142135623730951},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.7320508075688772},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951}}}}}},"df":66,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.23606797749979},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":2.23606797749979},"1300":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.6457513110645907},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.23606797749979},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.7320508075688772},"712":{"tf":1.7320508075688772},"718":{"tf":1.7320508075688772},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.7320508075688772},"880":{"tf":1.7320508075688772},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.7320508075688772},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":113,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.7320508075688772},"1311":{"tf":1.7320508075688772},"1312":{"tf":1.0},"1313":{"tf":2.23606797749979},"1314":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":2.23606797749979},"1318":{"tf":1.7320508075688772},"1319":{"tf":1.0},"132":{"tf":2.449489742783178},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1323":{"tf":2.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":2.449489742783178},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1341":{"tf":1.0},"1342":{"tf":2.23606797749979},"1343":{"tf":2.449489742783178},"1344":{"tf":1.0},"1345":{"tf":2.23606797749979},"1346":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.23606797749979},"1352":{"tf":1.7320508075688772},"1353":{"tf":2.0},"1354":{"tf":1.7320508075688772},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1360":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.4142135623730951},"1596":{"tf":2.0},"1597":{"tf":1.0},"1598":{"tf":2.449489742783178},"1599":{"tf":2.0},"1600":{"tf":1.4142135623730951},"1601":{"tf":2.0},"1602":{"tf":3.0},"1603":{"tf":2.0},"1604":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":2.8284271247461903},"1608":{"tf":1.0},"1609":{"tf":1.7320508075688772},"1610":{"tf":2.0},"1611":{"tf":2.0},"1612":{"tf":2.23606797749979},"1613":{"tf":1.0},"1614":{"tf":2.0},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"989":{"tf":3.1622776601683795},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.4142135623730951}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.7320508075688772},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"543":{"tf":1.0},"546":{"tf":2.23606797749979},"555":{"tf":1.0},"557":{"tf":2.23606797749979},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.449489742783178},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.4142135623730951},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1618":{"tf":1.0},"175":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.6457513110645907},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.449489742783178},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.23606797749979},"646":{"tf":2.23606797749979},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":37,"docs":{"1144":{"tf":1.7320508075688772},"1145":{"tf":2.23606797749979},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":2.0},"1533":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":2.6457513110645907},"1571":{"tf":1.7320508075688772},"1573":{"tf":1.0},"1636":{"tf":1.4142135623730951},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":75,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":120,"docs":{"1156":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":2.0},"1469":{"tf":1.4142135623730951},"1470":{"tf":2.0},"1611":{"tf":1.4142135623730951},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.4142135623730951},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1615":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.7320508075688772},"503":{"tf":1.0},"665":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.0},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.4142135623730951},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.4142135623730951},"130":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":2.0},"182":{"tf":2.0},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.7320508075688772},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":25,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1262":{"tf":1.0},"1264":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.6457513110645907},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":38,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"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},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.4142135623730951},"875":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.4142135623730951},"1071":{"tf":2.0},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"1294":{"tf":2.0},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1340":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.4142135623730951},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.4142135623730951},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.7320508075688772},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.4142135623730951},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":2.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.4142135623730951},"1022":{"tf":2.0},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.4142135623730951},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.7320508075688772},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.7320508075688772},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":149,"docs":{"10":{"tf":1.7320508075688772},"1008":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":2.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"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.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.1622776601683795},"1459":{"tf":1.4142135623730951},"1462":{"tf":2.449489742783178},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":2.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.23606797749979},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":89,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1539":{"tf":2.0},"1540":{"tf":2.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1612":{"tf":1.7320508075688772},"1629":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.23606797749979},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":2.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.4142135623730951},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":61,"docs":{"1062":{"tf":1.4142135623730951},"107":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1495":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":2.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":24,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.449489742783178},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"943":{"tf":2.8284271247461903},"944":{"tf":1.4142135623730951},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1523":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.4142135623730951},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"380":{"tf":1.0},"429":{"tf":1.4142135623730951},"436":{"tf":1.0},"510":{"tf":1.4142135623730951},"626":{"tf":1.0},"662":{"tf":1.4142135623730951},"671":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"808":{"tf":1.4142135623730951},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951}}}}}}},"t":{"df":32,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.7320508075688772},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"665":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.4142135623730951},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"874":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.7320508075688772},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.4142135623730951},"812":{"tf":1.0},"816":{"tf":1.4142135623730951},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.7320508075688772},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.4142135623730951},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.23606797749979},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":2.0},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":36,"docs":{"125":{"tf":1.4142135623730951},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"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.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":2.0},"659":{"tf":2.23606797749979},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":120,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":2.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":2.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.4142135623730951},"983":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":188,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1114":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.7320508075688772},"1518":{"tf":2.23606797749979},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1521":{"tf":2.449489742783178},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":2.449489742783178},"1531":{"tf":2.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1536":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"1541":{"tf":1.4142135623730951},"1542":{"tf":2.23606797749979},"1543":{"tf":2.0},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.7320508075688772},"1580":{"tf":1.7320508075688772},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.4142135623730951},"250":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.4142135623730951},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.7320508075688772},"820":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.449489742783178},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.4142135623730951},"1054":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1132":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1331":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"397":{"tf":1.0},"584":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.7320508075688772},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"2":{"tf":1.0},"299":{"tf":1.4142135623730951},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.7320508075688772},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"840":{"tf":1.0},"844":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.7320508075688772},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.4142135623730951},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":20,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.449489742783178},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"966":{"tf":1.0},"967":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":61,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":2.0},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"593":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"636":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"669":{"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.4142135623730951},"751":{"tf":1.0},"767":{"tf":1.4142135623730951},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.7320508075688772},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":2.449489742783178},"1230":{"tf":2.0},"1231":{"tf":2.23606797749979},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":332,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":4.0},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.6457513110645907},"1410":{"tf":2.449489742783178},"1412":{"tf":3.0},"1416":{"tf":2.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":2.23606797749979},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":4.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.7320508075688772},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.7320508075688772},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":2.0},"195":{"tf":3.3166247903554},"200":{"tf":2.23606797749979},"202":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"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.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":2.0},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"499":{"tf":1.7320508075688772},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"723":{"tf":1.4142135623730951},"735":{"tf":1.7320508075688772},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.7320508075688772},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.4142135623730951},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.4142135623730951},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.4142135623730951},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":2.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":140,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":2.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.7320508075688772},"648":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.4142135623730951},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":108,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1158":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":2.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":2.0},"361":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"439":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.23606797749979},"822":{"tf":1.0},"825":{"tf":1.7320508075688772},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.4142135623730951},"1647":{"tf":2.0},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":2.0},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":25,"docs":{"1124":{"tf":1.4142135623730951},"124":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.4142135623730951},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"371":{"tf":2.0},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":33,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.7320508075688772},"1628":{"tf":2.0},"1629":{"tf":1.7320508075688772},"1630":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":2.0},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.4142135623730951},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":2.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.23606797749979},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":11,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":101,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.4142135623730951},"1087":{"tf":2.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":3.0},"1199":{"tf":2.0},"120":{"tf":3.0},"1200":{"tf":2.6457513110645907},"1201":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":3.0},"1204":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"1413":{"tf":3.4641016151377544},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":2.449489742783178},"1559":{"tf":2.23606797749979},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":2.23606797749979},"309":{"tf":2.8284271247461903},"310":{"tf":1.0},"311":{"tf":2.8284271247461903},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.7320508075688772},"318":{"tf":1.7320508075688772},"319":{"tf":3.605551275463989},"320":{"tf":3.7416573867739413},"321":{"tf":1.4142135623730951},"322":{"tf":2.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.23606797749979},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":2.0},"856":{"tf":1.0},"979":{"tf":2.23606797749979},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.449489742783178},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.449489742783178},"323":{"tf":2.449489742783178},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.23606797749979},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":499,"docs":{"1004":{"tf":2.23606797749979},"1005":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.449489742783178},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.7320508075688772},"1074":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"109":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"110":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":2.0},"1110":{"tf":1.0},"1115":{"tf":1.0},"112":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.7320508075688772},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"1160":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"119":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.23606797749979},"1218":{"tf":1.0},"122":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.23606797749979},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.7416573867739413},"1404":{"tf":3.4641016151377544},"1405":{"tf":2.8284271247461903},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.449489742783178},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":2.0},"1432":{"tf":2.23606797749979},"1433":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1455":{"tf":2.23606797749979},"1456":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1468":{"tf":2.449489742783178},"1470":{"tf":3.1622776601683795},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":4.123105625617661},"1498":{"tf":3.1622776601683795},"1499":{"tf":3.3166247903554},"1500":{"tf":3.3166247903554},"1501":{"tf":3.1622776601683795},"1503":{"tf":3.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.4142135623730951},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.23606797749979},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.7320508075688772},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":3.4641016151377544},"203":{"tf":2.8284271247461903},"204":{"tf":3.3166247903554},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"247":{"tf":2.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"25":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"263":{"tf":1.7320508075688772},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.6457513110645907},"277":{"tf":2.449489742783178},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"346":{"tf":1.7320508075688772},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.7320508075688772},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.449489742783178},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":2.0},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":2.23606797749979},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":2.23606797749979},"74":{"tf":1.0},"740":{"tf":1.7320508075688772},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.449489742783178},"858":{"tf":1.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":2.23606797749979},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":2.8284271247461903},"878":{"tf":1.7320508075688772},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"881":{"tf":1.4142135623730951},"882":{"tf":2.23606797749979},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.4142135623730951},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.7320508075688772},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.7320508075688772},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":55,"docs":{"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.6457513110645907}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":2.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":2.0},"1380":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1383":{"tf":1.7320508075688772},"1384":{"tf":2.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.23606797749979},"452":{"tf":2.0},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.7320508075688772},"254":{"tf":1.0},"262":{"tf":1.4142135623730951},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":2.0},"873":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.7320508075688772},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1366":{"tf":2.0},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":2.0},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.23606797749979},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":130,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1447":{"tf":3.7416573867739413},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.6457513110645907},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":2.0},"1540":{"tf":1.7320508075688772},"1541":{"tf":1.7320508075688772},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1544":{"tf":1.4142135623730951},"1545":{"tf":1.7320508075688772},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.4142135623730951},"1549":{"tf":1.4142135623730951},"1550":{"tf":1.7320508075688772},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.4142135623730951},"1555":{"tf":1.7320508075688772},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.4142135623730951},"1560":{"tf":1.7320508075688772},"1561":{"tf":1.7320508075688772},"1562":{"tf":1.4142135623730951},"1563":{"tf":1.4142135623730951},"1564":{"tf":1.4142135623730951},"1565":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.4142135623730951},"1569":{"tf":1.4142135623730951},"1570":{"tf":1.7320508075688772},"1571":{"tf":2.23606797749979},"1572":{"tf":2.23606797749979},"1573":{"tf":2.0},"1574":{"tf":1.7320508075688772},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":2.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"500":{"tf":2.23606797749979},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.7320508075688772},"625":{"tf":2.449489742783178},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":2.8284271247461903},"798":{"tf":2.0},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":2.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1370":{"tf":1.7320508075688772},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":2.6457513110645907},"1324":{"tf":2.449489742783178},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1327":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1329":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":2.449489742783178},"1336":{"tf":2.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":3.0},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":2.0},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":188,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1173":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":2.23606797749979},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1536":{"tf":1.4142135623730951},"155":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"28":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"435":{"tf":2.0},"462":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"54":{"tf":1.0},"581":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":2.0},"699":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"75":{"tf":1.0},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":1.4142135623730951},"916":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.7320508075688772},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.7320508075688772},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":24,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.4142135623730951},"503":{"tf":1.0},"516":{"tf":1.7320508075688772},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.4142135623730951},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.449489742783178},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"1366":{"tf":2.0},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.4142135623730951},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":50,"docs":{"1192":{"tf":1.7320508075688772},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.449489742783178},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.4142135623730951},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":2.0},"542":{"tf":2.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.7320508075688772},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"570":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.449489742783178},"262":{"tf":2.449489742783178},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.7320508075688772},"1556":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"1594":{"tf":1.0},"160":{"tf":1.4142135623730951},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.4142135623730951},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.7320508075688772},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1597":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.23606797749979},"1332":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.23606797749979},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.449489742783178},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.449489742783178},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":2.0},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":2.0},"840":{"tf":1.7320508075688772},"842":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":2.23606797749979},"890":{"tf":2.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"945":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"951":{"tf":1.7320508075688772},"952":{"tf":1.7320508075688772},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.7320508075688772},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":216,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":2.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":2.23606797749979},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":2.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.7320508075688772},"642":{"tf":1.0},"644":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.4142135623730951},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.449489742783178},"871":{"tf":2.23606797749979},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":2.0},"924":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.4142135623730951},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.7320508075688772},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":2.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":2.0},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.7320508075688772},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.4142135623730951},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.7320508075688772},"1235":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.4142135623730951},"348":{"tf":1.0},"369":{"tf":1.7320508075688772},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.4142135623730951},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1127":{"tf":2.0},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":2.0},"1553":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"774":{"tf":1.0},"796":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.449489742783178},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.7320508075688772},"1546":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1563":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1577":{"tf":1.0},"161":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":61,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":2.23606797749979},"1352":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.23606797749979},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1632":{"tf":1.7320508075688772},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.7320508075688772},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.4142135623730951},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.7320508075688772},"1240":{"tf":2.8284271247461903},"1241":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.4142135623730951},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.4142135623730951},"515":{"tf":1.4142135623730951},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.4142135623730951},"803":{"tf":2.23606797749979},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.4142135623730951},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.4142135623730951},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.7320508075688772},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":126,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":2.0},"1616":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"163":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1632":{"tf":1.0},"1633":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1639":{"tf":1.0},"164":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.7320508075688772},"875":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.4142135623730951},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.0},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.4142135623730951},"439":{"tf":1.0},"464":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":2.0},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.7320508075688772},"673":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"798":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":2.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.449489742783178},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":2.0},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.449489742783178},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.7320508075688772},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"171":{"tf":1.0},"186":{"tf":2.8284271247461903},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.4142135623730951},"800":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.7320508075688772},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.23606797749979},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":64,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.4142135623730951},"1436":{"tf":1.7320508075688772},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1459":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1650":{"tf":1.4142135623730951},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":2.23606797749979},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.7320508075688772},"567":{"tf":2.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"617":{"tf":1.4142135623730951},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.7320508075688772},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":2.0},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.7320508075688772},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.7320508075688772},"451":{"tf":1.0},"652":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":134,"docs":{"1001":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.7320508075688772},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.4142135623730951}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.7320508075688772},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":16,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.4142135623730951},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.4142135623730951},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":157,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":2.0},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":2.0},"1649":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"504":{"tf":1.7320508075688772},"517":{"tf":2.0},"523":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"539":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.7320508075688772},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"633":{"tf":2.23606797749979},"634":{"tf":1.7320508075688772},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":1.7320508075688772},"661":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.7320508075688772},"664":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.7320508075688772},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.7320508075688772},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"764":{"tf":1.7320508075688772},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":131,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1327":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"354":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.7320508075688772},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}},"t":{"df":16,"docs":{"0":{"tf":1.0},"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},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.7320508075688772},"1561":{"tf":2.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"1653":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.6457513110645907},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":597,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.6457513110645907},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.7320508075688772},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.7320508075688772},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.449489742783178},"1256":{"tf":1.4142135623730951},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":2.6457513110645907},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.23606797749979},"1387":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.8284271247461903},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":2.0},"1485":{"tf":2.6457513110645907},"1486":{"tf":2.8284271247461903},"1487":{"tf":3.872983346207417},"1488":{"tf":2.0},"1489":{"tf":2.0},"149":{"tf":1.0},"1491":{"tf":2.0},"1493":{"tf":2.0},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":3.1622776601683795},"1498":{"tf":2.6457513110645907},"1499":{"tf":2.449489742783178},"1500":{"tf":2.23606797749979},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.4142135623730951},"16":{"tf":2.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":2.0},"1651":{"tf":2.0},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":2.0},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":2.0},"51":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.4142135623730951},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":2.23606797749979},"985":{"tf":1.4142135623730951},"986":{"tf":2.8284271247461903},"987":{"tf":2.6457513110645907},"988":{"tf":2.6457513110645907},"989":{"tf":2.6457513110645907},"990":{"tf":2.23606797749979},"991":{"tf":2.0},"992":{"tf":2.8284271247461903},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.7320508075688772},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.4142135623730951},"803":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":2.0}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":187,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.23606797749979},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.7320508075688772},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":2.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.4641016151377544},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.4142135623730951},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.69041575982343},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.1622776601683795},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":274,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1007":{"tf":2.6457513110645907},"1008":{"tf":2.8284271247461903},"1009":{"tf":2.449489742783178},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.7320508075688772},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.8284271247461903},"1065":{"tf":1.7320508075688772},"1066":{"tf":2.449489742783178},"1067":{"tf":1.4142135623730951},"1068":{"tf":2.0},"1069":{"tf":1.4142135623730951},"107":{"tf":2.0},"1070":{"tf":1.0},"1071":{"tf":2.23606797749979},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.4142135623730951},"1074":{"tf":2.6457513110645907},"1075":{"tf":2.23606797749979},"1076":{"tf":1.7320508075688772},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":3.1622776601683795},"1080":{"tf":2.23606797749979},"1081":{"tf":1.4142135623730951},"1082":{"tf":1.7320508075688772},"1083":{"tf":2.0},"1084":{"tf":2.449489742783178},"1085":{"tf":2.0},"1086":{"tf":2.0},"1087":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":2.449489742783178},"1090":{"tf":2.23606797749979},"1091":{"tf":2.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":2.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.23606797749979},"1127":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":2.0},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":2.0},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":2.0},"125":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.7320508075688772},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":1.7320508075688772},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":2.0},"1546":{"tf":2.6457513110645907},"1547":{"tf":2.6457513110645907},"1548":{"tf":2.0},"1549":{"tf":2.0},"156":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1645":{"tf":2.0},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":2.0},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.1622776601683795},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":2.0},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"973":{"tf":1.7320508075688772},"975":{"tf":2.6457513110645907},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":19,"docs":{"1393":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":2.23606797749979},"554":{"tf":2.23606797749979},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.4142135623730951},"574":{"tf":2.8284271247461903},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":14,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1392":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1478":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1478":{"tf":2.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.7320508075688772},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.449489742783178},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1360":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"140":{"tf":2.449489742783178},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.7320508075688772},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.4142135623730951},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.4142135623730951},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.4142135623730951},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":48,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":3.1622776601683795},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":2.0},"343":{"tf":1.0},"347":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":2.23606797749979},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.4142135623730951},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.7320508075688772},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"845":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"884":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"971":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.4142135623730951},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.7416573867739413},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.6457513110645907},"376":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.7320508075688772},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.7320508075688772},"198":{"tf":2.449489742783178},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.0},"1147":{"tf":1.0},"1487":{"tf":1.0},"1533":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.4142135623730951},"1030":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"69":{"tf":1.4142135623730951},"737":{"tf":1.0},"741":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.7320508075688772},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.4142135623730951},"572":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":106,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1223":{"tf":2.23606797749979},"1227":{"tf":1.7320508075688772},"1248":{"tf":2.0},"1249":{"tf":3.0},"1250":{"tf":2.0},"1251":{"tf":1.4142135623730951},"1252":{"tf":2.449489742783178},"1253":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1256":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1258":{"tf":2.23606797749979},"1259":{"tf":1.0},"1260":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.7320508075688772},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.449489742783178},"408":{"tf":1.4142135623730951},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":2.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.7320508075688772},"520":{"tf":2.23606797749979},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.7320508075688772},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.6457513110645907},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.449489742783178},"794":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.4142135623730951},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.4142135623730951},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.449489742783178},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":2.0},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.7320508075688772},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"928":{"tf":1.7320508075688772},"931":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.23606797749979},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.7320508075688772},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1620":{"tf":1.7320508075688772},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.3166247903554},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":2.0},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":63,"docs":{"1189":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1577":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.7320508075688772},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":2.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.23606797749979},"571":{"tf":1.4142135623730951},"574":{"tf":2.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":51,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":2.0},"1180":{"tf":1.7320508075688772},"1538":{"tf":1.7320508075688772},"1615":{"tf":2.23606797749979},"1616":{"tf":1.0},"1617":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.7320508075688772},"1624":{"tf":1.7320508075688772},"1625":{"tf":1.7320508075688772},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.7320508075688772},"1632":{"tf":1.0},"1633":{"tf":1.7320508075688772},"1634":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1636":{"tf":1.7320508075688772},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.0},"1639":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"1641":{"tf":1.7320508075688772},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.7320508075688772},"1645":{"tf":1.0},"1646":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"1648":{"tf":1.7320508075688772},"1649":{"tf":1.0},"1650":{"tf":1.7320508075688772},"1651":{"tf":1.0},"1652":{"tf":1.7320508075688772},"1653":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"1656":{"tf":1.0},"551":{"tf":1.7320508075688772},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1516":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"805":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"928":{"tf":1.0},"972":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1564":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.4142135623730951},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":4.123105625617661},"1227":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":2.0},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"1000":{"tf":1.7320508075688772},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1054":{"tf":1.0},"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":2.0},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.4142135623730951},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1632":{"tf":1.7320508075688772},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"624":{"tf":1.0},"636":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":27,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":50,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.7320508075688772},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.0},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.4142135623730951},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.4142135623730951},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.23606797749979},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.23606797749979},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":2.0},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1323":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"910":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":114,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1258":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"143":{"tf":2.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1450":{"tf":1.7320508075688772},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.4142135623730951},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":2.0},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.23606797749979},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1188":{"tf":1.4142135623730951},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.0},"177":{"tf":1.4142135623730951},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.4142135623730951},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.4142135623730951}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":70,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.7320508075688772},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.4142135623730951},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"949":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"588":{"tf":1.7320508075688772},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"836":{"tf":1.0},"850":{"tf":1.4142135623730951},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.4142135623730951},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1100":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1248":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1513":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.4142135623730951},"36":{"tf":1.0},"368":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"934":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.7320508075688772},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.7320508075688772},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":2.0},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.7320508075688772},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.358898943540674},"1046":{"tf":2.0},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.0},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":3.0},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1272":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.4142135623730951},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1608":{"tf":1.4142135623730951},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":2.0},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":2.0},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.7320508075688772},"176":{"tf":2.0},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.7320508075688772},"660":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1477":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.449489742783178},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.7320508075688772},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.4142135623730951}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.4142135623730951},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":2.0},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.4142135623730951},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.7320508075688772},"735":{"tf":1.0},"744":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.7320508075688772},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.7320508075688772},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.7320508075688772},"1008":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.6457513110645907},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.449489742783178},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.4142135623730951},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":133,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1257":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.4142135623730951},"627":{"tf":2.23606797749979},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":2.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.7320508075688772},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"1062":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.0},"189":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0}}}}}},"df":53,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.4142135623730951},"2":{"tf":1.0},"298":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.23606797749979}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.7320508075688772},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.4142135623730951},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.7320508075688772},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.449489742783178},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.7320508075688772},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.7320508075688772},"1066":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":225,"docs":{"105":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1398":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":2.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":2.0},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.4142135623730951},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.7320508075688772},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"943":{"tf":1.0},"953":{"tf":1.7320508075688772},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.7320508075688772},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.7320508075688772},"751":{"tf":1.4142135623730951},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.7320508075688772},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.605551275463989},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"562":{"tf":1.0},"565":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.4142135623730951},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.7320508075688772},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.23606797749979},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":2.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":2.0},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.7320508075688772},"1558":{"tf":1.7320508075688772},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.23606797749979},"289":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.7320508075688772},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.7320508075688772},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.4142135623730951},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":129,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.7320508075688772},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.7320508075688772},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1064":{"tf":2.0},"1065":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.7320508075688772},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.4142135623730951},"1079":{"tf":2.449489742783178},"1080":{"tf":2.449489742783178},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1093":{"tf":2.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.7320508075688772},"1096":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.7320508075688772},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.7320508075688772},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.7320508075688772},"1271":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.4142135623730951},"1629":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.23606797749979},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":122,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.7320508075688772},"1235":{"tf":1.7320508075688772},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.4142135623730951},"95":{"tf":1.0},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"1008":{"tf":1.0},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.23606797749979},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.7320508075688772},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1153":{"tf":2.23606797749979},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":2.0},"1158":{"tf":1.7320508075688772},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.7320508075688772},"1169":{"tf":2.449489742783178},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1177":{"tf":1.7320508075688772},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1181":{"tf":2.23606797749979},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":2.0},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.23606797749979},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":2.23606797749979},"812":{"tf":2.6457513110645907},"813":{"tf":1.7320508075688772},"814":{"tf":2.0},"815":{"tf":2.0},"816":{"tf":2.0},"817":{"tf":2.23606797749979},"818":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"821":{"tf":2.449489742783178},"822":{"tf":1.4142135623730951},"823":{"tf":2.0},"824":{"tf":2.23606797749979},"825":{"tf":2.449489742783178},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":3.3166247903554},"831":{"tf":2.0},"832":{"tf":2.0},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":2.8284271247461903},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":2.0},"857":{"tf":2.449489742783178},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"870":{"tf":1.0},"871":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.7320508075688772},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.7320508075688772},"883":{"tf":2.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.0},"886":{"tf":2.6457513110645907},"887":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"895":{"tf":2.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":2.23606797749979},"912":{"tf":2.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":2.0},"926":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.7320508075688772},"935":{"tf":1.7320508075688772},"936":{"tf":1.7320508075688772},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":2.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.7320508075688772},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":2.0},"959":{"tf":2.23606797749979},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"970":{"tf":2.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.4142135623730951},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":2.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.7320508075688772},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.449489742783178},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":168,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1025":{"tf":1.7320508075688772},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.7320508075688772},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":2.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.7320508075688772},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1049":{"tf":1.4142135623730951},"105":{"tf":1.0},"1050":{"tf":1.7320508075688772},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1054":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"273":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.7320508075688772},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.7320508075688772},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.4142135623730951},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"120":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.4142135623730951},"605":{"tf":1.0},"626":{"tf":1.4142135623730951},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.4142135623730951},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.4142135623730951},"846":{"tf":1.0},"856":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":1.7320508075688772},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.4142135623730951},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"1051":{"tf":1.0},"1220":{"tf":2.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":2.0},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":12,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":2.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":104,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":2.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":3.0},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.7320508075688772},"172":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":2.0},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.23606797749979},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":2.0},"563":{"tf":1.4142135623730951},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"569":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":2.0},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":2.0},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":2.0},"842":{"tf":2.23606797749979},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"508":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.4142135623730951},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.4142135623730951},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.7320508075688772},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.7320508075688772},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.4142135623730951},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.0},"1016":{"tf":1.7320508075688772},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.23606797749979},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.6457513110645907},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.23606797749979},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1553":{"tf":2.0},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.7320508075688772},"715":{"tf":2.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.1622776601683795},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.4142135623730951},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":467,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.449489742783178},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.6457513110645907},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.23606797749979},"1077":{"tf":1.0},"1078":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1125":{"tf":1.0},"113":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1210":{"tf":1.7320508075688772},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"122":{"tf":1.0},"1221":{"tf":2.449489742783178},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":2.0},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":2.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.0},"1293":{"tf":2.23606797749979},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1299":{"tf":2.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.0},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":2.0},"1306":{"tf":1.0},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1316":{"tf":2.23606797749979},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.449489742783178},"1379":{"tf":2.0},"1380":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":2.23606797749979},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":2.449489742783178},"1390":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1393":{"tf":2.23606797749979},"1394":{"tf":2.23606797749979},"1395":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":3.0},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.7320508075688772},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":2.0},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":2.0},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":2.0},"1567":{"tf":2.23606797749979},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.0},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":2.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":2.0},"485":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":2.0},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.23606797749979},"548":{"tf":2.0},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":2.0},"559":{"tf":1.7320508075688772},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":2.0},"721":{"tf":1.0},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"729":{"tf":1.7320508075688772},"730":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":2.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.7320508075688772},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.449489742783178}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":65,"docs":{"1621":{"tf":1.4142135623730951},"436":{"tf":2.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":2.0},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.6457513110645907},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.23606797749979},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.4142135623730951},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.4142135623730951},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.4142135623730951},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":32,"docs":{"0":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":81,"docs":{"1":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.7320508075688772},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"760":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"906":{"tf":1.0},"907":{"tf":1.7320508075688772},"91":{"tf":1.0},"910":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":48,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.4142135623730951},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":2.0},"912":{"tf":2.449489742783178},"913":{"tf":1.0},"914":{"tf":2.23606797749979},"915":{"tf":1.7320508075688772},"916":{"tf":1.7320508075688772},"917":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.23606797749979},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.23606797749979},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"323":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":2.0},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":2.0},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.7320508075688772},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1157":{"tf":2.0},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.4142135623730951},"1311":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1328":{"tf":2.0},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"1045":{"tf":1.4142135623730951},"111":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"1532":{"tf":2.449489742783178},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":2.0},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.4142135623730951},"1571":{"tf":2.23606797749979},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.4142135623730951},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":3.0},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.7320508075688772},"646":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"684":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.0},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.0},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.7320508075688772},"1032":{"tf":1.4142135623730951},"1033":{"tf":2.0},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1487":{"tf":3.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1389":{"tf":2.6457513110645907},"1390":{"tf":1.0},"1391":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":2.0},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":2.0},"41":{"tf":1.0},"518":{"tf":2.0},"531":{"tf":1.0},"535":{"tf":2.0},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.4142135623730951},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"279":{"tf":1.0},"292":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.4142135623730951},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.4142135623730951},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1619":{"tf":1.4142135623730951},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.4142135623730951},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.6457513110645907},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.4142135623730951},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.0},"667":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.4142135623730951},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.4142135623730951},"1604":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.4142135623730951},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.4142135623730951},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.7320508075688772},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":103,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1416":{"tf":2.8284271247461903},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.23606797749979},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.449489742783178},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.449489742783178},"884":{"tf":1.0},"885":{"tf":1.7320508075688772},"886":{"tf":1.7320508075688772},"887":{"tf":2.449489742783178},"888":{"tf":1.0},"889":{"tf":1.7320508075688772},"890":{"tf":1.7320508075688772},"891":{"tf":2.0},"892":{"tf":2.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":2.23606797749979},"902":{"tf":2.0},"903":{"tf":2.0},"904":{"tf":1.7320508075688772},"905":{"tf":2.0},"906":{"tf":1.4142135623730951},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.7320508075688772},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":83,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.449489742783178},"1213":{"tf":1.7320508075688772},"1214":{"tf":2.23606797749979},"1215":{"tf":3.605551275463989},"1216":{"tf":1.7320508075688772},"1217":{"tf":2.8284271247461903},"1218":{"tf":2.449489742783178},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.7320508075688772},"1221":{"tf":2.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1225":{"tf":1.0},"1226":{"tf":2.8284271247461903},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.7320508075688772},"1229":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1233":{"tf":2.6457513110645907},"1234":{"tf":2.0},"1235":{"tf":2.23606797749979},"1236":{"tf":3.1622776601683795},"1237":{"tf":2.0},"1238":{"tf":2.23606797749979},"1239":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1243":{"tf":2.449489742783178},"1244":{"tf":2.449489742783178},"1245":{"tf":1.7320508075688772},"1246":{"tf":2.23606797749979},"1247":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1329":{"tf":2.23606797749979},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":2.6457513110645907},"1471":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":2.0},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.23606797749979},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"364":{"tf":2.0},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"801":{"tf":3.0},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.4142135623730951},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1559":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":22,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.4142135623730951},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":76,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":2.0},"1347":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":2.0},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.6457513110645907},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":2.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":2.0},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.6457513110645907}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.605551275463989},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":2.0},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.7320508075688772},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1227":{"tf":2.23606797749979},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":23,"docs":{"1058":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"149":{"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},"1593":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"1652":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1030":{"tf":2.0},"1031":{"tf":2.0},"1032":{"tf":1.7320508075688772},"1033":{"tf":2.0},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":2.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.449489742783178},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.449489742783178},"1185":{"tf":2.449489742783178},"1186":{"tf":2.0},"1187":{"tf":1.7320508075688772},"1188":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1196":{"tf":2.23606797749979},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1204":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":2.23606797749979},"1287":{"tf":1.0},"1288":{"tf":2.0},"1289":{"tf":2.0},"1290":{"tf":2.6457513110645907},"1291":{"tf":2.0},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"1345":{"tf":1.0},"135":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1360":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":2.23606797749979},"1385":{"tf":1.0},"139":{"tf":2.23606797749979},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.23606797749979},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.449489742783178},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":44,"docs":{"1313":{"tf":2.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.7320508075688772},"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}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.449489742783178},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":2.0},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":2.0},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"689":{"tf":1.0},"693":{"tf":1.7320508075688772},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":2.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.7320508075688772},"433":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.4142135623730951},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":2.0},"270":{"tf":1.4142135623730951},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.4142135623730951},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.449489742783178},"1433":{"tf":2.0},"1456":{"tf":2.0},"1498":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"49":{"tf":1.0},"492":{"tf":2.23606797749979},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.7320508075688772},"718":{"tf":1.4142135623730951},"728":{"tf":2.23606797749979},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.449489742783178},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.7320508075688772},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":112,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":398,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.4142135623730951},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.23606797749979},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":2.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":2.0},"397":{"tf":1.0},"40":{"tf":2.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.4142135623730951},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"528":{"tf":1.4142135623730951},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.4142135623730951},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"562":{"tf":1.0},"614":{"tf":1.4142135623730951},"636":{"tf":1.0},"733":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1164":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.23606797749979},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":2.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"828":{"tf":1.7320508075688772},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.7320508075688772},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":2.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":22,"docs":{"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":243,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.7320508075688772},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1058":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":2.0},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1555":{"tf":1.4142135623730951},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.7320508075688772},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":2.449489742783178},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.7320508075688772},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":358,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":2.0},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.605551275463989},"1074":{"tf":1.7320508075688772},"108":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"1128":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":2.0},"1404":{"tf":3.0},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.4641016151377544},"1493":{"tf":1.0},"1499":{"tf":3.1622776601683795},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":2.0},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.7320508075688772},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"196":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":2.8284271247461903},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":2.0},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":2.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"319":{"tf":2.8284271247461903},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"48":{"tf":1.0},"485":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"496":{"tf":2.0},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":2.0},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"721":{"tf":1.7320508075688772},"727":{"tf":2.0},"732":{"tf":2.0},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.4142135623730951}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":2.0},"1070":{"tf":2.23606797749979},"1071":{"tf":2.0},"1072":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.4142135623730951},"1084":{"tf":2.23606797749979},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.7320508075688772},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1178":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.7320508075688772},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":2.0},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.449489742783178},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.23606797749979},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.1622776601683795},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":2.0},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":2.0},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.4142135623730951},"947":{"tf":1.0},"957":{"tf":2.0},"977":{"tf":1.0},"978":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":42,"docs":{"1061":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.4142135623730951},"592":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.7320508075688772},"988":{"tf":1.7320508075688772},"989":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.7320508075688772},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":2.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.4142135623730951},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":51,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.4142135623730951},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.7320508075688772}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":111,"docs":{"1015":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.4142135623730951},"916":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.4142135623730951},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":26,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"672":{"tf":1.0},"77":{"tf":1.4142135623730951},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":13,"docs":{"1045":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1315":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"749":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"996":{"tf":1.0}}},"2":{"df":13,"docs":{"1046":{"tf":1.0},"1244":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"41":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"750":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"997":{"tf":1.0}}},"3":{"df":12,"docs":{"1047":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1317":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"751":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"998":{"tf":1.0}}},"4":{"df":5,"docs":{"1048":{"tf":1.0},"1246":{"tf":1.0},"1318":{"tf":1.0},"43":{"tf":1.0},"908":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":6,"docs":{"1049":{"tf":1.0},"1321":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"909":{"tf":1.0}}},"6":{"df":2,"docs":{"1322":{"tf":1.0},"45":{"tf":1.0}}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"a":{"2":{"a":{"df":10,"docs":{"1193":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"358":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1233":{"tf":1.0},"1309":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0}}}}},"d":{"df":9,"docs":{"1262":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"41":{"tf":1.0},"541":{"tf":1.0}}},"df":5,"docs":{"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"335":{"tf":1.0},"880":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"925":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1163":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"603":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"603":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"597":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"613":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"602":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"604":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"608":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"606":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"612":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"612":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"611":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"611":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"598":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"598":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"599":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"607":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"779":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"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":{},"i":{"d":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}}},"df":108,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1069":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1206":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1309":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1581":{"tf":1.0},"159":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"44":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"515":{"tf":1.0},"550":{"tf":1.0},"587":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"855":{"tf":1.0},"89":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"694":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":60,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1501":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1569":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"304":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"941":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"1309":{"tf":1.0},"1391":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"521":{"tf":1.0},"848":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"g":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":21,"docs":{"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1123":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1639":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"1630":{"tf":1.0}},"s":{"df":1,"docs":{"1628":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1307":{"tf":1.0},"1567":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1196":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1348":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":32,"docs":{"1184":{"tf":1.0},"1287":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"301":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"467":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}},"p":{"df":2,"docs":{"1282":{"tf":1.0},"1480":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1195":{"tf":1.0},"1372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"v":{"df":1,"docs":{"44":{"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":4,"docs":{"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"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":{"1278":{"tf":1.0},"130":{"tf":1.0},"812":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1605":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1253":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1166":{"tf":1.0},"1588":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":5,"docs":{"1266":{"tf":1.0},"1292":{"tf":1.0},"1298":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"906":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1287":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":16,"docs":{"1336":{"tf":1.0},"1504":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"346":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"697":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":2,"docs":{"1017":{"tf":1.0},"1200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1603":{"tf":1.0},"1611":{"tf":1.0},"984":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":5,"docs":{"1049":{"tf":1.0},"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"46":{"tf":1.0},"546":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1568":{"tf":1.0}}}}},"o":{"df":3,"docs":{"516":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1532":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1072":{"tf":1.0}}}},"df":7,"docs":{"1148":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"314":{"tf":1.0},"418":{"tf":1.0},"646":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1538":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1023":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1026":{"tf":1.0},"1237":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"21":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"407":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"1156":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1503":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"656":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1418":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1611":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1011":{"tf":1.0},"1534":{"tf":1.0},"509":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1538":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"432":{"tf":1.0},"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1270":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1353":{"tf":1.0},"1354":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1618":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1395":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"1295":{"tf":1.0},"1328":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.0},"381":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1338":{"tf":1.0},"1384":{"tf":1.0},"533":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"1193":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1244":{"tf":1.0},"39":{"tf":1.0},"808":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"813":{"tf":1.0},"875":{"tf":1.0}}}}}}}}},"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1010":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1055":{"tf":1.0},"1071":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1320":{"tf":1.0},"1340":{"tf":1.0},"1589":{"tf":1.0},"1596":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1634":{"tf":1.0},"277":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1056":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1443":{"tf":1.0},"1466":{"tf":1.0},"1580":{"tf":1.0},"1610":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":6,"docs":{"1139":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.0},"1249":{"tf":1.0},"514":{"tf":1.0},"756":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1232":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1058":{"tf":1.0},"1060":{"tf":1.0},"127":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"594":{"tf":1.0},"768":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.0},"120":{"tf":1.0},"1397":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1598":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"583":{"tf":1.0}}}},"df":12,"docs":{"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"583":{"tf":1.0},"750":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1018":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1425":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1367":{"tf":1.0},"1368":{"tf":1.0},"388":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1062":{"tf":1.0},"1079":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"141":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1653":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"429":{"tf":1.0},"510":{"tf":1.0},"662":{"tf":1.0},"799":{"tf":1.0},"808":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"15":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1131":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1023":{"tf":1.0},"142":{"tf":1.0},"1616":{"tf":1.0},"432":{"tf":1.0},"665":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"1219":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1517":{"tf":1.0},"291":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"581":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1068":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"816":{"tf":1.0}}},"s":{"df":1,"docs":{"530":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"824":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1066":{"tf":1.0},"1135":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"807":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"631":{"tf":1.0},"659":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1164":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":6,"docs":{"1491":{"tf":1.0},"1515":{"tf":1.0},"155":{"tf":1.0},"507":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":76,"docs":{"1012":{"tf":1.0},"1016":{"tf":1.0},"1028":{"tf":1.0},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1142":{"tf":1.0},"1198":{"tf":1.0},"1367":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"1634":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"744":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"92":{"tf":1.0},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"979":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1166":{"tf":1.0},"1251":{"tf":1.0},"299":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"225":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"585":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":3,"docs":{"1306":{"tf":1.0},"138":{"tf":1.0},"285":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1175":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"529":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"959":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"902":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1145":{"tf":1.0},"1263":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"337":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"767":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"987":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1228":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1150":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1155":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1403":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1497":{"tf":1.0},"1599":{"tf":1.0},"1609":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.0},"825":{"tf":1.0},"851":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"928":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"159":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1344":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1141":{"tf":1.0},"1187":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1587":{"tf":1.0},"1594":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1067":{"tf":1.0},"1097":{"tf":1.0},"1545":{"tf":1.0},"1639":{"tf":1.0},"226":{"tf":1.0},"420":{"tf":1.0},"64":{"tf":1.0},"648":{"tf":1.0},"864":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"1271":{"tf":1.0},"287":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1169":{"tf":1.0},"1324":{"tf":1.0},"1335":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0},"825":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1646":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":6,"docs":{"30":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1578":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"1124":{"tf":1.0},"1302":{"tf":1.0},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"1011":{"tf":1.0},"1334":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1165":{"tf":1.0},"219":{"tf":1.0},"457":{"tf":1.0},"693":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1626":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.0},"1320":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1373":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1011":{"tf":1.0},"1051":{"tf":1.0},"1274":{"tf":1.0},"1524":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"633":{"tf":1.0},"653":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1190":{"tf":1.0},"1271":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1111":{"tf":1.4142135623730951},"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1544":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"137":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1026":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1196":{"tf":1.0},"120":{"tf":1.0},"1413":{"tf":1.0},"1555":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"197":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1556":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":101,"docs":{"1004":{"tf":1.0},"1005":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1444":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1560":{"tf":1.0},"1563":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"84":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1535":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"321":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1322":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1195":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1099":{"tf":1.4142135623730951},"1640":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1383":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}}}},"b":{"df":3,"docs":{"253":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.0},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"924":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1595":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1338":{"tf":1.0},"1366":{"tf":1.0},"1579":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"898":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1224":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1022":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"829":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1234":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"657":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"1024":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1539":{"tf":1.0},"1541":{"tf":1.0},"1545":{"tf":1.0},"1550":{"tf":1.0},"1555":{"tf":1.0},"1560":{"tf":1.0},"1565":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1577":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"363":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"664":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"i":{"d":{"df":7,"docs":{"128":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1080":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"146":{"tf":1.0},"1476":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"365":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"581":{"tf":1.0},"670":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"753":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"698":{"tf":1.0},"799":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1292":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"481":{"tf":1.0},"516":{"tf":1.0},"717":{"tf":1.0}}}},"t":{"df":5,"docs":{"1425":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1016":{"tf":1.0}},"i":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":4,"docs":{"1264":{"tf":1.0},"1322":{"tf":1.0},"1366":{"tf":1.0},"395":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"537":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"822":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"493":{"tf":1.0},"729":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1150":{"tf":1.0},"1406":{"tf":1.0},"1500":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"1373":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"1551":{"tf":1.0},"1556":{"tf":1.0},"156":{"tf":1.0},"1562":{"tf":1.0},"157":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"330":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1205":{"tf":1.0},"1426":{"tf":1.0},"509":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1594":{"tf":1.0},"1597":{"tf":1.0}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1192":{"tf":1.0},"1282":{"tf":1.0},"1341":{"tf":1.0},"1393":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"761":{"tf":1.0}}}}},"df":1,"docs":{"1319":{"tf":1.0}},"m":{"c":{"df":0,"docs":{},"p":{"df":3,"docs":{"1461":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"568":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":34,"docs":{"1162":{"tf":1.0},"1179":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"249":{"tf":1.0},"479":{"tf":1.0},"54":{"tf":1.0},"715":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"961":{"tf":1.0},"973":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":29,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1526":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"45":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"742":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0},"970":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1146":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"909":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1400":{"tf":1.0},"1618":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1250":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"336":{"tf":1.0},"369":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1080":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"140":{"tf":1.0},"565":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"1070":{"tf":1.0},"1127":{"tf":1.0},"1509":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1644":{"tf":1.0},"312":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"796":{"tf":1.0},"828":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.0},"1382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"1544":{"tf":1.0},"1546":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1566":{"tf":1.0},"161":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"1198":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"1192":{"tf":1.0},"1332":{"tf":1.0},"1351":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"755":{"tf":1.0},"990":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1146":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1320":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1622":{"tf":1.0},"1632":{"tf":1.0},"497":{"tf":1.0},"614":{"tf":1.0},"624":{"tf":1.0},"733":{"tf":1.0},"788":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1007":{"tf":1.0},"1087":{"tf":1.0},"1126":{"tf":1.0},"311":{"tf":1.0},"926":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"515":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1483":{"tf":1.0},"1506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":5,"docs":{"13":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1162":{"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":{"1037":{"tf":1.0},"1535":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"1123":{"tf":1.0},"1137":{"tf":1.0},"1157":{"tf":1.0},"1260":{"tf":1.0},"1332":{"tf":1.0},"1361":{"tf":1.0},"1615":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":17,"docs":{"1046":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"363":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1129":{"tf":1.0},"1319":{"tf":1.0},"295":{"tf":1.0},"498":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1522":{"tf":1.0},"249":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"1489":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"954":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"667":{"tf":1.0},"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1081":{"tf":1.0},"267":{"tf":1.0},"881":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1349":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"1224":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1480":{"tf":1.0},"1650":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"562":{"tf":1.0},"566":{"tf":1.0},"617":{"tf":1.0},"809":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1310":{"tf":1.0},"222":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"1159":{"tf":1.0},"667":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.0},"1413":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"810":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"861":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"989":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"965":{"tf":1.0}}}}},"p":{"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":1,"docs":{"4":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"1013":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"545":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{"1189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1168":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1488":{"tf":1.0}},"i":{"df":5,"docs":{"188":{"tf":1.0},"360":{"tf":1.0},"468":{"tf":1.0},"704":{"tf":1.0},"83":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":26,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"766":{"tf":1.0},"79":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"301":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"760":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":19,"docs":{"1222":{"tf":1.0},"1223":{"tf":1.0},"1232":{"tf":1.0},"1277":{"tf":1.0},"1305":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1437":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"1527":{"tf":1.0},"1648":{"tf":1.0},"332":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"513":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"997":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1261":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1543":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1561":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1176":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1243":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"1059":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"1368":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"16":{"tf":1.0},"1603":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"6":{"tf":1.0},"751":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"594":{"tf":1.0},"637":{"tf":1.0},"768":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"301":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"8":{"tf":1.0},"803":{"tf":1.0}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1561":{"tf":1.0},"244":{"tf":1.0},"45":{"tf":1.0},"811":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"y":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1487":{"tf":1.0},"1530":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1089":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"122":{"tf":1.0},"1238":{"tf":1.0},"125":{"tf":1.0},"1278":{"tf":1.0},"1514":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"156":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"740":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"o":{"a":{"df":4,"docs":{"1393":{"tf":1.0},"553":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"513":{"tf":1.0}}}},"df":8,"docs":{"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"512":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"1020":{"tf":1.0},"1029":{"tf":1.0},"1060":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1198":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"788":{"tf":1.0},"863":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"101":{"tf":1.0},"1503":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"946":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"1394":{"tf":1.0}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"640":{"tf":1.0},"705":{"tf":1.0},"742":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1147":{"tf":1.0},"1319":{"tf":1.0},"1591":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"t":{"df":6,"docs":{"817":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1569":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1049":{"tf":1.0},"1309":{"tf":1.0},"1519":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"394":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"318":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1075":{"tf":1.0},"1559":{"tf":1.0},"198":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}}}}},"o":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.0},"1415":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"741":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"179":{"tf":1.0},"218":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1065":{"tf":1.0},"1194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":37,"docs":{"1191":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"620":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}},"df":1,"docs":{"298":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1149":{"tf":1.4142135623730951},"1210":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1024":{"tf":1.0},"265":{"tf":1.0},"961":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"1619":{"tf":1.0},"1620":{"tf":1.0},"1628":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"637":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"1520":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.0},"1342":{"tf":1.0},"1480":{"tf":1.0},"1577":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":21,"docs":{"1130":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1538":{"tf":1.0},"1615":{"tf":1.0},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1639":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"1277":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"972":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"522":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1549":{"tf":1.0},"1564":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1542":{"tf":1.0},"1552":{"tf":1.0},"396":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1205":{"tf":1.0},"1352":{"tf":1.0},"320":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1199":{"tf":1.0},"325":{"tf":1.0},"525":{"tf":1.0},"964":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"1621":{"tf":1.0},"1632":{"tf":1.0},"430":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"1371":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"1086":{"tf":1.0},"1311":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"210":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1423":{"tf":1.0},"1611":{"tf":1.0},"268":{"tf":1.0},"278":{"tf":1.0},"550":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1354":{"tf":1.0},"1385":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1420":{"tf":1.0},"1627":{"tf":1.0},"407":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":27,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":18,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1269":{"tf":1.0},"1358":{"tf":1.0},"1428":{"tf":1.0},"1617":{"tf":1.0},"1642":{"tf":1.0},"303":{"tf":1.0},"398":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"853":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"998":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"df":6,"docs":{"1152":{"tf":1.0},"1188":{"tf":1.0},"1625":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"933":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"401":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1596":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1587":{"tf":1.0},"1589":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"1361":{"tf":1.0},"1518":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"981":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"1384":{"tf":1.0},"1609":{"tf":1.0},"760":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"1182":{"tf":1.0},"1217":{"tf":1.0},"1256":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"239":{"tf":1.0},"490":{"tf":1.0},"726":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1321":{"tf":1.0},"1322":{"tf":1.0},"1506":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"174":{"tf":1.0},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"449":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"72":{"tf":1.0},"797":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"38":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1187":{"tf":1.0},"42":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"1530":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1366":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"1511":{"tf":1.0},"1579":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"474":{"tf":1.0},"525":{"tf":1.0},"710":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1090":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":15,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"308":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"635":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"739":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":2,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1046":{"tf":1.0},"1548":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"1178":{"tf":1.0},"1249":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1515":{"tf":1.0},"35":{"tf":1.0},"507":{"tf":1.0},"511":{"tf":1.0},"753":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1167":{"tf":1.0},"1236":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1343":{"tf":1.0},"549":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1131":{"tf":1.0},"274":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1090":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1352":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"18":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}},"p":{"df":2,"docs":{"151":{"tf":1.0},"630":{"tf":1.0}},"e":{"df":1,"docs":{"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1311":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"143":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"176":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.0},"660":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1368":{"tf":1.0},"3":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"1048":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1095":{"tf":1.0},"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1111":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1094":{"tf":1.0}},"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":{"1314":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"995":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1075":{"tf":1.0},"1241":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1546":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1655":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1003":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1418":{"tf":1.0},"1469":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1282":{"tf":1.0},"1525":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"641":{"tf":1.0},"744":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1167":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"838":{"tf":1.0},"889":{"tf":1.0},"917":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1193":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"534":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1201":{"tf":1.0},"1202":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"1191":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":2,"docs":{"1388":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1622":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"1230":{"tf":1.0},"1254":{"tf":1.0},"1257":{"tf":1.0},"1268":{"tf":1.0},"1357":{"tf":1.0},"1451":{"tf":1.0},"1642":{"tf":1.0},"302":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":1.0},"640":{"tf":1.0},"746":{"tf":1.0},"852":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"1062":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"441":{"tf":1.0}}}}}},"df":4,"docs":{"1273":{"tf":1.0},"1485":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1207":{"tf":1.0},"1373":{"tf":1.0},"298":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1235":{"tf":1.0}}}},"t":{"df":1,"docs":{"989":{"tf":1.0}}},"w":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"1176":{"tf":1.0},"1360":{"tf":1.0},"193":{"tf":1.0}},"i":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1203":{"tf":1.0},"1240":{"tf":1.0},"1384":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"38":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1086":{"tf":1.0},"1087":{"tf":1.0},"1174":{"tf":1.0},"118":{"tf":1.0},"1557":{"tf":1.0},"313":{"tf":1.0},"329":{"tf":1.0},"380":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.0},"1066":{"tf":1.0}}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1060":{"tf":1.0},"1303":{"tf":1.0},"1362":{"tf":1.0},"1398":{"tf":1.0},"1482":{"tf":1.0},"1512":{"tf":1.0},"1598":{"tf":1.0},"253":{"tf":1.0},"440":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"674":{"tf":1.0},"765":{"tf":1.0},"830":{"tf":1.0},"921":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1256":{"tf":1.0},"1330":{"tf":1.0},"508":{"tf":1.0},"751":{"tf":1.0}},"r":{"df":1,"docs":{"866":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1162":{"tf":1.0},"1260":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"892":{"tf":1.0},"900":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1619":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"1259":{"tf":1.0},"1272":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"1038":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"730":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1039":{"tf":1.0},"1575":{"tf":1.0},"495":{"tf":1.0},"545":{"tf":1.0},"731":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"1068":{"tf":1.0},"145":{"tf":1.0},"1528":{"tf":1.0},"1548":{"tf":1.0},"1558":{"tf":1.0},"165":{"tf":1.0},"249":{"tf":1.0},"322":{"tf":1.0},"399":{"tf":1.0},"54":{"tf":1.0},"628":{"tf":1.0},"827":{"tf":1.0},"837":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1074":{"tf":1.0},"122":{"tf":1.0},"1514":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":7,"docs":{"1040":{"tf":1.0},"1576":{"tf":1.0},"289":{"tf":1.0},"496":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"732":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"1386":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1099":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"1009":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1343":{"tf":1.0},"314":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"a":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1061":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":1,"docs":{"44":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1250":{"tf":1.0},"1271":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.0},"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1147":{"tf":1.0}}}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"1229":{"tf":1.0},"1235":{"tf":1.0},"166":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"5":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"3":{"df":3,"docs":{"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"364":{"tf":1.0},"801":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1275":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"385":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"350":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":54,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1158":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1505":{"tf":1.0},"1562":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"821":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"978":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"988":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1417":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1350":{"tf":1.0},"1391":{"tf":1.0},"521":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1013":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.0},"1132":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1537":{"tf":1.0},"237":{"tf":1.0},"273":{"tf":1.0},"324":{"tf":1.0},"40":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1396":{"tf":1.0},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1656":{"tf":1.0},"465":{"tf":1.0},"626":{"tf":1.0},"702":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1043":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1597":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"582":{"tf":1.0}}}},"df":18,"docs":{"1252":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"562":{"tf":1.0},"569":{"tf":1.0},"573":{"tf":1.0},"582":{"tf":1.0},"749":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"46":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1021":{"tf":1.0},"1529":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":17,"docs":{"1214":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1643":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1594":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1056":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1381":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"1003":{"tf":1.0},"1014":{"tf":1.0},"1016":{"tf":1.0},"1073":{"tf":1.0},"1078":{"tf":1.0},"1128":{"tf":1.0},"1208":{"tf":1.0},"1319":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1550":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"160":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"66":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"865":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":70,"docs":{"1004":{"tf":1.0},"1039":{"tf":1.0},"106":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1221":{"tf":1.0},"124":{"tf":1.0},"1266":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1307":{"tf":1.0},"1316":{"tf":1.0},"1346":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1442":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0},"1554":{"tf":1.0},"1567":{"tf":1.0},"1582":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"516":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"541":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"724":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"739":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"907":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"459":{"tf":1.0},"695":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"446":{"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":1,"docs":{"987":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"1621":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1533":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"479":{"tf":1.0},"715":{"tf":1.0},"840":{"tf":1.0},"891":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1370":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"1":{"tf":1.0},"1399":{"tf":1.0},"189":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0}}},"u":{"df":8,"docs":{"1083":{"tf":1.0},"1443":{"tf":1.0},"1466":{"tf":1.0},"290":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0},"938":{"tf":1.0}}}},"y":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":38,"docs":{"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1311":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1385":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1045":{"tf":1.0},"1144":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"1647":{"tf":1.0},"229":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"643":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1030":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"1180":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1389":{"tf":1.0},"532":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1391":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":5,"docs":{"1219":{"tf":1.0},"1352":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"734":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1362":{"tf":1.0},"1585":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"901":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1388":{"tf":1.0},"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1042":{"tf":1.0},"1085":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"176":{"tf":1.0},"410":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"747":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1622":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1312":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1630":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":26,"docs":{"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"891":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1228":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1329":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1471":{"tf":1.0},"1582":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"668":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1620":{"tf":1.0},"364":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"801":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1000":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1400":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1372":{"tf":1.0},"1559":{"tf":1.0},"297":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1014":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}}},"l":{"df":1,"docs":{"1010":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"946":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1189":{"tf":1.0},"1240":{"tf":1.0},"1256":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"533":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.0},"930":{"tf":1.0},"992":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1586":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"986":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1521":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0}}},"k":{"df":3,"docs":{"1376":{"tf":1.0},"277":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":1,"docs":{"1380":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1078":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1227":{"tf":1.0},"1253":{"tf":1.0},"505":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"1594":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"1002":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1267":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"325":{"tf":1.0},"810":{"tf":1.0},"990":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"454":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"1220":{"tf":1.0},"1385":{"tf":1.0},"528":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"1298":{"tf":1.0},"220":{"tf":1.0},"263":{"tf":1.0},"337":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"585":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"693":{"tf":1.0},"800":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"623":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1425":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1216":{"tf":1.0},"895":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1554":{"tf":1.0},"270":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"348":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"879":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":6,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"466":{"tf":1.0},"567":{"tf":1.0},"703":{"tf":1.0}}}},"df":50,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1195":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.0},"1339":{"tf":1.0},"1353":{"tf":1.0},"1422":{"tf":1.0},"173":{"tf":1.0},"280":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"439":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"528":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"673":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"818":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"497":{"tf":1.0},"614":{"tf":1.0},"733":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"89":{"tf":1.0},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":3,"docs":{"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1010":{"tf":1.0},"1014":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1505":{"tf":1.0},"1556":{"tf":1.0},"1562":{"tf":1.0},"1594":{"tf":1.0},"1610":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1083":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"1234":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1200":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1579":{"tf":1.0},"259":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1391":{"tf":1.0},"521":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":39,"docs":{"1019":{"tf":1.0},"1021":{"tf":1.0},"1026":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1364":{"tf":1.0},"1378":{"tf":1.0},"1414":{"tf":1.0},"1419":{"tf":1.0},"1551":{"tf":1.0},"1555":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1584":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1654":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"719":{"tf":1.0},"846":{"tf":1.0},"929":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"460":{"tf":1.0},"696":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":56,"docs":{"1005":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1266":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1318":{"tf":1.0},"1351":{"tf":1.0},"1383":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1432":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1499":{"tf":1.0},"1514":{"tf":1.0},"1581":{"tf":1.0},"1603":{"tf":1.0},"1609":{"tf":1.0},"1611":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"349":{"tf":1.0},"404":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"545":{"tf":1.0},"634":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"805":{"tf":1.0},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"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":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1327":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"445":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1081":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"145":{"tf":1.0},"1484":{"tf":1.0},"1564":{"tf":1.0},"1616":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"823":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"657":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":14,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1352":{"tf":1.0},"253":{"tf":1.0},"51":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1629":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"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":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1015":{"tf":1.0},"1027":{"tf":1.0},"1183":{"tf":1.0},"1197":{"tf":1.0},"1390":{"tf":1.0},"1504":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"344":{"tf":1.0},"486":{"tf":1.0},"556":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"908":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"1313":{"tf":1.0},"1356":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.0},"1505":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"904":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"505":{"tf":1.0},"760":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1324":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"1515":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"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 +Object.assign(window.search, {"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#start-with-the-deployment","index.html#what-jacs-gives-you","index.html#best-entry-points","index.html#implementations","index.html#rust","index.html#python-jacs","index.html#nodejs-haiaijacs","index.html#go-jacsgo","index.html#quick-start","index.html#rust-cli","index.html#python","index.html#nodejs","index.html#go","index.html#what-this-book-does-not-claim","index.html#community","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/decision-tree.html#which-jacs-path-should-i-use","getting-started/decision-tree.html#start-here","getting-started/decision-tree.html#when-you-probably-do-not-need-jacs","getting-started/decision-tree.html#recommended-adoption-order","usecases.html#use-cases","usecases.html#1-secure-a-local-mcp-tool-server","usecases.html#2-add-provenance-to-langchain-or-langgraph","usecases.html#3-exchange-signed-artifacts-across-organizations","usecases.html#4-sign-http-or-api-boundaries-without-mcp","usecases.html#5-run-multi-agent-approval-workflows","usecases.html#6-keep-signed-files-or-json-as-durable-artifacts","usecases.html#7-publish-public-identity-without-a-central-auth-service","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#zero-config-quick-start","getting-started/quick-start.html#password-bootstrap","getting-started/quick-start.html#macos-homebrew-install-rust-cli","getting-started/quick-start.html#mcp-server-rust-cli","getting-started/quick-start.html#advanced-explicit-agent-setup","getting-started/quick-start.html#install","getting-started/quick-start.html#initialize","getting-started/quick-start.html#sign-a-document","getting-started/quick-start.html#install-1","getting-started/quick-start.html#load-and-use","getting-started/quick-start.html#install-2","getting-started/quick-start.html#load-and-use-1","getting-started/quick-start.html#programmatic-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","getting-started/multi-agent-agreement.html#multi-agent-agreements","getting-started/multi-agent-agreement.html#the-lifecycle","getting-started/multi-agent-agreement.html#python","getting-started/multi-agent-agreement.html#nodejs--typescript","getting-started/multi-agent-agreement.html#what-just-happened","getting-started/multi-agent-agreement.html#next-steps","getting-started/verification.html#verifying-signed-documents","getting-started/verification.html#cli-jacs-verify","getting-started/verification.html#python","getting-started/verification.html#with-an-agent-loaded","getting-started/verification.html#without-an-agent-standalone","getting-started/verification.html#verify-by-document-id","getting-started/verification.html#nodejs","getting-started/verification.html#with-an-agent-loaded-1","getting-started/verification.html#without-an-agent-standalone-1","getting-started/verification.html#verify-by-document-id-1","getting-started/verification.html#verification-links","getting-started/verification.html#dns-verification","getting-started/verification.html#publishing-a-dns-record","getting-started/verification.html#looking-up-an-agent-by-domain","getting-started/verification.html#cli-verification-with-dns","getting-started/verification.html#cross-language-verification","getting-started/verification.html#key-resolution-order","getting-started/attestation.html#what-is-an-attestation","getting-started/attestation.html#signing-vs-attestation","getting-started/attestation.html#key-concepts","getting-started/attestation.html#subject","getting-started/attestation.html#claims","getting-started/attestation.html#evidence","getting-started/attestation.html#derivation-chain","getting-started/attestation.html#architecture-layers","getting-started/attestation.html#quick-example","getting-started/attestation.html#attestation-vs-a2a-trust-policy","getting-started/attestation.html#when-to-use-attestations","getting-started/trust-layers.html#jacs-trust-layers","getting-started/trust-layers.html#the-three-layers","getting-started/trust-layers.html#layer-a-identity--integrity-jacs-core","getting-started/trust-layers.html#layer-b-exchange--discovery-a2a-integration","getting-started/trust-layers.html#layer-c-trust-context-attestation","getting-started/trust-layers.html#terminology-glossary","getting-started/trust-layers.html#quick-decision-flow","getting-started/trust-layers.html#common-misconceptions","getting-started/deployment.html#deployment-compatibility","getting-started/deployment.html#supported-platforms","getting-started/deployment.html#not-yet-supported","getting-started/deployment.html#version-requirements","getting-started/deployment.html#docker-example","getting-started/deployment.html#lambda-deployment","getting-started/deployment.html#building-from-source","getting-started/troubleshooting.html#troubleshooting","getting-started/troubleshooting.html#installation-issues","getting-started/troubleshooting.html#pip-install-fails","getting-started/troubleshooting.html#npm-install-fails","getting-started/troubleshooting.html#alpine-linux--musl-libc","getting-started/troubleshooting.html#configuration-issues","getting-started/troubleshooting.html#config-not-found","getting-started/troubleshooting.html#private-key-decryption-failed","getting-started/troubleshooting.html#algorithm-detection-failed","getting-started/troubleshooting.html#runtime-issues","getting-started/troubleshooting.html#agent-creation-fails","getting-started/troubleshooting.html#signature-verification-fails","getting-started/troubleshooting.html#documents-not-found","getting-started/troubleshooting.html#building-from-source","getting-started/troubleshooting.html#getting-help","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-homebrew-macos","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#mcp-server","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-tutorial","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#mcp-server","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#detailed-service-example","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#agreement-options-v062","rust/agreements.html#timeout","rust/agreements.html#quorum-m-of-n-signing","rust/agreements.html#algorithm-constraints","rust/agreements.html#combined-options","rust/agreements.html#using-jacsclient-instance-based-api","rust/agreements.html#python","rust/agreements.html#nodejs","rust/agreements.html#mcp-tools-for-agreements","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability-rust-api","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-and-simple-api","nodejs/installation.html#instance-based-client-recommended-for-new-code","nodejs/installation.html#mcp-haiaijacsmcp","nodejs/installation.html#http--framework-adapters","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#local-indexed-sqlite","nodejs/installation.html#aws-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#v070-async-first-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#quickstartoptions","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#v070-async-first-api","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#mcp-integration-nodejs","nodejs/mcp.html#install","nodejs/mcp.html#1-wrap-a-transport","nodejs/mcp.html#with-a-loaded-client","nodejs/mcp.html#with-only-a-config-path","nodejs/mcp.html#2-register-jacs-tools-on-your-mcp-server","nodejs/mcp.html#failure-behavior","nodejs/mcp.html#common-pattern","nodejs/mcp.html#example-paths-in-this-repo","nodejs/mcp.html#when-to-use-langchain-instead","nodejs/langchain.html#langchainjs-integration","nodejs/langchain.html#choose-the-pattern","nodejs/langchain.html#give-the-agent-jacs-tools","nodejs/langchain.html#auto-sign-existing-tools","nodejs/langchain.html#install","nodejs/langchain.html#strict-mode","nodejs/langchain.html#examples-in-this-repo","nodejs/langchain.html#when-to-use-mcp-instead","nodejs/vercel-ai.html#vercel-ai-sdk","nodejs/vercel-ai.html#5-minute-quickstart","nodejs/vercel-ai.html#1-install","nodejs/vercel-ai.html#2-create-a-jacs-client","nodejs/vercel-ai.html#3-sign-every-model-output","nodejs/vercel-ai.html#quick-start","nodejs/vercel-ai.html#installation","nodejs/vercel-ai.html#two-ways-to-use","nodejs/vercel-ai.html#withprovenance-convenience","nodejs/vercel-ai.html#jacsprovenance-composable","nodejs/vercel-ai.html#options","nodejs/vercel-ai.html#streaming","nodejs/vercel-ai.html#tool-call-signing","nodejs/vercel-ai.html#provenance-record","nodejs/vercel-ai.html#strict-mode","nodejs/vercel-ai.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#5-minute-quickstart","nodejs/express.html#1-install","nodejs/express.html#2-create-a-jacs-client","nodejs/express.html#3-add-signing-middleware","nodejs/express.html#quick-start","nodejs/express.html#options","nodejs/express.html#what-the-middleware-does","nodejs/express.html#verify-incoming-requests","nodejs/express.html#auth-replay-protection-auth-endpoints","nodejs/express.html#auto-sign-responses","nodejs/express.html#manual-signing-in-routes","nodejs/express.html#per-route-middleware","nodejs/express.html#multiple-agents","nodejs/express.html#migration-from-jacsexpressmiddleware","nodejs/express.html#next-steps","nodejs/koa.html#koa-middleware","nodejs/koa.html#quick-start","nodejs/koa.html#options","nodejs/koa.html#how-it-works","nodejs/koa.html#auth-replay-protection-auth-endpoints","nodejs/koa.html#auto-sign-responses","nodejs/koa.html#manual-signing","nodejs/koa.html#comparison-with-express","nodejs/koa.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#v070-async-first-api","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath--agentloadsyncconfigpath","nodejs/api.html#agentcreatedocument--agentcreatedocumentsync","nodejs/api.html#agentverifydocument--agentverifydocumentsync","nodejs/api.html#agentverifysignature--agentverifysignaturesync","nodejs/api.html#agentupdatedocument--agentupdatedocumentsync","nodejs/api.html#agentcreateagreement--agentcreateagreementsync","nodejs/api.html#agentsignagreement--agentsignagreementsync","nodejs/api.html#agentcheckagreement--agentcheckagreementsync","nodejs/api.html#agentsignartifact--agentsignartifactsync","nodejs/api.html#agentwrapa2aartifact--agentwrapa2aartifactsync","nodejs/api.html#agentsignstring--agentsignstringsync","nodejs/api.html#agentverifystring--agentverifystringsync","nodejs/api.html#agentsignrequestparams----v8-thread-only","nodejs/api.html#agentverifyresponsedocumentstring----v8-thread-only","nodejs/api.html#agentverifyresponsewithagentiddocumentstring----v8-thread-only","nodejs/api.html#agentverifyagent--agentverifyagentsync","nodejs/api.html#agentupdateagent--agentupdateagentsync","nodejs/api.html#agentsignagent--agentsignagentsync","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#local-indexed-sqlite","python/installation.html#aws-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#quickstartname-domain-descriptionnone-algorithmnone-config_pathnone","python/simple-api.html#loadconfig_pathnone-strictnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#verify_by_iddocument_id","python/simple-api.html#reencrypt_keyold_password-new_password","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration-python","python/mcp.html#what-is-supported","python/mcp.html#important-constraints","python/mcp.html#1-secure-a-fastmcp-server","python/mcp.html#2-secure-a-fastmcp-client","python/mcp.html#3-register-jacs-as-mcp-tools","python/mcp.html#useful-helper-apis","python/mcp.html#example-paths-in-this-repo","python/mcp.html#when-to-use-adapters-instead","python/adapters.html#framework-adapters","python/adapters.html#choose-the-adapter","python/adapters.html#langchain--langgraph","python/adapters.html#langchain-middleware","python/adapters.html#langgraph-toolnode","python/adapters.html#wrap-one-tool-instead-of-the-whole-graph","python/adapters.html#fastapi--starlette","python/adapters.html#crewai","python/adapters.html#anthropic--claude-sdk","python/adapters.html#when-to-use-mcp-instead","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentwrap_a2a_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","go/installation.html#go-jacsgo-installation-and-quick-start","go/installation.html#install","go/installation.html#minimal-sign--verify","go/installation.html#programmatic-agent-creation","go/installation.html#concurrent-use","go/installation.html#common-go-use-cases","go/installation.html#mcp-and-http-patterns","go/installation.html#identity-and-trust-notes","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#config-file-schema","schemas/configuration.html#schema-location","schemas/configuration.html#minimal-configuration","schemas/configuration.html#fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-fields","schemas/configuration.html#environment-variables","schemas/configuration.html#see-also","concepts/attestation-comparison.html#jacs-attestation-vs-other-standards","concepts/attestation-comparison.html#comparison-table","concepts/attestation-comparison.html#jacs-vs-in-toto--slsa","concepts/attestation-comparison.html#jacs-vs-sigstore--cosign","concepts/attestation-comparison.html#jacs-vs-scitt","concepts/attestation-comparison.html#jacs-vs-ietf-rats--eat","concepts/attestation-comparison.html#jacs-vs-csa-agentic-trust-framework","concepts/attestation-comparison.html#when-to-use-jacs","concepts/attestation-comparison.html#when-to-use-jacs-alongside-other-tools","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/algorithm-guide.html#algorithm-selection-guide","advanced/algorithm-guide.html#supported-algorithms","advanced/algorithm-guide.html#how-to-choose","advanced/algorithm-guide.html#when-to-choose-post-quantum","advanced/algorithm-guide.html#cross-algorithm-verification","advanced/algorithm-guide.html#configuration","advanced/algorithm-guide.html#current-limitations","advanced/storage.html#storage-backends","advanced/storage.html#built-in-core-backends","advanced/storage.html#filesystem-fs","advanced/storage.html#local-indexed-sqlite-rusqlite","advanced/storage.html#aws-aws","advanced/storage.html#memory-memory","advanced/storage.html#extracted-backend-crates","advanced/storage.html#choosing-a-backend","advanced/storage.html#migration-notes","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/trust-store.html#trust-store-operations","advanced/trust-store.html#how-it-works","advanced/trust-store.html#api","advanced/trust-store.html#python-example","advanced/trust-store.html#nodejs-example","advanced/trust-store.html#cross-organization-scenario","advanced/trust-store.html#security-notes","advanced/infrastructure.html#infrastructure-vs-tools-jacs-as-middleware","advanced/infrastructure.html#the-difference","advanced/infrastructure.html#transport-level-mcp-proxies","advanced/infrastructure.html#framework-level-express--fastapi-middleware","advanced/infrastructure.html#protocol-level-a2a-agent-cards","advanced/infrastructure.html#why-this-matters","advanced/infrastructure.html#when-to-use-each-approach","advanced/dns-trust.html#dns-trust-anchoring","advanced/dns-trust.html#how-it-works","advanced/dns-trust.html#four-configuration-levels","advanced/dns-trust.html#security-model-assumptions","advanced/dns-trust.html#known-attack-vectors","advanced/dns-trust.html#what-jacs-provides","advanced/dns-trust.html#what-jacs-does-not-yet-provide","advanced/dns-trust.html#recommendations","advanced/dns-trust.html#see-also","advanced/failure-modes.html#failure-modes","advanced/failure-modes.html#partial-signing-agent-crash","advanced/failure-modes.html#quorum-not-met","advanced/failure-modes.html#tampered-signature","advanced/failure-modes.html#tampered-document-body","advanced/failure-modes.html#in-memory-consistency-after-signing","advanced/failure-modes.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#mcp-overview","integrations/mcp.html#choose-the-mcp-path","integrations/mcp.html#best-fit-by-runtime","integrations/mcp.html#important-constraints","integrations/mcp.html#1-ready-made-server-jacs-mcp","integrations/mcp.html#2-transport-security-around-your-existing-mcp-code","integrations/mcp.html#python","integrations/mcp.html#nodejs","integrations/mcp.html#3-register-jacs-operations-as-mcp-tools","integrations/mcp.html#python-1","integrations/mcp.html#nodejs-1","integrations/mcp.html#example-paths-in-this-repo","integrations/mcp.html#related-guides","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds-to-a2a","integrations/a2a.html#the-core-flow","integrations/a2a.html#1-export-an-agent-card","integrations/a2a.html#2-serve-discovery-documents","integrations/a2a.html#3-sign-and-verify-artifacts","integrations/a2a.html#trust-policies","integrations/a2a.html#python","integrations/a2a.html#nodejs","integrations/a2a.html#bootstrap-patterns","integrations/a2a.html#current-runtime-differences","integrations/a2a.html#example-paths-in-this-repo","guides/a2a-quickstart.html#a2a-quickstart","guides/a2a-quickstart.html#jacs-for-a2a-developers","guides/a2a-quickstart.html#what-stays-the-same","guides/a2a-quickstart.html#what-jacs-adds","guides/a2a-quickstart.html#minimal-integration-add-jacs-to-existing-a2a-code","guides/a2a-quickstart.html#dual-key-architecture","guides/a2a-quickstart.html#troubleshooting-faq","guides/a2a-quickstart.html#next-steps","guides/a2a-serve.html#serve-your-agent-card","guides/a2a-serve.html#production-mount-into-your-own-fastapi-app","guides/a2a-serve.html#what-gets-served","guides/a2a-serve.html#next-steps","guides/a2a-discover.html#discover--trust-remote-agents","guides/a2a-discover.html#add-to-your-trust-store","guides/a2a-discover.html#async-api","guides/a2a-discover.html#add-to-your-trust-store-1","guides/a2a-discover.html#trust-policies","guides/a2a-discover.html#how-trust-flows","guides/a2a-discover.html#next-steps","guides/a2a-exchange.html#exchange-signed-artifacts","guides/a2a-exchange.html#sign-and-verify","guides/a2a-exchange.html#chain-of-custody","guides/a2a-exchange.html#build-an-audit-trail","guides/a2a-exchange.html#sign-and-verify-1","guides/a2a-exchange.html#chain-of-custody-1","guides/a2a-exchange.html#artifact-types","guides/a2a-exchange.html#what-gets-signed","guides/a2a-exchange.html#next-steps","guides/sign-vs-attest.html#sign-vs-attest-when-to-use-which","guides/sign-vs-attest.html#decision-tree","guides/sign-vs-attest.html#quick-reference","guides/sign-vs-attest.html#examples","guides/sign-vs-attest.html#just-need-integrity-use-signing","guides/sign-vs-attest.html#need-trust-context-use-attestation","guides/sign-vs-attest.html#already-signed-lift-to-attestation","guides/sign-vs-attest.html#common-patterns","guides/sign-vs-attest.html#ai-agent-action-logging","guides/sign-vs-attest.html#human-review-attestation","guides/sign-vs-attest.html#multi-step-pipeline","guides/sign-vs-attest.html#cross-system-verification","guides/attestation-tutorial.html#tutorial-add-attestations-to-your-workflow","guides/attestation-tutorial.html#prerequisites","guides/attestation-tutorial.html#step-1-create-an-agent","guides/attestation-tutorial.html#step-2-sign-a-document","guides/attestation-tutorial.html#step-3-create-an-attestation","guides/attestation-tutorial.html#step-4-verify-the-attestation","guides/attestation-tutorial.html#local-verification-fast----signature--hash-only","guides/attestation-tutorial.html#full-verification-thorough----includes-evidence--derivation-chain","guides/attestation-tutorial.html#step-5-add-evidence-optional","guides/attestation-tutorial.html#step-6-export-as-dsse-optional","guides/attestation-tutorial.html#whats-next","guides/custom-adapters.html#writing-a-custom-evidence-adapter","guides/custom-adapters.html#what-is-an-evidenceadapter","guides/custom-adapters.html#the-normalize-contract","guides/custom-adapters.html#the-verify_evidence-contract","guides/custom-adapters.html#step-by-step-building-a-jwt-adapter","guides/custom-adapters.html#testing-your-adapter","guides/custom-adapters.html#registering-your-adapter-with-the-agent","guides/custom-adapters.html#privacy-considerations","guides/framework-attestation.html#framework-adapter-attestation-guide","guides/framework-attestation.html#common-patterns","guides/framework-attestation.html#default-claims","guides/framework-attestation.html#custom-claims","guides/framework-attestation.html#evidence-attachment","guides/framework-attestation.html#langchain","guides/framework-attestation.html#enabling-attestation-on-tool-calls","guides/framework-attestation.html#using-the-signed_tool-decorator","guides/framework-attestation.html#with-langchain-chains","guides/framework-attestation.html#fastapi","guides/framework-attestation.html#attestation-middleware","guides/framework-attestation.html#per-route-attestation","guides/framework-attestation.html#crewai","guides/framework-attestation.html#attestation-guardrails","guides/framework-attestation.html#signed-tasks","guides/framework-attestation.html#jacssignedtool","guides/framework-attestation.html#anthropic","guides/framework-attestation.html#tool-hook-attestation","guides/framework-attestation.html#with-the-anthropic-sdk","guides/framework-attestation.html#verifying-framework-attestations","guides/framework-attestation.html#strict-vs-permissive-mode","guides/a2a-attestation-composition.html#a2a--attestation-using-both-together","guides/a2a-attestation-composition.html#when-you-need-both","guides/a2a-attestation-composition.html#the-composition-rule","guides/a2a-attestation-composition.html#example-workflow","guides/a2a-attestation-composition.html#python","guides/a2a-attestation-composition.html#nodejs","guides/a2a-attestation-composition.html#what-not-to-do","guides/a2a-attestation-composition.html#further-reading","guides/observability.html#observability--monitoring-guide","guides/observability.html#structured-event-reference","guides/observability.html#signing-events","guides/observability.html#verification-events","guides/observability.html#agreement-events","guides/observability.html#enabling-otel-export","guides/observability.html#otel-collector-configuration","guides/observability.html#pointing-jacs-at-the-collector","guides/observability.html#feeding-events-to-datadog","guides/observability.html#feeding-events-to-splunk","guides/observability.html#agreement-monitoring","guides/observability.html#agreements-approaching-timeout","guides/observability.html#failed-quorum-detection","guides/observability.html#signature-velocity","guides/observability.html#expiry-alerts","guides/observability.html#latency-tracking","guides/observability.html#next-steps","guides/email-signing.html#email-signing-and-verification","guides/email-signing.html#signing-an-email","guides/email-signing.html#the-emailsigner-trait","guides/email-signing.html#what-sign_email-does-internally","guides/email-signing.html#forwarding-re-signing","guides/email-signing.html#verifying-an-email","guides/email-signing.html#one-call-api-recommended","guides/email-signing.html#two-step-api-when-you-need-the-jacs-document","guides/email-signing.html#field-level-results","guides/email-signing.html#the-jacs-signature-document","guides/email-signing.html#public-api-summary","guides/streaming.html#streaming-signing","guides/streaming.html#how-it-works-by-framework","guides/streaming.html#vercel-ai-sdk-streamtext","guides/streaming.html#langchain--langgraph","guides/streaming.html#express--koa--fastapi","guides/streaming.html#raw-llm-apis-no-framework-adapter","guides/streaming.html#when-not-to-buffer","guides/streaming.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#mcp","examples/integrations.html#langchain--langgraph","examples/integrations.html#a2a","examples/integrations.html#http--app-middleware","examples/integrations.html#rule-of-thumb","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-quickstart","reference/cli-commands.html#jacs-verify","reference/cli-commands.html#jacs-keychain","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#zero-config-path","reference/configuration.html#minimal-configuration","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#os-keychain-configuration","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#documentservice-guarantees","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/attestation-errors.html#attestation-verification-results","reference/attestation-errors.html#result-structure","reference/attestation-errors.html#top-level-fields","reference/attestation-errors.html#crypto-object","reference/attestation-errors.html#evidence-array-full-tier-only","reference/attestation-errors.html#chain-object-full-tier-only","reference/attestation-errors.html#verification-tiers","reference/attestation-errors.html#local-tier-verify_attestation","reference/attestation-errors.html#full-tier-verify_attestationfulltrue","reference/attestation-errors.html#troubleshooting","reference/attestation-errors.html#valid-is-false-but-crypto-shows-all-true","reference/attestation-errors.html#evidence-is-empty","reference/attestation-errors.html#chain-is-null","reference/attestation-errors.html#signature_valid-is-false-after-serialization","reference/attest-cli.html#cli-reference-jacs-attest","reference/attest-cli.html#jacs-attest-create","reference/attest-cli.html#synopsis","reference/attest-cli.html#options","reference/attest-cli.html#examples","reference/attest-cli.html#jacs-attest-verify","reference/attest-cli.html#synopsis-1","reference/attest-cli.html#arguments","reference/attest-cli.html#options-1","reference/attest-cli.html#examples-1","reference/attest-cli.html#piping-and-scripting-patterns","reference/attest-cli.html#create-and-verify-in-one-pipeline","reference/attest-cli.html#check-validity-in-a-script","reference/attest-cli.html#batch-verify-multiple-attestations","reference/attest-cli.html#exit-codes","reference/attest-cli.html#environment-variables","reference/attest-cli.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-nodejs-from-06x-to-070","reference/migration.html#breaking-change-async-first-api","reference/migration.html#method-renaming-summary","reference/migration.html#v8-thread-only-methods-no-change","reference/migration.html#simplified-api-module-level","reference/migration.html#pure-sync-functions-no-change","reference/migration.html#migration-steps","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#deprecated-method-aliases-090","reference/migration.html#runtime-deprecation-warnings","reference/migration.html#deprecated-alias-table","reference/migration.html#migration-examples","reference/migration.html#module-level-function-deprecation-reminder","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps-1","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":18,"breadcrumbs":6,"title":5},"1":{"body":67,"breadcrumbs":3,"title":2},"10":{"body":10,"breadcrumbs":3,"title":2},"100":{"body":42,"breadcrumbs":6,"title":3},"1000":{"body":0,"breadcrumbs":4,"title":2},"1001":{"body":53,"breadcrumbs":4,"title":2},"1002":{"body":11,"breadcrumbs":4,"title":2},"1003":{"body":0,"breadcrumbs":4,"title":2},"1004":{"body":45,"breadcrumbs":4,"title":2},"1005":{"body":23,"breadcrumbs":4,"title":2},"1006":{"body":0,"breadcrumbs":4,"title":2},"1007":{"body":23,"breadcrumbs":4,"title":2},"1008":{"body":310,"breadcrumbs":4,"title":2},"1009":{"body":23,"breadcrumbs":4,"title":2},"101":{"body":11,"breadcrumbs":4,"title":1},"1010":{"body":9,"breadcrumbs":5,"title":3},"1011":{"body":21,"breadcrumbs":5,"title":3},"1012":{"body":35,"breadcrumbs":4,"title":2},"1013":{"body":34,"breadcrumbs":4,"title":2},"1014":{"body":10,"breadcrumbs":5,"title":3},"1015":{"body":37,"breadcrumbs":3,"title":1},"1016":{"body":24,"breadcrumbs":5,"title":3},"1017":{"body":41,"breadcrumbs":6,"title":4},"1018":{"body":24,"breadcrumbs":4,"title":2},"1019":{"body":11,"breadcrumbs":4,"title":2},"102":{"body":122,"breadcrumbs":4,"title":1},"1020":{"body":43,"breadcrumbs":4,"title":2},"1021":{"body":12,"breadcrumbs":5,"title":3},"1022":{"body":74,"breadcrumbs":4,"title":2},"1023":{"body":19,"breadcrumbs":4,"title":2},"1024":{"body":41,"breadcrumbs":4,"title":2},"1025":{"body":33,"breadcrumbs":4,"title":2},"1026":{"body":6,"breadcrumbs":5,"title":3},"1027":{"body":22,"breadcrumbs":3,"title":1},"1028":{"body":6,"breadcrumbs":3,"title":1},"1029":{"body":23,"breadcrumbs":4,"title":2},"103":{"body":119,"breadcrumbs":5,"title":2},"1030":{"body":8,"breadcrumbs":5,"title":3},"1031":{"body":17,"breadcrumbs":4,"title":2},"1032":{"body":20,"breadcrumbs":4,"title":2},"1033":{"body":119,"breadcrumbs":5,"title":3},"1034":{"body":31,"breadcrumbs":4,"title":2},"1035":{"body":6,"breadcrumbs":4,"title":2},"1036":{"body":23,"breadcrumbs":4,"title":2},"1037":{"body":26,"breadcrumbs":4,"title":2},"1038":{"body":3,"breadcrumbs":4,"title":2},"1039":{"body":22,"breadcrumbs":4,"title":2},"104":{"body":53,"breadcrumbs":4,"title":1},"1040":{"body":8,"breadcrumbs":4,"title":2},"1041":{"body":0,"breadcrumbs":4,"title":2},"1042":{"body":23,"breadcrumbs":4,"title":2},"1043":{"body":28,"breadcrumbs":4,"title":2},"1044":{"body":0,"breadcrumbs":5,"title":3},"1045":{"body":17,"breadcrumbs":5,"title":3},"1046":{"body":38,"breadcrumbs":5,"title":3},"1047":{"body":15,"breadcrumbs":5,"title":3},"1048":{"body":6,"breadcrumbs":5,"title":3},"1049":{"body":10,"breadcrumbs":5,"title":3},"105":{"body":22,"breadcrumbs":5,"title":2},"1050":{"body":0,"breadcrumbs":4,"title":2},"1051":{"body":14,"breadcrumbs":3,"title":1},"1052":{"body":80,"breadcrumbs":3,"title":1},"1053":{"body":15,"breadcrumbs":3,"title":1},"1054":{"body":0,"breadcrumbs":4,"title":2},"1055":{"body":11,"breadcrumbs":4,"title":2},"1056":{"body":13,"breadcrumbs":4,"title":2},"1057":{"body":12,"breadcrumbs":3,"title":1},"1058":{"body":0,"breadcrumbs":5,"title":3},"1059":{"body":168,"breadcrumbs":5,"title":3},"106":{"body":30,"breadcrumbs":6,"title":3},"1060":{"body":34,"breadcrumbs":5,"title":3},"1061":{"body":26,"breadcrumbs":6,"title":4},"1062":{"body":22,"breadcrumbs":5,"title":3},"1063":{"body":16,"breadcrumbs":3,"title":1},"1064":{"body":25,"breadcrumbs":4,"title":2},"1065":{"body":0,"breadcrumbs":5,"title":3},"1066":{"body":19,"breadcrumbs":5,"title":3},"1067":{"body":22,"breadcrumbs":4,"title":2},"1068":{"body":24,"breadcrumbs":4,"title":2},"1069":{"body":12,"breadcrumbs":4,"title":2},"107":{"body":116,"breadcrumbs":6,"title":3},"1070":{"body":52,"breadcrumbs":4,"title":2},"1071":{"body":27,"breadcrumbs":4,"title":2},"1072":{"body":12,"breadcrumbs":5,"title":3},"1073":{"body":28,"breadcrumbs":4,"title":2},"1074":{"body":42,"breadcrumbs":5,"title":3},"1075":{"body":35,"breadcrumbs":5,"title":3},"1076":{"body":0,"breadcrumbs":5,"title":3},"1077":{"body":33,"breadcrumbs":5,"title":3},"1078":{"body":24,"breadcrumbs":4,"title":2},"1079":{"body":56,"breadcrumbs":5,"title":3},"108":{"body":0,"breadcrumbs":4,"title":1},"1080":{"body":80,"breadcrumbs":5,"title":3},"1081":{"body":9,"breadcrumbs":6,"title":4},"1082":{"body":70,"breadcrumbs":4,"title":2},"1083":{"body":22,"breadcrumbs":5,"title":3},"1084":{"body":42,"breadcrumbs":5,"title":3},"1085":{"body":7,"breadcrumbs":6,"title":4},"1086":{"body":33,"breadcrumbs":6,"title":4},"1087":{"body":9,"breadcrumbs":5,"title":3},"1088":{"body":0,"breadcrumbs":4,"title":2},"1089":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":11,"breadcrumbs":5,"title":2},"1090":{"body":24,"breadcrumbs":4,"title":2},"1091":{"body":14,"breadcrumbs":4,"title":2},"1092":{"body":0,"breadcrumbs":4,"title":2},"1093":{"body":15,"breadcrumbs":4,"title":2},"1094":{"body":19,"breadcrumbs":5,"title":3},"1095":{"body":21,"breadcrumbs":5,"title":3},"1096":{"body":15,"breadcrumbs":3,"title":1},"1097":{"body":18,"breadcrumbs":4,"title":2},"1098":{"body":54,"breadcrumbs":4,"title":2},"1099":{"body":4,"breadcrumbs":5,"title":3},"11":{"body":3,"breadcrumbs":2,"title":1},"110":{"body":23,"breadcrumbs":6,"title":3},"1100":{"body":13,"breadcrumbs":3,"title":1},"1101":{"body":24,"breadcrumbs":3,"title":1},"1102":{"body":3,"breadcrumbs":3,"title":1},"1103":{"body":11,"breadcrumbs":4,"title":2},"1104":{"body":21,"breadcrumbs":3,"title":1},"1105":{"body":7,"breadcrumbs":4,"title":2},"1106":{"body":14,"breadcrumbs":3,"title":1},"1107":{"body":24,"breadcrumbs":3,"title":1},"1108":{"body":3,"breadcrumbs":3,"title":1},"1109":{"body":10,"breadcrumbs":4,"title":2},"111":{"body":9,"breadcrumbs":6,"title":3},"1110":{"body":12,"breadcrumbs":3,"title":1},"1111":{"body":7,"breadcrumbs":5,"title":3},"1112":{"body":18,"breadcrumbs":3,"title":1},"1113":{"body":27,"breadcrumbs":3,"title":1},"1114":{"body":3,"breadcrumbs":3,"title":1},"1115":{"body":14,"breadcrumbs":4,"title":2},"1116":{"body":13,"breadcrumbs":3,"title":1},"1117":{"body":8,"breadcrumbs":4,"title":2},"1118":{"body":18,"breadcrumbs":3,"title":1},"1119":{"body":20,"breadcrumbs":3,"title":1},"112":{"body":0,"breadcrumbs":4,"title":1},"1120":{"body":2,"breadcrumbs":3,"title":1},"1121":{"body":12,"breadcrumbs":4,"title":2},"1122":{"body":8,"breadcrumbs":3,"title":1},"1123":{"body":0,"breadcrumbs":5,"title":3},"1124":{"body":26,"breadcrumbs":4,"title":2},"1125":{"body":41,"breadcrumbs":4,"title":2},"1126":{"body":20,"breadcrumbs":4,"title":2},"1127":{"body":30,"breadcrumbs":4,"title":2},"1128":{"body":46,"breadcrumbs":4,"title":2},"1129":{"body":20,"breadcrumbs":3,"title":1},"113":{"body":13,"breadcrumbs":5,"title":2},"1130":{"body":56,"breadcrumbs":4,"title":2},"1131":{"body":32,"breadcrumbs":4,"title":2},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":15,"breadcrumbs":4,"title":2},"1134":{"body":13,"breadcrumbs":4,"title":2},"1135":{"body":19,"breadcrumbs":4,"title":2},"1136":{"body":14,"breadcrumbs":3,"title":1},"1137":{"body":18,"breadcrumbs":6,"title":3},"1138":{"body":53,"breadcrumbs":5,"title":2},"1139":{"body":45,"breadcrumbs":4,"title":1},"114":{"body":15,"breadcrumbs":6,"title":3},"1140":{"body":77,"breadcrumbs":6,"title":3},"1141":{"body":37,"breadcrumbs":6,"title":3},"1142":{"body":45,"breadcrumbs":4,"title":1},"1143":{"body":32,"breadcrumbs":5,"title":2},"1144":{"body":61,"breadcrumbs":4,"title":2},"1145":{"body":60,"breadcrumbs":5,"title":3},"1146":{"body":33,"breadcrumbs":4,"title":2},"1147":{"body":53,"breadcrumbs":6,"title":4},"1148":{"body":44,"breadcrumbs":4,"title":2},"1149":{"body":13,"breadcrumbs":4,"title":2},"115":{"body":6,"breadcrumbs":6,"title":3},"1150":{"body":29,"breadcrumbs":5,"title":3},"1151":{"body":26,"breadcrumbs":4,"title":2},"1152":{"body":28,"breadcrumbs":4,"title":2},"1153":{"body":18,"breadcrumbs":4,"title":2},"1154":{"body":24,"breadcrumbs":3,"title":1},"1155":{"body":0,"breadcrumbs":5,"title":3},"1156":{"body":48,"breadcrumbs":4,"title":2},"1157":{"body":161,"breadcrumbs":5,"title":3},"1158":{"body":0,"breadcrumbs":5,"title":3},"1159":{"body":7,"breadcrumbs":5,"title":3},"116":{"body":46,"breadcrumbs":5,"title":2},"1160":{"body":16,"breadcrumbs":4,"title":2},"1161":{"body":19,"breadcrumbs":5,"title":3},"1162":{"body":33,"breadcrumbs":5,"title":3},"1163":{"body":0,"breadcrumbs":5,"title":3},"1164":{"body":31,"breadcrumbs":4,"title":2},"1165":{"body":28,"breadcrumbs":4,"title":2},"1166":{"body":13,"breadcrumbs":4,"title":2},"1167":{"body":13,"breadcrumbs":4,"title":2},"1168":{"body":0,"breadcrumbs":4,"title":2},"1169":{"body":56,"breadcrumbs":5,"title":3},"117":{"body":30,"breadcrumbs":5,"title":2},"1170":{"body":0,"breadcrumbs":3,"title":1},"1171":{"body":31,"breadcrumbs":4,"title":2},"1172":{"body":42,"breadcrumbs":4,"title":2},"1173":{"body":0,"breadcrumbs":4,"title":2},"1174":{"body":58,"breadcrumbs":4,"title":2},"1175":{"body":59,"breadcrumbs":4,"title":2},"1176":{"body":54,"breadcrumbs":5,"title":3},"1177":{"body":0,"breadcrumbs":4,"title":2},"1178":{"body":2,"breadcrumbs":4,"title":2},"1179":{"body":6,"breadcrumbs":4,"title":2},"118":{"body":19,"breadcrumbs":6,"title":3},"1180":{"body":15,"breadcrumbs":4,"title":2},"1181":{"body":12,"breadcrumbs":3,"title":1},"1182":{"body":28,"breadcrumbs":5,"title":3},"1183":{"body":32,"breadcrumbs":3,"title":1},"1184":{"body":37,"breadcrumbs":3,"title":1},"1185":{"body":46,"breadcrumbs":4,"title":2},"1186":{"body":26,"breadcrumbs":4,"title":2},"1187":{"body":82,"breadcrumbs":5,"title":3},"1188":{"body":41,"breadcrumbs":4,"title":2},"1189":{"body":29,"breadcrumbs":8,"title":5},"119":{"body":16,"breadcrumbs":7,"title":4},"1190":{"body":18,"breadcrumbs":4,"title":1},"1191":{"body":41,"breadcrumbs":7,"title":4},"1192":{"body":40,"breadcrumbs":8,"title":5},"1193":{"body":24,"breadcrumbs":8,"title":5},"1194":{"body":61,"breadcrumbs":4,"title":1},"1195":{"body":49,"breadcrumbs":6,"title":3},"1196":{"body":26,"breadcrumbs":6,"title":3},"1197":{"body":45,"breadcrumbs":4,"title":1},"1198":{"body":92,"breadcrumbs":6,"title":3},"1199":{"body":52,"breadcrumbs":6,"title":3},"12":{"body":3,"breadcrumbs":2,"title":1},"120":{"body":32,"breadcrumbs":6,"title":3},"1200":{"body":56,"breadcrumbs":6,"title":3},"1201":{"body":48,"breadcrumbs":5,"title":2},"1202":{"body":40,"breadcrumbs":5,"title":2},"1203":{"body":54,"breadcrumbs":4,"title":1},"1204":{"body":20,"breadcrumbs":4,"title":1},"1205":{"body":18,"breadcrumbs":4,"title":2},"1206":{"body":46,"breadcrumbs":6,"title":4},"1207":{"body":44,"breadcrumbs":4,"title":2},"1208":{"body":59,"breadcrumbs":4,"title":2},"1209":{"body":56,"breadcrumbs":5,"title":3},"121":{"body":59,"breadcrumbs":6,"title":3},"1210":{"body":49,"breadcrumbs":5,"title":3},"1211":{"body":18,"breadcrumbs":3,"title":1},"1212":{"body":14,"breadcrumbs":2,"title":1},"1213":{"body":0,"breadcrumbs":3,"title":2},"1214":{"body":23,"breadcrumbs":4,"title":3},"1215":{"body":169,"breadcrumbs":3,"title":2},"1216":{"body":0,"breadcrumbs":3,"title":2},"1217":{"body":63,"breadcrumbs":4,"title":3},"1218":{"body":64,"breadcrumbs":3,"title":2},"1219":{"body":33,"breadcrumbs":5,"title":4},"122":{"body":35,"breadcrumbs":6,"title":3},"1220":{"body":187,"breadcrumbs":7,"title":6},"1221":{"body":28,"breadcrumbs":4,"title":3},"1222":{"body":0,"breadcrumbs":3,"title":2},"1223":{"body":125,"breadcrumbs":4,"title":3},"1224":{"body":63,"breadcrumbs":4,"title":3},"1225":{"body":0,"breadcrumbs":2,"title":1},"1226":{"body":93,"breadcrumbs":4,"title":3},"1227":{"body":27,"breadcrumbs":4,"title":3},"1228":{"body":0,"breadcrumbs":3,"title":2},"1229":{"body":96,"breadcrumbs":3,"title":2},"123":{"body":22,"breadcrumbs":2,"title":1},"1230":{"body":13,"breadcrumbs":3,"title":2},"1231":{"body":10,"breadcrumbs":3,"title":2},"1232":{"body":0,"breadcrumbs":3,"title":2},"1233":{"body":55,"breadcrumbs":3,"title":2},"1234":{"body":7,"breadcrumbs":4,"title":3},"1235":{"body":22,"breadcrumbs":5,"title":4},"1236":{"body":140,"breadcrumbs":3,"title":2},"1237":{"body":15,"breadcrumbs":4,"title":3},"1238":{"body":39,"breadcrumbs":4,"title":3},"1239":{"body":12,"breadcrumbs":2,"title":1},"124":{"body":31,"breadcrumbs":4,"title":3},"1240":{"body":22,"breadcrumbs":5,"title":4},"1241":{"body":31,"breadcrumbs":5,"title":4},"1242":{"body":0,"breadcrumbs":3,"title":2},"1243":{"body":17,"breadcrumbs":4,"title":3},"1244":{"body":33,"breadcrumbs":5,"title":4},"1245":{"body":21,"breadcrumbs":5,"title":4},"1246":{"body":20,"breadcrumbs":5,"title":4},"1247":{"body":15,"breadcrumbs":2,"title":1},"1248":{"body":16,"breadcrumbs":4,"title":2},"1249":{"body":44,"breadcrumbs":5,"title":3},"125":{"body":0,"breadcrumbs":3,"title":2},"1250":{"body":38,"breadcrumbs":5,"title":3},"1251":{"body":35,"breadcrumbs":4,"title":2},"1252":{"body":42,"breadcrumbs":8,"title":6},"1253":{"body":0,"breadcrumbs":9,"title":7},"1254":{"body":54,"breadcrumbs":3,"title":1},"1255":{"body":52,"breadcrumbs":3,"title":1},"1256":{"body":16,"breadcrumbs":8,"title":6},"1257":{"body":24,"breadcrumbs":3,"title":1},"1258":{"body":47,"breadcrumbs":3,"title":1},"1259":{"body":6,"breadcrumbs":5,"title":3},"126":{"body":16,"breadcrumbs":2,"title":1},"1260":{"body":11,"breadcrumbs":4,"title":2},"1261":{"body":17,"breadcrumbs":4,"title":2},"1262":{"body":24,"breadcrumbs":5,"title":3},"1263":{"body":0,"breadcrumbs":4,"title":2},"1264":{"body":26,"breadcrumbs":6,"title":4},"1265":{"body":63,"breadcrumbs":6,"title":4},"1266":{"body":28,"breadcrumbs":6,"title":4},"1267":{"body":55,"breadcrumbs":4,"title":2},"1268":{"body":9,"breadcrumbs":3,"title":1},"1269":{"body":11,"breadcrumbs":3,"title":1},"127":{"body":19,"breadcrumbs":2,"title":1},"1270":{"body":25,"breadcrumbs":4,"title":2},"1271":{"body":27,"breadcrumbs":5,"title":3},"1272":{"body":9,"breadcrumbs":5,"title":3},"1273":{"body":52,"breadcrumbs":4,"title":2},"1274":{"body":9,"breadcrumbs":5,"title":3},"1275":{"body":33,"breadcrumbs":4,"title":2},"1276":{"body":47,"breadcrumbs":4,"title":2},"1277":{"body":72,"breadcrumbs":9,"title":7},"1278":{"body":36,"breadcrumbs":5,"title":3},"1279":{"body":166,"breadcrumbs":4,"title":2},"128":{"body":18,"breadcrumbs":2,"title":1},"1280":{"body":51,"breadcrumbs":4,"title":2},"1281":{"body":28,"breadcrumbs":8,"title":3},"1282":{"body":50,"breadcrumbs":9,"title":4},"1283":{"body":55,"breadcrumbs":7,"title":2},"1284":{"body":21,"breadcrumbs":7,"title":2},"1285":{"body":16,"breadcrumbs":10,"title":4},"1286":{"body":40,"breadcrumbs":9,"title":3},"1287":{"body":25,"breadcrumbs":8,"title":2},"1288":{"body":34,"breadcrumbs":9,"title":3},"1289":{"body":23,"breadcrumbs":8,"title":2},"129":{"body":19,"breadcrumbs":3,"title":2},"1290":{"body":50,"breadcrumbs":8,"title":2},"1291":{"body":20,"breadcrumbs":8,"title":2},"1292":{"body":8,"breadcrumbs":8,"title":3},"1293":{"body":28,"breadcrumbs":7,"title":2},"1294":{"body":45,"breadcrumbs":7,"title":2},"1295":{"body":11,"breadcrumbs":8,"title":3},"1296":{"body":31,"breadcrumbs":7,"title":2},"1297":{"body":43,"breadcrumbs":7,"title":2},"1298":{"body":27,"breadcrumbs":7,"title":2},"1299":{"body":44,"breadcrumbs":7,"title":2},"13":{"body":18,"breadcrumbs":2,"title":1},"130":{"body":45,"breadcrumbs":3,"title":2},"1300":{"body":27,"breadcrumbs":7,"title":2},"1301":{"body":8,"breadcrumbs":9,"title":4},"1302":{"body":90,"breadcrumbs":7,"title":2},"1303":{"body":63,"breadcrumbs":7,"title":2},"1304":{"body":0,"breadcrumbs":6,"title":1},"1305":{"body":7,"breadcrumbs":9,"title":4},"1306":{"body":21,"breadcrumbs":10,"title":5},"1307":{"body":16,"breadcrumbs":9,"title":4},"1308":{"body":0,"breadcrumbs":7,"title":2},"1309":{"body":14,"breadcrumbs":9,"title":4},"131":{"body":42,"breadcrumbs":3,"title":2},"1310":{"body":14,"breadcrumbs":8,"title":3},"1311":{"body":14,"breadcrumbs":8,"title":3},"1312":{"body":13,"breadcrumbs":8,"title":3},"1313":{"body":22,"breadcrumbs":6,"title":4},"1314":{"body":11,"breadcrumbs":3,"title":1},"1315":{"body":42,"breadcrumbs":6,"title":4},"1316":{"body":32,"breadcrumbs":6,"title":4},"1317":{"body":70,"breadcrumbs":6,"title":4},"1318":{"body":0,"breadcrumbs":6,"title":4},"1319":{"body":30,"breadcrumbs":7,"title":5},"132":{"body":44,"breadcrumbs":6,"title":5},"1320":{"body":29,"breadcrumbs":9,"title":7},"1321":{"body":90,"breadcrumbs":7,"title":5},"1322":{"body":35,"breadcrumbs":7,"title":5},"1323":{"body":17,"breadcrumbs":4,"title":2},"1324":{"body":24,"breadcrumbs":8,"title":4},"1325":{"body":83,"breadcrumbs":5,"title":1},"1326":{"body":55,"breadcrumbs":6,"title":2},"1327":{"body":43,"breadcrumbs":6,"title":2},"1328":{"body":215,"breadcrumbs":9,"title":5},"1329":{"body":72,"breadcrumbs":6,"title":2},"133":{"body":40,"breadcrumbs":3,"title":2},"1330":{"body":39,"breadcrumbs":7,"title":3},"1331":{"body":41,"breadcrumbs":6,"title":2},"1332":{"body":21,"breadcrumbs":8,"title":4},"1333":{"body":5,"breadcrumbs":6,"title":2},"1334":{"body":27,"breadcrumbs":6,"title":2},"1335":{"body":17,"breadcrumbs":6,"title":2},"1336":{"body":23,"breadcrumbs":6,"title":2},"1337":{"body":0,"breadcrumbs":5,"title":1},"1338":{"body":38,"breadcrumbs":8,"title":4},"1339":{"body":21,"breadcrumbs":7,"title":3},"134":{"body":22,"breadcrumbs":5,"title":3},"1340":{"body":12,"breadcrumbs":6,"title":2},"1341":{"body":0,"breadcrumbs":5,"title":1},"1342":{"body":32,"breadcrumbs":6,"title":2},"1343":{"body":42,"breadcrumbs":7,"title":3},"1344":{"body":0,"breadcrumbs":5,"title":1},"1345":{"body":28,"breadcrumbs":6,"title":2},"1346":{"body":19,"breadcrumbs":6,"title":2},"1347":{"body":29,"breadcrumbs":5,"title":1},"1348":{"body":0,"breadcrumbs":5,"title":1},"1349":{"body":50,"breadcrumbs":7,"title":3},"135":{"body":0,"breadcrumbs":4,"title":2},"1350":{"body":30,"breadcrumbs":6,"title":2},"1351":{"body":20,"breadcrumbs":7,"title":3},"1352":{"body":36,"breadcrumbs":8,"title":4},"1353":{"body":9,"breadcrumbs":8,"title":5},"1354":{"body":46,"breadcrumbs":5,"title":2},"1355":{"body":40,"breadcrumbs":5,"title":2},"1356":{"body":26,"breadcrumbs":5,"title":2},"1357":{"body":74,"breadcrumbs":4,"title":1},"1358":{"body":66,"breadcrumbs":4,"title":1},"1359":{"body":59,"breadcrumbs":3,"title":0},"136":{"body":62,"breadcrumbs":7,"title":5},"1360":{"body":22,"breadcrumbs":5,"title":2},"1361":{"body":29,"breadcrumbs":6,"title":3},"1362":{"body":11,"breadcrumbs":6,"title":3},"1363":{"body":22,"breadcrumbs":5,"title":2},"1364":{"body":26,"breadcrumbs":5,"title":2},"1365":{"body":31,"breadcrumbs":5,"title":2},"1366":{"body":78,"breadcrumbs":6,"title":3},"1367":{"body":106,"breadcrumbs":6,"title":3},"1368":{"body":50,"breadcrumbs":6,"title":3},"1369":{"body":41,"breadcrumbs":6,"title":3},"137":{"body":67,"breadcrumbs":8,"title":6},"1370":{"body":17,"breadcrumbs":6,"title":3},"1371":{"body":14,"breadcrumbs":5,"title":2},"1372":{"body":14,"breadcrumbs":6,"title":3},"1373":{"body":9,"breadcrumbs":6,"title":3},"1374":{"body":15,"breadcrumbs":5,"title":2},"1375":{"body":15,"breadcrumbs":5,"title":2},"1376":{"body":43,"breadcrumbs":5,"title":2},"1377":{"body":23,"breadcrumbs":5,"title":2},"1378":{"body":61,"breadcrumbs":6,"title":3},"1379":{"body":32,"breadcrumbs":5,"title":2},"138":{"body":51,"breadcrumbs":7,"title":5},"1380":{"body":70,"breadcrumbs":5,"title":2},"1381":{"body":40,"breadcrumbs":5,"title":2},"1382":{"body":35,"breadcrumbs":6,"title":3},"1383":{"body":0,"breadcrumbs":5,"title":2},"1384":{"body":73,"breadcrumbs":7,"title":4},"1385":{"body":63,"breadcrumbs":9,"title":6},"1386":{"body":50,"breadcrumbs":6,"title":3},"1387":{"body":97,"breadcrumbs":6,"title":3},"1388":{"body":82,"breadcrumbs":6,"title":3},"1389":{"body":52,"breadcrumbs":4,"title":2},"139":{"body":70,"breadcrumbs":4,"title":2},"1390":{"body":0,"breadcrumbs":4,"title":2},"1391":{"body":53,"breadcrumbs":6,"title":4},"1392":{"body":46,"breadcrumbs":4,"title":2},"1393":{"body":33,"breadcrumbs":5,"title":3},"1394":{"body":71,"breadcrumbs":7,"title":5},"1395":{"body":32,"breadcrumbs":3,"title":1},"1396":{"body":9,"breadcrumbs":3,"title":1},"1397":{"body":9,"breadcrumbs":4,"title":2},"1398":{"body":31,"breadcrumbs":4,"title":2},"1399":{"body":0,"breadcrumbs":4,"title":2},"14":{"body":45,"breadcrumbs":3,"title":2},"140":{"body":48,"breadcrumbs":5,"title":3},"1400":{"body":30,"breadcrumbs":5,"title":3},"1401":{"body":29,"breadcrumbs":4,"title":2},"1402":{"body":0,"breadcrumbs":4,"title":2},"1403":{"body":118,"breadcrumbs":4,"title":2},"1404":{"body":73,"breadcrumbs":4,"title":2},"1405":{"body":69,"breadcrumbs":4,"title":2},"1406":{"body":21,"breadcrumbs":5,"title":3},"1407":{"body":0,"breadcrumbs":4,"title":2},"1408":{"body":72,"breadcrumbs":4,"title":2},"1409":{"body":65,"breadcrumbs":4,"title":2},"141":{"body":56,"breadcrumbs":4,"title":2},"1410":{"body":159,"breadcrumbs":5,"title":3},"1411":{"body":0,"breadcrumbs":4,"title":2},"1412":{"body":54,"breadcrumbs":5,"title":3},"1413":{"body":93,"breadcrumbs":5,"title":3},"1414":{"body":47,"breadcrumbs":4,"title":2},"1415":{"body":0,"breadcrumbs":4,"title":2},"1416":{"body":45,"breadcrumbs":4,"title":2},"1417":{"body":0,"breadcrumbs":4,"title":2},"1418":{"body":43,"breadcrumbs":5,"title":3},"1419":{"body":59,"breadcrumbs":4,"title":2},"142":{"body":17,"breadcrumbs":4,"title":2},"1420":{"body":52,"breadcrumbs":5,"title":3},"1421":{"body":0,"breadcrumbs":4,"title":2},"1422":{"body":36,"breadcrumbs":5,"title":3},"1423":{"body":32,"breadcrumbs":4,"title":2},"1424":{"body":0,"breadcrumbs":4,"title":2},"1425":{"body":36,"breadcrumbs":5,"title":3},"1426":{"body":56,"breadcrumbs":4,"title":2},"1427":{"body":16,"breadcrumbs":3,"title":1},"1428":{"body":8,"breadcrumbs":4,"title":2},"1429":{"body":37,"breadcrumbs":3,"title":1},"143":{"body":43,"breadcrumbs":4,"title":2},"1430":{"body":0,"breadcrumbs":5,"title":3},"1431":{"body":58,"breadcrumbs":5,"title":3},"1432":{"body":49,"breadcrumbs":4,"title":2},"1433":{"body":68,"breadcrumbs":4,"title":2},"1434":{"body":0,"breadcrumbs":5,"title":3},"1435":{"body":173,"breadcrumbs":5,"title":3},"1436":{"body":85,"breadcrumbs":4,"title":2},"1437":{"body":0,"breadcrumbs":4,"title":2},"1438":{"body":152,"breadcrumbs":4,"title":2},"1439":{"body":106,"breadcrumbs":4,"title":2},"144":{"body":39,"breadcrumbs":3,"title":1},"1440":{"body":0,"breadcrumbs":3,"title":1},"1441":{"body":91,"breadcrumbs":6,"title":4},"1442":{"body":56,"breadcrumbs":4,"title":2},"1443":{"body":45,"breadcrumbs":5,"title":3},"1444":{"body":0,"breadcrumbs":4,"title":2},"1445":{"body":152,"breadcrumbs":6,"title":4},"1446":{"body":0,"breadcrumbs":4,"title":2},"1447":{"body":130,"breadcrumbs":6,"title":4},"1448":{"body":0,"breadcrumbs":3,"title":1},"1449":{"body":137,"breadcrumbs":5,"title":3},"145":{"body":13,"breadcrumbs":4,"title":2},"1450":{"body":18,"breadcrumbs":3,"title":1},"1451":{"body":9,"breadcrumbs":4,"title":2},"1452":{"body":15,"breadcrumbs":3,"title":1},"1453":{"body":0,"breadcrumbs":5,"title":3},"1454":{"body":56,"breadcrumbs":5,"title":3},"1455":{"body":48,"breadcrumbs":4,"title":2},"1456":{"body":63,"breadcrumbs":4,"title":2},"1457":{"body":0,"breadcrumbs":5,"title":3},"1458":{"body":208,"breadcrumbs":5,"title":3},"1459":{"body":69,"breadcrumbs":4,"title":2},"146":{"body":22,"breadcrumbs":4,"title":2},"1460":{"body":0,"breadcrumbs":4,"title":2},"1461":{"body":108,"breadcrumbs":5,"title":3},"1462":{"body":58,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":3,"title":1},"1464":{"body":88,"breadcrumbs":6,"title":4},"1465":{"body":53,"breadcrumbs":4,"title":2},"1466":{"body":42,"breadcrumbs":5,"title":3},"1467":{"body":0,"breadcrumbs":4,"title":2},"1468":{"body":143,"breadcrumbs":6,"title":4},"1469":{"body":0,"breadcrumbs":4,"title":2},"147":{"body":40,"breadcrumbs":4,"title":2},"1470":{"body":163,"breadcrumbs":5,"title":3},"1471":{"body":0,"breadcrumbs":3,"title":1},"1472":{"body":142,"breadcrumbs":4,"title":2},"1473":{"body":0,"breadcrumbs":4,"title":2},"1474":{"body":145,"breadcrumbs":6,"title":4},"1475":{"body":15,"breadcrumbs":3,"title":1},"1476":{"body":20,"breadcrumbs":4,"title":2},"1477":{"body":32,"breadcrumbs":3,"title":1},"1478":{"body":26,"breadcrumbs":4,"title":2},"1479":{"body":31,"breadcrumbs":3,"title":1},"148":{"body":27,"breadcrumbs":4,"title":2},"1480":{"body":14,"breadcrumbs":5,"title":3},"1481":{"body":18,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":6,"title":3},"1483":{"body":0,"breadcrumbs":5,"title":2},"1484":{"body":8,"breadcrumbs":5,"title":2},"1485":{"body":145,"breadcrumbs":5,"title":2},"1486":{"body":141,"breadcrumbs":5,"title":2},"1487":{"body":218,"breadcrumbs":5,"title":2},"1488":{"body":14,"breadcrumbs":5,"title":2},"1489":{"body":8,"breadcrumbs":5,"title":2},"149":{"body":6,"breadcrumbs":2,"title":1},"1490":{"body":0,"breadcrumbs":5,"title":2},"1491":{"body":15,"breadcrumbs":5,"title":2},"1492":{"body":0,"breadcrumbs":5,"title":2},"1493":{"body":20,"breadcrumbs":5,"title":2},"1494":{"body":0,"breadcrumbs":5,"title":2},"1495":{"body":20,"breadcrumbs":5,"title":2},"1496":{"body":8,"breadcrumbs":5,"title":2},"1497":{"body":157,"breadcrumbs":6,"title":3},"1498":{"body":112,"breadcrumbs":6,"title":3},"1499":{"body":105,"breadcrumbs":6,"title":3},"15":{"body":4,"breadcrumbs":2,"title":1},"150":{"body":0,"breadcrumbs":3,"title":2},"1500":{"body":86,"breadcrumbs":6,"title":3},"1501":{"body":61,"breadcrumbs":5,"title":2},"1502":{"body":0,"breadcrumbs":5,"title":2},"1503":{"body":49,"breadcrumbs":6,"title":3},"1504":{"body":42,"breadcrumbs":5,"title":2},"1505":{"body":21,"breadcrumbs":6,"title":3},"1506":{"body":24,"breadcrumbs":5,"title":2},"1507":{"body":22,"breadcrumbs":5,"title":2},"1508":{"body":18,"breadcrumbs":5,"title":2},"1509":{"body":0,"breadcrumbs":5,"title":2},"151":{"body":23,"breadcrumbs":4,"title":3},"1510":{"body":27,"breadcrumbs":5,"title":2},"1511":{"body":14,"breadcrumbs":5,"title":2},"1512":{"body":20,"breadcrumbs":4,"title":2},"1513":{"body":0,"breadcrumbs":3,"title":1},"1514":{"body":55,"breadcrumbs":5,"title":3},"1515":{"body":98,"breadcrumbs":5,"title":3},"1516":{"body":25,"breadcrumbs":4,"title":2},"1517":{"body":76,"breadcrumbs":5,"title":3},"1518":{"body":15,"breadcrumbs":4,"title":2},"1519":{"body":91,"breadcrumbs":4,"title":2},"152":{"body":23,"breadcrumbs":4,"title":3},"1520":{"body":91,"breadcrumbs":4,"title":2},"1521":{"body":117,"breadcrumbs":4,"title":2},"1522":{"body":35,"breadcrumbs":4,"title":2},"1523":{"body":0,"breadcrumbs":4,"title":2},"1524":{"body":15,"breadcrumbs":4,"title":2},"1525":{"body":41,"breadcrumbs":4,"title":2},"1526":{"body":21,"breadcrumbs":5,"title":3},"1527":{"body":8,"breadcrumbs":5,"title":3},"1528":{"body":22,"breadcrumbs":5,"title":3},"1529":{"body":56,"breadcrumbs":5,"title":3},"153":{"body":19,"breadcrumbs":5,"title":4},"1530":{"body":110,"breadcrumbs":5,"title":3},"1531":{"body":15,"breadcrumbs":4,"title":2},"1532":{"body":81,"breadcrumbs":5,"title":3},"1533":{"body":117,"breadcrumbs":5,"title":3},"1534":{"body":41,"breadcrumbs":4,"title":2},"1535":{"body":36,"breadcrumbs":4,"title":2},"1536":{"body":30,"breadcrumbs":4,"title":2},"1537":{"body":37,"breadcrumbs":4,"title":2},"1538":{"body":36,"breadcrumbs":6,"title":4},"1539":{"body":8,"breadcrumbs":4,"title":2},"154":{"body":0,"breadcrumbs":3,"title":2},"1540":{"body":40,"breadcrumbs":5,"title":3},"1541":{"body":0,"breadcrumbs":4,"title":2},"1542":{"body":25,"breadcrumbs":4,"title":2},"1543":{"body":28,"breadcrumbs":4,"title":2},"1544":{"body":22,"breadcrumbs":5,"title":3},"1545":{"body":0,"breadcrumbs":4,"title":2},"1546":{"body":23,"breadcrumbs":5,"title":3},"1547":{"body":27,"breadcrumbs":5,"title":3},"1548":{"body":21,"breadcrumbs":5,"title":3},"1549":{"body":27,"breadcrumbs":4,"title":2},"155":{"body":15,"breadcrumbs":3,"title":2},"1550":{"body":0,"breadcrumbs":4,"title":2},"1551":{"body":20,"breadcrumbs":4,"title":2},"1552":{"body":20,"breadcrumbs":4,"title":2},"1553":{"body":20,"breadcrumbs":5,"title":3},"1554":{"body":22,"breadcrumbs":5,"title":3},"1555":{"body":0,"breadcrumbs":5,"title":3},"1556":{"body":35,"breadcrumbs":5,"title":3},"1557":{"body":37,"breadcrumbs":5,"title":3},"1558":{"body":30,"breadcrumbs":4,"title":2},"1559":{"body":22,"breadcrumbs":5,"title":3},"156":{"body":41,"breadcrumbs":5,"title":4},"1560":{"body":0,"breadcrumbs":4,"title":2},"1561":{"body":24,"breadcrumbs":4,"title":2},"1562":{"body":27,"breadcrumbs":5,"title":3},"1563":{"body":23,"breadcrumbs":4,"title":2},"1564":{"body":21,"breadcrumbs":4,"title":2},"1565":{"body":0,"breadcrumbs":4,"title":2},"1566":{"body":24,"breadcrumbs":4,"title":2},"1567":{"body":18,"breadcrumbs":4,"title":2},"1568":{"body":16,"breadcrumbs":3,"title":1},"1569":{"body":17,"breadcrumbs":4,"title":2},"157":{"body":15,"breadcrumbs":4,"title":3},"1570":{"body":0,"breadcrumbs":4,"title":2},"1571":{"body":23,"breadcrumbs":5,"title":3},"1572":{"body":23,"breadcrumbs":5,"title":3},"1573":{"body":22,"breadcrumbs":4,"title":2},"1574":{"body":0,"breadcrumbs":4,"title":2},"1575":{"body":24,"breadcrumbs":5,"title":3},"1576":{"body":19,"breadcrumbs":5,"title":3},"1577":{"body":18,"breadcrumbs":5,"title":3},"1578":{"body":0,"breadcrumbs":4,"title":2},"1579":{"body":13,"breadcrumbs":5,"title":3},"158":{"body":0,"breadcrumbs":3,"title":2},"1580":{"body":6,"breadcrumbs":4,"title":2},"1581":{"body":8,"breadcrumbs":4,"title":2},"1582":{"body":13,"breadcrumbs":4,"title":2},"1583":{"body":13,"breadcrumbs":3,"title":1},"1584":{"body":7,"breadcrumbs":6,"title":3},"1585":{"body":22,"breadcrumbs":5,"title":2},"1586":{"body":41,"breadcrumbs":6,"title":3},"1587":{"body":40,"breadcrumbs":5,"title":2},"1588":{"body":60,"breadcrumbs":7,"title":4},"1589":{"body":52,"breadcrumbs":7,"title":4},"159":{"body":9,"breadcrumbs":4,"title":3},"1590":{"body":0,"breadcrumbs":5,"title":2},"1591":{"body":14,"breadcrumbs":6,"title":3},"1592":{"body":26,"breadcrumbs":6,"title":3},"1593":{"body":0,"breadcrumbs":4,"title":1},"1594":{"body":18,"breadcrumbs":8,"title":5},"1595":{"body":13,"breadcrumbs":5,"title":2},"1596":{"body":12,"breadcrumbs":5,"title":2},"1597":{"body":22,"breadcrumbs":6,"title":3},"1598":{"body":19,"breadcrumbs":7,"title":4},"1599":{"body":4,"breadcrumbs":6,"title":3},"16":{"body":19,"breadcrumbs":2,"title":1},"160":{"body":16,"breadcrumbs":4,"title":3},"1600":{"body":6,"breadcrumbs":4,"title":1},"1601":{"body":66,"breadcrumbs":4,"title":1},"1602":{"body":128,"breadcrumbs":4,"title":1},"1603":{"body":3,"breadcrumbs":6,"title":3},"1604":{"body":5,"breadcrumbs":4,"title":1},"1605":{"body":10,"breadcrumbs":4,"title":1},"1606":{"body":37,"breadcrumbs":4,"title":1},"1607":{"body":104,"breadcrumbs":4,"title":1},"1608":{"body":0,"breadcrumbs":6,"title":3},"1609":{"body":27,"breadcrumbs":7,"title":4},"161":{"body":9,"breadcrumbs":3,"title":2},"1610":{"body":31,"breadcrumbs":6,"title":3},"1611":{"body":14,"breadcrumbs":7,"title":4},"1612":{"body":20,"breadcrumbs":5,"title":2},"1613":{"body":28,"breadcrumbs":5,"title":2},"1614":{"body":13,"breadcrumbs":4,"title":1},"1615":{"body":9,"breadcrumbs":4,"title":2},"1616":{"body":22,"breadcrumbs":4,"title":2},"1617":{"body":0,"breadcrumbs":6,"title":4},"1618":{"body":61,"breadcrumbs":7,"title":5},"1619":{"body":46,"breadcrumbs":5,"title":3},"162":{"body":37,"breadcrumbs":3,"title":2},"1620":{"body":18,"breadcrumbs":6,"title":4},"1621":{"body":44,"breadcrumbs":6,"title":4},"1622":{"body":23,"breadcrumbs":6,"title":4},"1623":{"body":31,"breadcrumbs":4,"title":2},"1624":{"body":0,"breadcrumbs":5,"title":3},"1625":{"body":32,"breadcrumbs":4,"title":2},"1626":{"body":9,"breadcrumbs":5,"title":3},"1627":{"body":32,"breadcrumbs":5,"title":3},"1628":{"body":19,"breadcrumbs":6,"title":4},"1629":{"body":20,"breadcrumbs":5,"title":3},"163":{"body":12,"breadcrumbs":3,"title":2},"1630":{"body":61,"breadcrumbs":5,"title":3},"1631":{"body":52,"breadcrumbs":4,"title":2},"1632":{"body":25,"breadcrumbs":7,"title":5},"1633":{"body":0,"breadcrumbs":5,"title":3},"1634":{"body":23,"breadcrumbs":4,"title":2},"1635":{"body":34,"breadcrumbs":4,"title":2},"1636":{"body":0,"breadcrumbs":5,"title":3},"1637":{"body":51,"breadcrumbs":5,"title":3},"1638":{"body":22,"breadcrumbs":5,"title":3},"1639":{"body":0,"breadcrumbs":5,"title":3},"164":{"body":7,"breadcrumbs":2,"title":1},"1640":{"body":78,"breadcrumbs":5,"title":3},"1641":{"body":0,"breadcrumbs":5,"title":3},"1642":{"body":26,"breadcrumbs":4,"title":2},"1643":{"body":21,"breadcrumbs":6,"title":4},"1644":{"body":0,"breadcrumbs":5,"title":3},"1645":{"body":38,"breadcrumbs":5,"title":3},"1646":{"body":0,"breadcrumbs":4,"title":2},"1647":{"body":98,"breadcrumbs":5,"title":3},"1648":{"body":0,"breadcrumbs":5,"title":3},"1649":{"body":51,"breadcrumbs":7,"title":5},"165":{"body":10,"breadcrumbs":2,"title":1},"1650":{"body":0,"breadcrumbs":5,"title":3},"1651":{"body":49,"breadcrumbs":7,"title":5},"1652":{"body":0,"breadcrumbs":4,"title":2},"1653":{"body":46,"breadcrumbs":4,"title":2},"1654":{"body":36,"breadcrumbs":4,"title":2},"1655":{"body":35,"breadcrumbs":4,"title":2},"1656":{"body":12,"breadcrumbs":3,"title":1},"166":{"body":12,"breadcrumbs":4,"title":3},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":4,"breadcrumbs":3,"title":2},"169":{"body":7,"breadcrumbs":3,"title":2},"17":{"body":67,"breadcrumbs":4,"title":3},"170":{"body":10,"breadcrumbs":2,"title":1},"171":{"body":2,"breadcrumbs":3,"title":2},"172":{"body":16,"breadcrumbs":3,"title":2},"173":{"body":6,"breadcrumbs":3,"title":2},"174":{"body":49,"breadcrumbs":3,"title":2},"175":{"body":55,"breadcrumbs":3,"title":2},"176":{"body":29,"breadcrumbs":3,"title":2},"177":{"body":20,"breadcrumbs":3,"title":2},"178":{"body":20,"breadcrumbs":2,"title":1},"179":{"body":19,"breadcrumbs":3,"title":2},"18":{"body":0,"breadcrumbs":4,"title":3},"180":{"body":47,"breadcrumbs":3,"title":2},"181":{"body":0,"breadcrumbs":2,"title":1},"182":{"body":34,"breadcrumbs":3,"title":2},"183":{"body":30,"breadcrumbs":3,"title":2},"184":{"body":16,"breadcrumbs":3,"title":2},"185":{"body":30,"breadcrumbs":4,"title":2},"186":{"body":16,"breadcrumbs":4,"title":2},"187":{"body":39,"breadcrumbs":4,"title":2},"188":{"body":0,"breadcrumbs":3,"title":1},"189":{"body":18,"breadcrumbs":4,"title":2},"19":{"body":31,"breadcrumbs":4,"title":3},"190":{"body":16,"breadcrumbs":4,"title":2},"191":{"body":0,"breadcrumbs":4,"title":2},"192":{"body":11,"breadcrumbs":4,"title":2},"193":{"body":13,"breadcrumbs":4,"title":2},"194":{"body":0,"breadcrumbs":4,"title":2},"195":{"body":51,"breadcrumbs":4,"title":2},"196":{"body":69,"breadcrumbs":4,"title":2},"197":{"body":76,"breadcrumbs":4,"title":2},"198":{"body":27,"breadcrumbs":4,"title":2},"199":{"body":0,"breadcrumbs":4,"title":2},"2":{"body":56,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":4,"title":3},"200":{"body":62,"breadcrumbs":4,"title":2},"201":{"body":0,"breadcrumbs":4,"title":2},"202":{"body":118,"breadcrumbs":4,"title":2},"203":{"body":65,"breadcrumbs":4,"title":2},"204":{"body":62,"breadcrumbs":4,"title":2},"205":{"body":17,"breadcrumbs":5,"title":3},"206":{"body":59,"breadcrumbs":4,"title":2},"207":{"body":29,"breadcrumbs":4,"title":2},"208":{"body":0,"breadcrumbs":4,"title":2},"209":{"body":23,"breadcrumbs":5,"title":3},"21":{"body":22,"breadcrumbs":3,"title":2},"210":{"body":46,"breadcrumbs":5,"title":3},"211":{"body":18,"breadcrumbs":5,"title":3},"212":{"body":19,"breadcrumbs":4,"title":2},"213":{"body":15,"breadcrumbs":4,"title":2},"214":{"body":15,"breadcrumbs":4,"title":2},"215":{"body":20,"breadcrumbs":3,"title":1},"216":{"body":0,"breadcrumbs":5,"title":3},"217":{"body":16,"breadcrumbs":5,"title":3},"218":{"body":17,"breadcrumbs":4,"title":2},"219":{"body":50,"breadcrumbs":5,"title":3},"22":{"body":0,"breadcrumbs":3,"title":2},"220":{"body":28,"breadcrumbs":4,"title":2},"221":{"body":26,"breadcrumbs":5,"title":3},"222":{"body":35,"breadcrumbs":5,"title":3},"223":{"body":17,"breadcrumbs":4,"title":2},"224":{"body":25,"breadcrumbs":5,"title":3},"225":{"body":18,"breadcrumbs":4,"title":2},"226":{"body":0,"breadcrumbs":4,"title":2},"227":{"body":43,"breadcrumbs":4,"title":2},"228":{"body":15,"breadcrumbs":5,"title":3},"229":{"body":16,"breadcrumbs":4,"title":2},"23":{"body":16,"breadcrumbs":2,"title":1},"230":{"body":0,"breadcrumbs":4,"title":2},"231":{"body":3,"breadcrumbs":4,"title":2},"232":{"body":4,"breadcrumbs":6,"title":4},"233":{"body":17,"breadcrumbs":4,"title":2},"234":{"body":20,"breadcrumbs":4,"title":2},"235":{"body":105,"breadcrumbs":5,"title":3},"236":{"body":0,"breadcrumbs":4,"title":2},"237":{"body":26,"breadcrumbs":3,"title":1},"238":{"body":22,"breadcrumbs":4,"title":2},"239":{"body":18,"breadcrumbs":3,"title":1},"24":{"body":21,"breadcrumbs":2,"title":1},"240":{"body":14,"breadcrumbs":4,"title":2},"241":{"body":16,"breadcrumbs":4,"title":2},"242":{"body":22,"breadcrumbs":4,"title":2},"243":{"body":0,"breadcrumbs":4,"title":2},"244":{"body":32,"breadcrumbs":4,"title":2},"245":{"body":9,"breadcrumbs":3,"title":1},"246":{"body":12,"breadcrumbs":4,"title":2},"247":{"body":29,"breadcrumbs":4,"title":2},"248":{"body":72,"breadcrumbs":4,"title":2},"249":{"body":46,"breadcrumbs":5,"title":3},"25":{"body":14,"breadcrumbs":2,"title":1},"250":{"body":32,"breadcrumbs":4,"title":2},"251":{"body":0,"breadcrumbs":4,"title":2},"252":{"body":20,"breadcrumbs":4,"title":2},"253":{"body":33,"breadcrumbs":5,"title":3},"254":{"body":17,"breadcrumbs":4,"title":2},"255":{"body":0,"breadcrumbs":4,"title":2},"256":{"body":22,"breadcrumbs":4,"title":2},"257":{"body":7,"breadcrumbs":4,"title":2},"258":{"body":5,"breadcrumbs":4,"title":2},"259":{"body":6,"breadcrumbs":4,"title":2},"26":{"body":20,"breadcrumbs":2,"title":1},"260":{"body":34,"breadcrumbs":4,"title":2},"261":{"body":10,"breadcrumbs":4,"title":2},"262":{"body":17,"breadcrumbs":5,"title":3},"263":{"body":0,"breadcrumbs":4,"title":2},"264":{"body":19,"breadcrumbs":4,"title":2},"265":{"body":16,"breadcrumbs":4,"title":2},"266":{"body":17,"breadcrumbs":4,"title":2},"267":{"body":28,"breadcrumbs":4,"title":2},"268":{"body":0,"breadcrumbs":5,"title":3},"269":{"body":10,"breadcrumbs":6,"title":4},"27":{"body":64,"breadcrumbs":3,"title":2},"270":{"body":12,"breadcrumbs":6,"title":4},"271":{"body":0,"breadcrumbs":4,"title":2},"272":{"body":23,"breadcrumbs":4,"title":2},"273":{"body":19,"breadcrumbs":3,"title":1},"274":{"body":18,"breadcrumbs":3,"title":1},"275":{"body":0,"breadcrumbs":4,"title":2},"276":{"body":23,"breadcrumbs":5,"title":3},"277":{"body":35,"breadcrumbs":5,"title":3},"278":{"body":17,"breadcrumbs":5,"title":3},"279":{"body":13,"breadcrumbs":4,"title":2},"28":{"body":0,"breadcrumbs":4,"title":3},"280":{"body":17,"breadcrumbs":6,"title":3},"281":{"body":18,"breadcrumbs":4,"title":1},"282":{"body":34,"breadcrumbs":5,"title":2},"283":{"body":0,"breadcrumbs":5,"title":2},"284":{"body":15,"breadcrumbs":5,"title":2},"285":{"body":19,"breadcrumbs":4,"title":1},"286":{"body":0,"breadcrumbs":5,"title":2},"287":{"body":7,"breadcrumbs":6,"title":3},"288":{"body":10,"breadcrumbs":6,"title":3},"289":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":17,"breadcrumbs":4,"title":3},"290":{"body":0,"breadcrumbs":6,"title":3},"291":{"body":16,"breadcrumbs":5,"title":2},"292":{"body":63,"breadcrumbs":5,"title":2},"293":{"body":31,"breadcrumbs":5,"title":2},"294":{"body":64,"breadcrumbs":7,"title":4},"295":{"body":25,"breadcrumbs":5,"title":2},"296":{"body":0,"breadcrumbs":6,"title":3},"297":{"body":22,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":7,"title":4},"299":{"body":27,"breadcrumbs":5,"title":2},"3":{"body":14,"breadcrumbs":4,"title":3},"30":{"body":17,"breadcrumbs":4,"title":3},"300":{"body":18,"breadcrumbs":5,"title":2},"301":{"body":11,"breadcrumbs":8,"title":5},"302":{"body":20,"breadcrumbs":4,"title":1},"303":{"body":20,"breadcrumbs":4,"title":1},"304":{"body":33,"breadcrumbs":6,"title":3},"305":{"body":54,"breadcrumbs":5,"title":2},"306":{"body":24,"breadcrumbs":5,"title":2},"307":{"body":22,"breadcrumbs":7,"title":4},"308":{"body":33,"breadcrumbs":4,"title":1},"309":{"body":48,"breadcrumbs":5,"title":2},"31":{"body":17,"breadcrumbs":4,"title":3},"310":{"body":0,"breadcrumbs":6,"title":3},"311":{"body":51,"breadcrumbs":6,"title":3},"312":{"body":48,"breadcrumbs":6,"title":3},"313":{"body":23,"breadcrumbs":6,"title":3},"314":{"body":51,"breadcrumbs":8,"title":5},"315":{"body":26,"breadcrumbs":6,"title":3},"316":{"body":18,"breadcrumbs":7,"title":4},"317":{"body":0,"breadcrumbs":6,"title":3},"318":{"body":25,"breadcrumbs":7,"title":4},"319":{"body":58,"breadcrumbs":6,"title":3},"32":{"body":80,"breadcrumbs":4,"title":3},"320":{"body":46,"breadcrumbs":6,"title":3},"321":{"body":23,"breadcrumbs":6,"title":3},"322":{"body":26,"breadcrumbs":5,"title":2},"323":{"body":20,"breadcrumbs":6,"title":3},"324":{"body":0,"breadcrumbs":5,"title":2},"325":{"body":22,"breadcrumbs":5,"title":2},"326":{"body":32,"breadcrumbs":5,"title":2},"327":{"body":21,"breadcrumbs":4,"title":1},"328":{"body":0,"breadcrumbs":4,"title":1},"329":{"body":20,"breadcrumbs":6,"title":3},"33":{"body":41,"breadcrumbs":3,"title":2},"330":{"body":20,"breadcrumbs":6,"title":3},"331":{"body":20,"breadcrumbs":5,"title":2},"332":{"body":51,"breadcrumbs":5,"title":2},"333":{"body":19,"breadcrumbs":5,"title":2},"334":{"body":15,"breadcrumbs":6,"title":3},"335":{"body":6,"breadcrumbs":6,"title":3},"336":{"body":54,"breadcrumbs":5,"title":2},"337":{"body":0,"breadcrumbs":5,"title":2},"338":{"body":36,"breadcrumbs":4,"title":1},"339":{"body":41,"breadcrumbs":4,"title":1},"34":{"body":19,"breadcrumbs":3,"title":2},"340":{"body":0,"breadcrumbs":5,"title":2},"341":{"body":41,"breadcrumbs":5,"title":2},"342":{"body":21,"breadcrumbs":5,"title":2},"343":{"body":19,"breadcrumbs":6,"title":3},"344":{"body":0,"breadcrumbs":5,"title":2},"345":{"body":35,"breadcrumbs":5,"title":2},"346":{"body":16,"breadcrumbs":6,"title":3},"347":{"body":20,"breadcrumbs":5,"title":2},"348":{"body":23,"breadcrumbs":5,"title":2},"349":{"body":37,"breadcrumbs":5,"title":2},"35":{"body":6,"breadcrumbs":4,"title":3},"350":{"body":18,"breadcrumbs":5,"title":2},"351":{"body":28,"breadcrumbs":5,"title":2},"352":{"body":0,"breadcrumbs":5,"title":2},"353":{"body":25,"breadcrumbs":5,"title":2},"354":{"body":35,"breadcrumbs":4,"title":1},"355":{"body":14,"breadcrumbs":6,"title":3},"356":{"body":0,"breadcrumbs":4,"title":1},"357":{"body":47,"breadcrumbs":5,"title":2},"358":{"body":13,"breadcrumbs":5,"title":2},"359":{"body":0,"breadcrumbs":4,"title":1},"36":{"body":129,"breadcrumbs":3,"title":2},"360":{"body":16,"breadcrumbs":6,"title":3},"361":{"body":47,"breadcrumbs":6,"title":3},"362":{"body":38,"breadcrumbs":5,"title":2},"363":{"body":21,"breadcrumbs":5,"title":2},"364":{"body":34,"breadcrumbs":5,"title":2},"365":{"body":70,"breadcrumbs":5,"title":2},"366":{"body":15,"breadcrumbs":5,"title":2},"367":{"body":45,"breadcrumbs":6,"title":3},"368":{"body":21,"breadcrumbs":4,"title":1},"369":{"body":39,"breadcrumbs":5,"title":2},"37":{"body":23,"breadcrumbs":4,"title":3},"370":{"body":0,"breadcrumbs":5,"title":2},"371":{"body":29,"breadcrumbs":5,"title":2},"372":{"body":43,"breadcrumbs":5,"title":2},"373":{"body":0,"breadcrumbs":4,"title":1},"374":{"body":9,"breadcrumbs":5,"title":2},"375":{"body":44,"breadcrumbs":5,"title":2},"376":{"body":22,"breadcrumbs":5,"title":2},"377":{"body":0,"breadcrumbs":4,"title":1},"378":{"body":13,"breadcrumbs":5,"title":2},"379":{"body":45,"breadcrumbs":5,"title":2},"38":{"body":43,"breadcrumbs":4,"title":3},"380":{"body":41,"breadcrumbs":5,"title":2},"381":{"body":17,"breadcrumbs":5,"title":2},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":43,"breadcrumbs":5,"title":2},"384":{"body":12,"breadcrumbs":5,"title":2},"385":{"body":23,"breadcrumbs":5,"title":2},"386":{"body":27,"breadcrumbs":6,"title":3},"387":{"body":52,"breadcrumbs":5,"title":2},"388":{"body":51,"breadcrumbs":6,"title":3},"389":{"body":19,"breadcrumbs":5,"title":2},"39":{"body":8,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":5,"title":2},"391":{"body":24,"breadcrumbs":4,"title":1},"392":{"body":62,"breadcrumbs":4,"title":1},"393":{"body":0,"breadcrumbs":4,"title":1},"394":{"body":16,"breadcrumbs":5,"title":2},"395":{"body":13,"breadcrumbs":5,"title":2},"396":{"body":15,"breadcrumbs":5,"title":2},"397":{"body":15,"breadcrumbs":5,"title":2},"398":{"body":19,"breadcrumbs":3,"title":2},"399":{"body":14,"breadcrumbs":2,"title":1},"4":{"body":0,"breadcrumbs":2,"title":1},"40":{"body":47,"breadcrumbs":8,"title":6},"400":{"body":0,"breadcrumbs":2,"title":1},"401":{"body":3,"breadcrumbs":3,"title":2},"402":{"body":3,"breadcrumbs":3,"title":2},"403":{"body":3,"breadcrumbs":3,"title":2},"404":{"body":40,"breadcrumbs":3,"title":2},"405":{"body":5,"breadcrumbs":3,"title":2},"406":{"body":13,"breadcrumbs":4,"title":3},"407":{"body":3,"breadcrumbs":7,"title":6},"408":{"body":5,"breadcrumbs":3,"title":2},"409":{"body":11,"breadcrumbs":4,"title":3},"41":{"body":37,"breadcrumbs":7,"title":5},"410":{"body":58,"breadcrumbs":3,"title":2},"411":{"body":0,"breadcrumbs":2,"title":1},"412":{"body":32,"breadcrumbs":3,"title":2},"413":{"body":24,"breadcrumbs":3,"title":2},"414":{"body":17,"breadcrumbs":3,"title":2},"415":{"body":3,"breadcrumbs":3,"title":2},"416":{"body":6,"breadcrumbs":4,"title":3},"417":{"body":14,"breadcrumbs":4,"title":3},"418":{"body":9,"breadcrumbs":3,"title":2},"419":{"body":2,"breadcrumbs":4,"title":3},"42":{"body":33,"breadcrumbs":7,"title":5},"420":{"body":0,"breadcrumbs":3,"title":2},"421":{"body":13,"breadcrumbs":4,"title":3},"422":{"body":12,"breadcrumbs":3,"title":2},"423":{"body":10,"breadcrumbs":5,"title":4},"424":{"body":14,"breadcrumbs":5,"title":4},"425":{"body":0,"breadcrumbs":3,"title":2},"426":{"body":15,"breadcrumbs":3,"title":2},"427":{"body":22,"breadcrumbs":3,"title":2},"428":{"body":40,"breadcrumbs":3,"title":2},"429":{"body":0,"breadcrumbs":3,"title":2},"43":{"body":33,"breadcrumbs":9,"title":7},"430":{"body":19,"breadcrumbs":3,"title":2},"431":{"body":20,"breadcrumbs":3,"title":2},"432":{"body":15,"breadcrumbs":3,"title":2},"433":{"body":12,"breadcrumbs":3,"title":2},"434":{"body":31,"breadcrumbs":3,"title":2},"435":{"body":17,"breadcrumbs":2,"title":1},"436":{"body":18,"breadcrumbs":4,"title":2},"437":{"body":42,"breadcrumbs":6,"title":4},"438":{"body":119,"breadcrumbs":4,"title":2},"439":{"body":29,"breadcrumbs":5,"title":3},"44":{"body":28,"breadcrumbs":8,"title":6},"440":{"body":157,"breadcrumbs":4,"title":2},"441":{"body":109,"breadcrumbs":3,"title":1},"442":{"body":39,"breadcrumbs":3,"title":1},"443":{"body":9,"breadcrumbs":3,"title":1},"444":{"body":15,"breadcrumbs":3,"title":1},"445":{"body":25,"breadcrumbs":3,"title":1},"446":{"body":51,"breadcrumbs":3,"title":1},"447":{"body":44,"breadcrumbs":4,"title":2},"448":{"body":28,"breadcrumbs":3,"title":1},"449":{"body":43,"breadcrumbs":4,"title":2},"45":{"body":35,"breadcrumbs":9,"title":7},"450":{"body":44,"breadcrumbs":3,"title":1},"451":{"body":49,"breadcrumbs":3,"title":1},"452":{"body":58,"breadcrumbs":6,"title":4},"453":{"body":24,"breadcrumbs":3,"title":1},"454":{"body":21,"breadcrumbs":4,"title":2},"455":{"body":13,"breadcrumbs":3,"title":1},"456":{"body":20,"breadcrumbs":3,"title":1},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":22,"breadcrumbs":3,"title":1},"459":{"body":23,"breadcrumbs":3,"title":1},"46":{"body":35,"breadcrumbs":10,"title":8},"460":{"body":27,"breadcrumbs":3,"title":1},"461":{"body":25,"breadcrumbs":3,"title":1},"462":{"body":105,"breadcrumbs":4,"title":2},"463":{"body":48,"breadcrumbs":4,"title":2},"464":{"body":47,"breadcrumbs":4,"title":2},"465":{"body":15,"breadcrumbs":3,"title":1},"466":{"body":13,"breadcrumbs":4,"title":2},"467":{"body":34,"breadcrumbs":6,"title":4},"468":{"body":0,"breadcrumbs":4,"title":2},"469":{"body":21,"breadcrumbs":5,"title":3},"47":{"body":16,"breadcrumbs":4,"title":2},"470":{"body":17,"breadcrumbs":4,"title":2},"471":{"body":0,"breadcrumbs":4,"title":2},"472":{"body":30,"breadcrumbs":5,"title":3},"473":{"body":14,"breadcrumbs":4,"title":2},"474":{"body":11,"breadcrumbs":4,"title":2},"475":{"body":14,"breadcrumbs":4,"title":2},"476":{"body":20,"breadcrumbs":3,"title":1},"477":{"body":0,"breadcrumbs":4,"title":2},"478":{"body":11,"breadcrumbs":5,"title":3},"479":{"body":13,"breadcrumbs":6,"title":4},"48":{"body":10,"breadcrumbs":3,"title":1},"480":{"body":0,"breadcrumbs":4,"title":2},"481":{"body":39,"breadcrumbs":5,"title":3},"482":{"body":13,"breadcrumbs":5,"title":3},"483":{"body":0,"breadcrumbs":4,"title":2},"484":{"body":11,"breadcrumbs":5,"title":3},"485":{"body":23,"breadcrumbs":5,"title":3},"486":{"body":0,"breadcrumbs":4,"title":2},"487":{"body":28,"breadcrumbs":4,"title":2},"488":{"body":13,"breadcrumbs":4,"title":2},"489":{"body":12,"breadcrumbs":5,"title":3},"49":{"body":50,"breadcrumbs":4,"title":2},"490":{"body":0,"breadcrumbs":4,"title":2},"491":{"body":11,"breadcrumbs":4,"title":2},"492":{"body":20,"breadcrumbs":4,"title":2},"493":{"body":14,"breadcrumbs":5,"title":3},"494":{"body":7,"breadcrumbs":4,"title":2},"495":{"body":17,"breadcrumbs":4,"title":2},"496":{"body":19,"breadcrumbs":4,"title":2},"497":{"body":0,"breadcrumbs":4,"title":2},"498":{"body":13,"breadcrumbs":4,"title":2},"499":{"body":42,"breadcrumbs":4,"title":2},"5":{"body":17,"breadcrumbs":2,"title":1},"50":{"body":24,"breadcrumbs":4,"title":2},"500":{"body":41,"breadcrumbs":4,"title":2},"501":{"body":91,"breadcrumbs":4,"title":2},"502":{"body":20,"breadcrumbs":4,"title":2},"503":{"body":27,"breadcrumbs":6,"title":3},"504":{"body":4,"breadcrumbs":4,"title":1},"505":{"body":10,"breadcrumbs":6,"title":3},"506":{"body":27,"breadcrumbs":5,"title":2},"507":{"body":20,"breadcrumbs":5,"title":2},"508":{"body":72,"breadcrumbs":9,"title":6},"509":{"body":21,"breadcrumbs":5,"title":2},"51":{"body":73,"breadcrumbs":6,"title":4},"510":{"body":45,"breadcrumbs":5,"title":2},"511":{"body":4,"breadcrumbs":6,"title":3},"512":{"body":21,"breadcrumbs":6,"title":3},"513":{"body":13,"breadcrumbs":3,"title":2},"514":{"body":0,"breadcrumbs":3,"title":2},"515":{"body":52,"breadcrumbs":5,"title":4},"516":{"body":41,"breadcrumbs":5,"title":4},"517":{"body":10,"breadcrumbs":2,"title":1},"518":{"body":18,"breadcrumbs":3,"title":2},"519":{"body":4,"breadcrumbs":3,"title":2},"52":{"body":10,"breadcrumbs":3,"title":1},"520":{"body":26,"breadcrumbs":4,"title":3},"521":{"body":29,"breadcrumbs":6,"title":3},"522":{"body":0,"breadcrumbs":6,"title":3},"523":{"body":6,"breadcrumbs":5,"title":2},"524":{"body":11,"breadcrumbs":7,"title":4},"525":{"body":28,"breadcrumbs":7,"title":4},"526":{"body":53,"breadcrumbs":5,"title":2},"527":{"body":11,"breadcrumbs":4,"title":1},"528":{"body":0,"breadcrumbs":6,"title":3},"529":{"body":15,"breadcrumbs":5,"title":2},"53":{"body":58,"breadcrumbs":4,"title":2},"530":{"body":23,"breadcrumbs":5,"title":2},"531":{"body":36,"breadcrumbs":4,"title":1},"532":{"body":37,"breadcrumbs":4,"title":1},"533":{"body":48,"breadcrumbs":6,"title":3},"534":{"body":51,"breadcrumbs":5,"title":2},"535":{"body":19,"breadcrumbs":5,"title":2},"536":{"body":16,"breadcrumbs":5,"title":2},"537":{"body":24,"breadcrumbs":4,"title":2},"538":{"body":0,"breadcrumbs":5,"title":3},"539":{"body":4,"breadcrumbs":4,"title":2},"54":{"body":75,"breadcrumbs":5,"title":3},"540":{"body":11,"breadcrumbs":6,"title":4},"541":{"body":26,"breadcrumbs":6,"title":4},"542":{"body":37,"breadcrumbs":4,"title":2},"543":{"body":74,"breadcrumbs":3,"title":1},"544":{"body":40,"breadcrumbs":3,"title":1},"545":{"body":53,"breadcrumbs":5,"title":3},"546":{"body":54,"breadcrumbs":7,"title":5},"547":{"body":23,"breadcrumbs":5,"title":3},"548":{"body":21,"breadcrumbs":5,"title":3},"549":{"body":33,"breadcrumbs":5,"title":3},"55":{"body":51,"breadcrumbs":4,"title":2},"550":{"body":46,"breadcrumbs":4,"title":2},"551":{"body":45,"breadcrumbs":4,"title":2},"552":{"body":23,"breadcrumbs":4,"title":2},"553":{"body":20,"breadcrumbs":4,"title":2},"554":{"body":41,"breadcrumbs":4,"title":2},"555":{"body":60,"breadcrumbs":3,"title":1},"556":{"body":33,"breadcrumbs":3,"title":1},"557":{"body":54,"breadcrumbs":7,"title":5},"558":{"body":16,"breadcrumbs":5,"title":3},"559":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":8,"breadcrumbs":3,"title":1},"560":{"body":22,"breadcrumbs":4,"title":2},"561":{"body":16,"breadcrumbs":4,"title":2},"562":{"body":18,"breadcrumbs":4,"title":2},"563":{"body":41,"breadcrumbs":3,"title":1},"564":{"body":0,"breadcrumbs":4,"title":2},"565":{"body":24,"breadcrumbs":4,"title":2},"566":{"body":0,"breadcrumbs":4,"title":2},"567":{"body":105,"breadcrumbs":5,"title":3},"568":{"body":56,"breadcrumbs":4,"title":2},"569":{"body":0,"breadcrumbs":4,"title":2},"57":{"body":40,"breadcrumbs":4,"title":2},"570":{"body":96,"breadcrumbs":5,"title":3},"571":{"body":7,"breadcrumbs":4,"title":2},"572":{"body":66,"breadcrumbs":5,"title":3},"573":{"body":0,"breadcrumbs":4,"title":2},"574":{"body":86,"breadcrumbs":5,"title":3},"575":{"body":0,"breadcrumbs":4,"title":2},"576":{"body":18,"breadcrumbs":3,"title":1},"577":{"body":16,"breadcrumbs":3,"title":1},"578":{"body":18,"breadcrumbs":3,"title":1},"579":{"body":40,"breadcrumbs":3,"title":1},"58":{"body":32,"breadcrumbs":4,"title":2},"580":{"body":36,"breadcrumbs":3,"title":1},"581":{"body":0,"breadcrumbs":4,"title":2},"582":{"body":81,"breadcrumbs":4,"title":2},"583":{"body":67,"breadcrumbs":4,"title":2},"584":{"body":0,"breadcrumbs":4,"title":2},"585":{"body":11,"breadcrumbs":4,"title":2},"586":{"body":21,"breadcrumbs":4,"title":2},"587":{"body":16,"breadcrumbs":4,"title":2},"588":{"body":27,"breadcrumbs":4,"title":2},"589":{"body":17,"breadcrumbs":4,"title":2},"59":{"body":37,"breadcrumbs":4,"title":2},"590":{"body":6,"breadcrumbs":4,"title":2},"591":{"body":3,"breadcrumbs":3,"title":1},"592":{"body":34,"breadcrumbs":6,"title":4},"593":{"body":5,"breadcrumbs":4,"title":2},"594":{"body":17,"breadcrumbs":4,"title":2},"595":{"body":19,"breadcrumbs":3,"title":1},"596":{"body":38,"breadcrumbs":4,"title":2},"597":{"body":83,"breadcrumbs":4,"title":2},"598":{"body":29,"breadcrumbs":4,"title":2},"599":{"body":27,"breadcrumbs":4,"title":2},"6":{"body":17,"breadcrumbs":3,"title":2},"60":{"body":8,"breadcrumbs":3,"title":1},"600":{"body":54,"breadcrumbs":4,"title":2},"601":{"body":42,"breadcrumbs":4,"title":2},"602":{"body":23,"breadcrumbs":4,"title":2},"603":{"body":26,"breadcrumbs":4,"title":2},"604":{"body":52,"breadcrumbs":4,"title":2},"605":{"body":31,"breadcrumbs":4,"title":2},"606":{"body":20,"breadcrumbs":4,"title":2},"607":{"body":32,"breadcrumbs":4,"title":2},"608":{"body":26,"breadcrumbs":5,"title":3},"609":{"body":19,"breadcrumbs":5,"title":3},"61":{"body":67,"breadcrumbs":4,"title":2},"610":{"body":21,"breadcrumbs":5,"title":3},"611":{"body":21,"breadcrumbs":4,"title":2},"612":{"body":18,"breadcrumbs":4,"title":2},"613":{"body":26,"breadcrumbs":4,"title":2},"614":{"body":0,"breadcrumbs":4,"title":2},"615":{"body":22,"breadcrumbs":3,"title":1},"616":{"body":39,"breadcrumbs":3,"title":1},"617":{"body":4,"breadcrumbs":4,"title":2},"618":{"body":16,"breadcrumbs":3,"title":1},"619":{"body":16,"breadcrumbs":3,"title":1},"62":{"body":33,"breadcrumbs":4,"title":2},"620":{"body":5,"breadcrumbs":4,"title":2},"621":{"body":23,"breadcrumbs":5,"title":3},"622":{"body":8,"breadcrumbs":5,"title":3},"623":{"body":22,"breadcrumbs":4,"title":2},"624":{"body":129,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":4,"title":2},"626":{"body":21,"breadcrumbs":3,"title":1},"627":{"body":21,"breadcrumbs":3,"title":2},"628":{"body":16,"breadcrumbs":2,"title":1},"629":{"body":0,"breadcrumbs":2,"title":1},"63":{"body":26,"breadcrumbs":4,"title":2},"630":{"body":27,"breadcrumbs":3,"title":2},"631":{"body":6,"breadcrumbs":3,"title":2},"632":{"body":3,"breadcrumbs":3,"title":2},"633":{"body":24,"breadcrumbs":3,"title":2},"634":{"body":49,"breadcrumbs":3,"title":2},"635":{"body":8,"breadcrumbs":3,"title":2},"636":{"body":19,"breadcrumbs":3,"title":2},"637":{"body":20,"breadcrumbs":3,"title":2},"638":{"body":0,"breadcrumbs":2,"title":1},"639":{"body":18,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":4,"title":2},"640":{"body":9,"breadcrumbs":4,"title":3},"641":{"body":14,"breadcrumbs":3,"title":2},"642":{"body":17,"breadcrumbs":3,"title":2},"643":{"body":3,"breadcrumbs":3,"title":2},"644":{"body":6,"breadcrumbs":4,"title":3},"645":{"body":14,"breadcrumbs":4,"title":3},"646":{"body":9,"breadcrumbs":3,"title":2},"647":{"body":2,"breadcrumbs":4,"title":3},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":13,"breadcrumbs":4,"title":3},"65":{"body":28,"breadcrumbs":4,"title":2},"650":{"body":12,"breadcrumbs":3,"title":2},"651":{"body":10,"breadcrumbs":5,"title":4},"652":{"body":14,"breadcrumbs":5,"title":4},"653":{"body":0,"breadcrumbs":3,"title":2},"654":{"body":17,"breadcrumbs":3,"title":2},"655":{"body":10,"breadcrumbs":3,"title":2},"656":{"body":42,"breadcrumbs":3,"title":2},"657":{"body":0,"breadcrumbs":4,"title":3},"658":{"body":22,"breadcrumbs":3,"title":2},"659":{"body":20,"breadcrumbs":3,"title":2},"66":{"body":27,"breadcrumbs":4,"title":2},"660":{"body":19,"breadcrumbs":3,"title":2},"661":{"body":42,"breadcrumbs":4,"title":3},"662":{"body":0,"breadcrumbs":3,"title":2},"663":{"body":25,"breadcrumbs":3,"title":2},"664":{"body":20,"breadcrumbs":3,"title":2},"665":{"body":18,"breadcrumbs":3,"title":2},"666":{"body":20,"breadcrumbs":3,"title":2},"667":{"body":28,"breadcrumbs":5,"title":4},"668":{"body":62,"breadcrumbs":3,"title":2},"669":{"body":27,"breadcrumbs":3,"title":2},"67":{"body":30,"breadcrumbs":4,"title":2},"670":{"body":20,"breadcrumbs":2,"title":1},"671":{"body":18,"breadcrumbs":4,"title":2},"672":{"body":104,"breadcrumbs":4,"title":2},"673":{"body":29,"breadcrumbs":5,"title":3},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":108,"breadcrumbs":7,"title":5},"676":{"body":50,"breadcrumbs":4,"title":2},"677":{"body":8,"breadcrumbs":3,"title":1},"678":{"body":14,"breadcrumbs":3,"title":1},"679":{"body":20,"breadcrumbs":3,"title":1},"68":{"body":7,"breadcrumbs":5,"title":3},"680":{"body":40,"breadcrumbs":3,"title":1},"681":{"body":43,"breadcrumbs":4,"title":2},"682":{"body":29,"breadcrumbs":3,"title":1},"683":{"body":25,"breadcrumbs":6,"title":4},"684":{"body":26,"breadcrumbs":3,"title":1},"685":{"body":20,"breadcrumbs":4,"title":2},"686":{"body":31,"breadcrumbs":4,"title":2},"687":{"body":85,"breadcrumbs":3,"title":1},"688":{"body":82,"breadcrumbs":6,"title":4},"689":{"body":25,"breadcrumbs":3,"title":1},"69":{"body":22,"breadcrumbs":4,"title":2},"690":{"body":17,"breadcrumbs":4,"title":2},"691":{"body":18,"breadcrumbs":3,"title":1},"692":{"body":27,"breadcrumbs":3,"title":1},"693":{"body":5,"breadcrumbs":4,"title":2},"694":{"body":19,"breadcrumbs":3,"title":1},"695":{"body":24,"breadcrumbs":3,"title":1},"696":{"body":24,"breadcrumbs":3,"title":1},"697":{"body":31,"breadcrumbs":3,"title":1},"698":{"body":15,"breadcrumbs":3,"title":1},"699":{"body":105,"breadcrumbs":4,"title":2},"7":{"body":17,"breadcrumbs":3,"title":2},"70":{"body":20,"breadcrumbs":5,"title":3},"700":{"body":58,"breadcrumbs":4,"title":2},"701":{"body":48,"breadcrumbs":4,"title":2},"702":{"body":15,"breadcrumbs":3,"title":1},"703":{"body":23,"breadcrumbs":4,"title":2},"704":{"body":0,"breadcrumbs":4,"title":2},"705":{"body":12,"breadcrumbs":5,"title":3},"706":{"body":17,"breadcrumbs":4,"title":2},"707":{"body":0,"breadcrumbs":4,"title":2},"708":{"body":25,"breadcrumbs":5,"title":3},"709":{"body":12,"breadcrumbs":4,"title":2},"71":{"body":6,"breadcrumbs":4,"title":2},"710":{"body":9,"breadcrumbs":4,"title":2},"711":{"body":12,"breadcrumbs":4,"title":2},"712":{"body":18,"breadcrumbs":3,"title":1},"713":{"body":0,"breadcrumbs":4,"title":2},"714":{"body":9,"breadcrumbs":5,"title":3},"715":{"body":11,"breadcrumbs":6,"title":4},"716":{"body":0,"breadcrumbs":4,"title":2},"717":{"body":38,"breadcrumbs":5,"title":3},"718":{"body":11,"breadcrumbs":5,"title":3},"719":{"body":0,"breadcrumbs":4,"title":2},"72":{"body":23,"breadcrumbs":4,"title":2},"720":{"body":9,"breadcrumbs":5,"title":3},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":0,"breadcrumbs":4,"title":2},"723":{"body":26,"breadcrumbs":4,"title":2},"724":{"body":11,"breadcrumbs":4,"title":2},"725":{"body":10,"breadcrumbs":5,"title":3},"726":{"body":0,"breadcrumbs":4,"title":2},"727":{"body":16,"breadcrumbs":4,"title":2},"728":{"body":18,"breadcrumbs":4,"title":2},"729":{"body":12,"breadcrumbs":5,"title":3},"73":{"body":19,"breadcrumbs":4,"title":2},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":15,"breadcrumbs":4,"title":2},"732":{"body":17,"breadcrumbs":4,"title":2},"733":{"body":0,"breadcrumbs":4,"title":2},"734":{"body":11,"breadcrumbs":4,"title":2},"735":{"body":16,"breadcrumbs":4,"title":2},"736":{"body":35,"breadcrumbs":4,"title":2},"737":{"body":78,"breadcrumbs":4,"title":2},"738":{"body":0,"breadcrumbs":5,"title":3},"739":{"body":29,"breadcrumbs":5,"title":3},"74":{"body":19,"breadcrumbs":4,"title":2},"740":{"body":21,"breadcrumbs":5,"title":3},"741":{"body":0,"breadcrumbs":4,"title":2},"742":{"body":5,"breadcrumbs":4,"title":2},"743":{"body":17,"breadcrumbs":4,"title":2},"744":{"body":26,"breadcrumbs":4,"title":2},"745":{"body":17,"breadcrumbs":4,"title":2},"746":{"body":37,"breadcrumbs":6,"title":3},"747":{"body":21,"breadcrumbs":4,"title":1},"748":{"body":17,"breadcrumbs":5,"title":2},"749":{"body":31,"breadcrumbs":7,"title":4},"75":{"body":28,"breadcrumbs":4,"title":2},"750":{"body":22,"breadcrumbs":7,"title":4},"751":{"body":53,"breadcrumbs":8,"title":5},"752":{"body":16,"breadcrumbs":6,"title":3},"753":{"body":4,"breadcrumbs":6,"title":3},"754":{"body":26,"breadcrumbs":6,"title":3},"755":{"body":15,"breadcrumbs":4,"title":2},"756":{"body":78,"breadcrumbs":4,"title":2},"757":{"body":7,"breadcrumbs":4,"title":2},"758":{"body":20,"breadcrumbs":4,"title":2},"759":{"body":7,"breadcrumbs":4,"title":2},"76":{"body":7,"breadcrumbs":5,"title":3},"760":{"body":11,"breadcrumbs":8,"title":6},"761":{"body":73,"breadcrumbs":4,"title":2},"762":{"body":23,"breadcrumbs":3,"title":1},"763":{"body":23,"breadcrumbs":5,"title":3},"764":{"body":25,"breadcrumbs":5,"title":3},"765":{"body":26,"breadcrumbs":4,"title":2},"766":{"body":3,"breadcrumbs":3,"title":1},"767":{"body":5,"breadcrumbs":4,"title":2},"768":{"body":17,"breadcrumbs":4,"title":2},"769":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":56,"breadcrumbs":6,"title":4},"770":{"body":25,"breadcrumbs":3,"title":1},"771":{"body":89,"breadcrumbs":8,"title":6},"772":{"body":27,"breadcrumbs":3,"title":1},"773":{"body":41,"breadcrumbs":4,"title":2},"774":{"body":60,"breadcrumbs":6,"title":4},"775":{"body":66,"breadcrumbs":7,"title":5},"776":{"body":30,"breadcrumbs":4,"title":2},"777":{"body":39,"breadcrumbs":4,"title":2},"778":{"body":46,"breadcrumbs":5,"title":3},"779":{"body":28,"breadcrumbs":5,"title":3},"78":{"body":223,"breadcrumbs":4,"title":2},"780":{"body":23,"breadcrumbs":3,"title":1},"781":{"body":41,"breadcrumbs":6,"title":4},"782":{"body":30,"breadcrumbs":3,"title":1},"783":{"body":26,"breadcrumbs":3,"title":1},"784":{"body":28,"breadcrumbs":3,"title":1},"785":{"body":34,"breadcrumbs":3,"title":1},"786":{"body":27,"breadcrumbs":3,"title":1},"787":{"body":33,"breadcrumbs":5,"title":3},"788":{"body":14,"breadcrumbs":5,"title":3},"789":{"body":8,"breadcrumbs":3,"title":1},"79":{"body":7,"breadcrumbs":7,"title":5},"790":{"body":9,"breadcrumbs":3,"title":1},"791":{"body":8,"breadcrumbs":3,"title":1},"792":{"body":8,"breadcrumbs":3,"title":1},"793":{"body":10,"breadcrumbs":3,"title":1},"794":{"body":64,"breadcrumbs":4,"title":2},"795":{"body":0,"breadcrumbs":3,"title":1},"796":{"body":21,"breadcrumbs":5,"title":3},"797":{"body":48,"breadcrumbs":4,"title":2},"798":{"body":33,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":4,"title":2},"8":{"body":9,"breadcrumbs":3,"title":2},"80":{"body":16,"breadcrumbs":6,"title":4},"800":{"body":43,"breadcrumbs":4,"title":2},"801":{"body":42,"breadcrumbs":4,"title":2},"802":{"body":17,"breadcrumbs":3,"title":1},"803":{"body":38,"breadcrumbs":8,"title":5},"804":{"body":2,"breadcrumbs":4,"title":1},"805":{"body":58,"breadcrumbs":6,"title":3},"806":{"body":15,"breadcrumbs":6,"title":3},"807":{"body":29,"breadcrumbs":5,"title":2},"808":{"body":31,"breadcrumbs":7,"title":4},"809":{"body":18,"breadcrumbs":6,"title":3},"81":{"body":22,"breadcrumbs":6,"title":4},"810":{"body":40,"breadcrumbs":6,"title":3},"811":{"body":22,"breadcrumbs":4,"title":2},"812":{"body":27,"breadcrumbs":4,"title":2},"813":{"body":0,"breadcrumbs":4,"title":2},"814":{"body":7,"breadcrumbs":4,"title":2},"815":{"body":55,"breadcrumbs":4,"title":2},"816":{"body":36,"breadcrumbs":4,"title":2},"817":{"body":15,"breadcrumbs":4,"title":2},"818":{"body":0,"breadcrumbs":4,"title":2},"819":{"body":21,"breadcrumbs":3,"title":1},"82":{"body":4,"breadcrumbs":3,"title":1},"820":{"body":11,"breadcrumbs":4,"title":2},"821":{"body":46,"breadcrumbs":5,"title":3},"822":{"body":36,"breadcrumbs":4,"title":2},"823":{"body":28,"breadcrumbs":3,"title":1},"824":{"body":35,"breadcrumbs":4,"title":2},"825":{"body":71,"breadcrumbs":5,"title":3},"826":{"body":0,"breadcrumbs":4,"title":2},"827":{"body":43,"breadcrumbs":4,"title":2},"828":{"body":21,"breadcrumbs":4,"title":2},"829":{"body":27,"breadcrumbs":4,"title":2},"83":{"body":30,"breadcrumbs":3,"title":1},"830":{"body":49,"breadcrumbs":4,"title":2},"831":{"body":16,"breadcrumbs":3,"title":1},"832":{"body":17,"breadcrumbs":4,"title":2},"833":{"body":1,"breadcrumbs":4,"title":2},"834":{"body":27,"breadcrumbs":3,"title":1},"835":{"body":30,"breadcrumbs":4,"title":2},"836":{"body":35,"breadcrumbs":4,"title":2},"837":{"body":15,"breadcrumbs":4,"title":2},"838":{"body":0,"breadcrumbs":4,"title":2},"839":{"body":61,"breadcrumbs":5,"title":3},"84":{"body":6,"breadcrumbs":4,"title":2},"840":{"body":27,"breadcrumbs":5,"title":3},"841":{"body":45,"breadcrumbs":3,"title":1},"842":{"body":70,"breadcrumbs":5,"title":3},"843":{"body":62,"breadcrumbs":4,"title":2},"844":{"body":28,"breadcrumbs":3,"title":1},"845":{"body":52,"breadcrumbs":5,"title":3},"846":{"body":24,"breadcrumbs":4,"title":2},"847":{"body":0,"breadcrumbs":4,"title":2},"848":{"body":93,"breadcrumbs":4,"title":2},"849":{"body":62,"breadcrumbs":4,"title":2},"85":{"body":3,"breadcrumbs":3,"title":1},"850":{"body":81,"breadcrumbs":4,"title":2},"851":{"body":0,"breadcrumbs":4,"title":2},"852":{"body":26,"breadcrumbs":3,"title":1},"853":{"body":19,"breadcrumbs":3,"title":1},"854":{"body":12,"breadcrumbs":3,"title":1},"855":{"body":26,"breadcrumbs":4,"title":2},"856":{"body":21,"breadcrumbs":3,"title":1},"857":{"body":18,"breadcrumbs":4,"title":2},"858":{"body":1,"breadcrumbs":4,"title":2},"859":{"body":39,"breadcrumbs":3,"title":1},"86":{"body":23,"breadcrumbs":4,"title":2},"860":{"body":0,"breadcrumbs":4,"title":2},"861":{"body":35,"breadcrumbs":3,"title":1},"862":{"body":73,"breadcrumbs":3,"title":1},"863":{"body":24,"breadcrumbs":4,"title":2},"864":{"body":0,"breadcrumbs":4,"title":2},"865":{"body":111,"breadcrumbs":3,"title":1},"866":{"body":31,"breadcrumbs":3,"title":1},"867":{"body":12,"breadcrumbs":3,"title":1},"868":{"body":43,"breadcrumbs":3,"title":1},"869":{"body":21,"breadcrumbs":5,"title":3},"87":{"body":3,"breadcrumbs":3,"title":1},"870":{"body":32,"breadcrumbs":4,"title":2},"871":{"body":34,"breadcrumbs":5,"title":3},"872":{"body":17,"breadcrumbs":4,"title":2},"873":{"body":15,"breadcrumbs":5,"title":3},"874":{"body":81,"breadcrumbs":4,"title":2},"875":{"body":35,"breadcrumbs":5,"title":3},"876":{"body":0,"breadcrumbs":4,"title":2},"877":{"body":35,"breadcrumbs":4,"title":2},"878":{"body":5,"breadcrumbs":4,"title":2},"879":{"body":25,"breadcrumbs":4,"title":2},"88":{"body":16,"breadcrumbs":4,"title":2},"880":{"body":22,"breadcrumbs":4,"title":2},"881":{"body":26,"breadcrumbs":4,"title":2},"882":{"body":19,"breadcrumbs":3,"title":1},"883":{"body":17,"breadcrumbs":4,"title":2},"884":{"body":1,"breadcrumbs":4,"title":2},"885":{"body":30,"breadcrumbs":3,"title":1},"886":{"body":25,"breadcrumbs":4,"title":2},"887":{"body":37,"breadcrumbs":4,"title":2},"888":{"body":11,"breadcrumbs":4,"title":2},"889":{"body":0,"breadcrumbs":4,"title":2},"89":{"body":102,"breadcrumbs":6,"title":4},"890":{"body":9,"breadcrumbs":5,"title":3},"891":{"body":59,"breadcrumbs":5,"title":3},"892":{"body":19,"breadcrumbs":4,"title":2},"893":{"body":28,"breadcrumbs":3,"title":1},"894":{"body":30,"breadcrumbs":5,"title":3},"895":{"body":15,"breadcrumbs":4,"title":2},"896":{"body":5,"breadcrumbs":3,"title":1},"897":{"body":21,"breadcrumbs":4,"title":2},"898":{"body":20,"breadcrumbs":4,"title":2},"899":{"body":211,"breadcrumbs":4,"title":2},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":7,"breadcrumbs":4,"title":2},"900":{"body":0,"breadcrumbs":4,"title":2},"901":{"body":9,"breadcrumbs":4,"title":2},"902":{"body":7,"breadcrumbs":5,"title":3},"903":{"body":10,"breadcrumbs":4,"title":2},"904":{"body":0,"breadcrumbs":4,"title":2},"905":{"body":28,"breadcrumbs":5,"title":3},"906":{"body":9,"breadcrumbs":5,"title":3},"907":{"body":8,"breadcrumbs":6,"title":4},"908":{"body":8,"breadcrumbs":5,"title":3},"909":{"body":7,"breadcrumbs":5,"title":3},"91":{"body":19,"breadcrumbs":5,"title":3},"910":{"body":23,"breadcrumbs":5,"title":3},"911":{"body":17,"breadcrumbs":3,"title":1},"912":{"body":28,"breadcrumbs":6,"title":3},"913":{"body":1,"breadcrumbs":5,"title":2},"914":{"body":62,"breadcrumbs":4,"title":1},"915":{"body":35,"breadcrumbs":5,"title":2},"916":{"body":50,"breadcrumbs":5,"title":2},"917":{"body":0,"breadcrumbs":4,"title":1},"918":{"body":21,"breadcrumbs":5,"title":2},"919":{"body":53,"breadcrumbs":5,"title":2},"92":{"body":10,"breadcrumbs":5,"title":3},"920":{"body":25,"breadcrumbs":5,"title":2},"921":{"body":41,"breadcrumbs":5,"title":2},"922":{"body":0,"breadcrumbs":4,"title":1},"923":{"body":11,"breadcrumbs":6,"title":3},"924":{"body":39,"breadcrumbs":6,"title":3},"925":{"body":19,"breadcrumbs":5,"title":2},"926":{"body":27,"breadcrumbs":7,"title":4},"927":{"body":0,"breadcrumbs":5,"title":2},"928":{"body":62,"breadcrumbs":7,"title":4},"929":{"body":14,"breadcrumbs":5,"title":2},"93":{"body":20,"breadcrumbs":5,"title":3},"930":{"body":58,"breadcrumbs":5,"title":2},"931":{"body":21,"breadcrumbs":8,"title":5},"932":{"body":14,"breadcrumbs":7,"title":4},"933":{"body":48,"breadcrumbs":5,"title":2},"934":{"body":19,"breadcrumbs":4,"title":1},"935":{"body":30,"breadcrumbs":4,"title":2},"936":{"body":14,"breadcrumbs":3,"title":1},"937":{"body":13,"breadcrumbs":4,"title":2},"938":{"body":34,"breadcrumbs":4,"title":2},"939":{"body":79,"breadcrumbs":4,"title":2},"94":{"body":86,"breadcrumbs":5,"title":3},"940":{"body":28,"breadcrumbs":4,"title":2},"941":{"body":16,"breadcrumbs":5,"title":3},"942":{"body":32,"breadcrumbs":3,"title":1},"943":{"body":38,"breadcrumbs":4,"title":2},"944":{"body":21,"breadcrumbs":3,"title":1},"945":{"body":15,"breadcrumbs":3,"title":1},"946":{"body":18,"breadcrumbs":6,"title":3},"947":{"body":18,"breadcrumbs":4,"title":1},"948":{"body":14,"breadcrumbs":5,"title":2},"949":{"body":9,"breadcrumbs":5,"title":2},"95":{"body":211,"breadcrumbs":7,"title":5},"950":{"body":7,"breadcrumbs":5,"title":2},"951":{"body":29,"breadcrumbs":6,"title":3},"952":{"body":41,"breadcrumbs":6,"title":3},"953":{"body":32,"breadcrumbs":5,"title":2},"954":{"body":29,"breadcrumbs":5,"title":2},"955":{"body":57,"breadcrumbs":4,"title":1},"956":{"body":55,"breadcrumbs":5,"title":2},"957":{"body":25,"breadcrumbs":4,"title":1},"958":{"body":13,"breadcrumbs":4,"title":1},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":27,"breadcrumbs":4,"title":2},"960":{"body":15,"breadcrumbs":3,"title":1},"961":{"body":0,"breadcrumbs":4,"title":2},"962":{"body":18,"breadcrumbs":3,"title":1},"963":{"body":18,"breadcrumbs":3,"title":1},"964":{"body":43,"breadcrumbs":4,"title":2},"965":{"body":20,"breadcrumbs":3,"title":1},"966":{"body":32,"breadcrumbs":3,"title":1},"967":{"body":44,"breadcrumbs":4,"title":2},"968":{"body":23,"breadcrumbs":4,"title":2},"969":{"body":16,"breadcrumbs":3,"title":1},"97":{"body":29,"breadcrumbs":4,"title":2},"970":{"body":21,"breadcrumbs":6,"title":3},"971":{"body":1,"breadcrumbs":5,"title":2},"972":{"body":17,"breadcrumbs":5,"title":2},"973":{"body":45,"breadcrumbs":4,"title":1},"974":{"body":0,"breadcrumbs":5,"title":2},"975":{"body":78,"breadcrumbs":5,"title":2},"976":{"body":26,"breadcrumbs":5,"title":2},"977":{"body":16,"breadcrumbs":5,"title":2},"978":{"body":10,"breadcrumbs":5,"title":2},"979":{"body":35,"breadcrumbs":5,"title":2},"98":{"body":73,"breadcrumbs":4,"title":2},"980":{"body":71,"breadcrumbs":4,"title":1},"981":{"body":18,"breadcrumbs":5,"title":2},"982":{"body":15,"breadcrumbs":5,"title":2},"983":{"body":25,"breadcrumbs":4,"title":1},"984":{"body":16,"breadcrumbs":8,"title":4},"985":{"body":110,"breadcrumbs":6,"title":2},"986":{"body":88,"breadcrumbs":8,"title":4},"987":{"body":70,"breadcrumbs":8,"title":4},"988":{"body":59,"breadcrumbs":7,"title":3},"989":{"body":90,"breadcrumbs":9,"title":5},"99":{"body":42,"breadcrumbs":3,"title":1},"990":{"body":40,"breadcrumbs":10,"title":6},"991":{"body":42,"breadcrumbs":6,"title":2},"992":{"body":39,"breadcrumbs":8,"title":4},"993":{"body":14,"breadcrumbs":4,"title":2},"994":{"body":165,"breadcrumbs":5,"title":3},"995":{"body":0,"breadcrumbs":5,"title":3},"996":{"body":42,"breadcrumbs":5,"title":3},"997":{"body":21,"breadcrumbs":5,"title":3},"998":{"body":17,"breadcrumbs":5,"title":3},"999":{"body":112,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"JACS is a cryptographic provenance layer for agent systems. Use it when an output, tool call, or agent handoff crosses a trust boundary and logs alone are not enough.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"Most teams adopt JACS in one of four ways: LangChain / LangGraph / CrewAI / FastAPI : add signing at tool or API boundaries without changing the rest of the app MCP : secure a local tool server or expose JACS itself as an MCP tool suite A2A : publish an Agent Card, exchange signed artifacts, and apply trust policy across organizations Core signing : sign JSON, files, or agreements directly from Rust, Python, Node.js, or Go The book now focuses on those supported workflows first. Older roadmap-style integration chapters have been reduced or removed from navigation.","breadcrumbs":"Introduction » Start With The Deployment","id":"1","title":"Start With The Deployment"},"10":{"body":"cargo install jacs-cli\njacs quickstart --name my-agent --domain my-agent.example.com","breadcrumbs":"Introduction » Rust CLI","id":"10","title":"Rust CLI"},"100":{"body":"Three agents from different organizations sign an agreement with 2-of-3 quorum. Imagine three departments -- Finance, Compliance, and Legal -- must approve a production deployment. Requiring all three creates bottlenecks. With JACS quorum agreements, any two of three is sufficient: cryptographically signed, independently verifiable, with a full audit trail. No central authority. No shared database. Every signature is independently verifiable.","breadcrumbs":"Multi-Agent Agreements » Multi-Agent Agreements","id":"100","title":"Multi-Agent Agreements"},"1000":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"1000","title":"Threat Model"},"1001":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"1001","title":"Protected Against"},"1002":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"1002","title":"Trust Assumptions"},"1003":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"1003","title":"Signature Process"},"1004":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"1004","title":"Signing a Document"},"1005":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"1005","title":"Verifying a Document"},"1006":{"body":"","breadcrumbs":"Security Model » Key Management","id":"1006","title":"Key Management"},"1007":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"1007","title":"Key Generation"},"1008":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Option 1: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" # Option 2: OS keychain (recommended for developer workstations)\njacs keychain set --agent-id Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain. OS Keychain Integration : On macOS and Linux desktops, JACS can store and retrieve the private key password from the OS credential store, eliminating the need for environment variables or plaintext password files during day-to-day development: macOS : Uses Security.framework (Keychain Access) Linux : Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC) Each password is keyed by agent ID, so multiple agents can coexist on the same machine without overwriting each other. Store your password once with jacs keychain set --agent-id , and all subsequent JACS operations will find it automatically. The password resolution order is: JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain keyed by agent ID (lowest priority among explicit sources) To disable keychain lookups (recommended for CI and headless environments): export JACS_KEYCHAIN_BACKEND=disabled Or in jacs.config.json: { \"jacs_keychain_backend\": \"disabled\"\n} The keychain stores the password under service name jacs-private-key with user default. Multiple agents on one machine can use agent-specific passwords via the *_for_agent() API variants. Security note : The OS keychain is encrypted at rest by the OS and unlocked by the user's login session. It is the same mechanism used by git, ssh-agent, docker, and other CLI tools. The keychain feature is optional and not compiled into the jacs core crate by default -- it is enabled by default only in jacs-cli. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"1008","title":"Key Protection"},"1009":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"1009","title":"Key Rotation"},"101":{"body":"Create Agreement --> Agent A Signs --> Agent B Signs --> Quorum Met (2/3) --> Verified","breadcrumbs":"Multi-Agent Agreements » The Lifecycle","id":"101","title":"The Lifecycle"},"1010":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"1010","title":"TLS Certificate Validation"},"1011":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"1011","title":"Default Behavior (Development)"},"1012":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"1012","title":"Production Configuration"},"1013":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For registry verification endpoints, JACS_REGISTRY_URL (legacy HAI_API_URL) must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"1013","title":"Security Implications"},"1014":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"1014","title":"Signature Timestamp Validation"},"1015":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"1015","title":"How It Works"},"1016":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"1016","title":"Configuring Signature Expiration"},"1017":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"1017","title":"Protection Against Replay Attacks"},"1018":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"1018","title":"Clock Synchronization"},"1019":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"1019","title":"Verification Claims"},"102":{"body":"from jacs.client import JacsClient # Step 1: Create three agents (one per organization)\nfinance = JacsClient.quickstart( name=\"finance\", domain=\"finance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./finance.config.json\",\n)\ncompliance = JacsClient.quickstart( name=\"compliance\", domain=\"compliance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./compliance.config.json\",\n)\nlegal = JacsClient.quickstart( name=\"legal\", domain=\"legal.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./legal.config.json\",\n) # Step 2: Finance proposes an agreement with quorum\nfrom datetime import datetime, timedelta, timezone proposal = { \"action\": \"Deploy model v2 to production\", \"conditions\": [\"passes safety audit\", \"approved by 2 of 3 signers\"],\n}\ndeadline = (datetime.now(timezone.utc) + timedelta(hours=1)).isoformat() agreement = finance.create_agreement( document=proposal, agent_ids=[finance.agent_id, compliance.agent_id, legal.agent_id], question=\"Do you approve deployment of model v2?\", context=\"Production rollout pending safety audit sign-off.\", quorum=2, # only 2 of 3 need to sign timeout=deadline,\n) # Step 3: Finance signs\nagreement = finance.sign_agreement(agreement) # Step 4: Compliance co-signs -- quorum is now met\nagreement = compliance.sign_agreement(agreement) # Step 5: Verify -- any party can confirm independently\nstatus = finance.check_agreement(agreement)\nprint(f\"Complete: {status.complete}\") # True -- 2 of 3 signed for s in status.signers: label = \"signed\" if s.signed else \"pending\" print(f\" {s.agent_id[:12]}... {label}\")","breadcrumbs":"Multi-Agent Agreements » Python","id":"102","title":"Python"},"1020":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-registry Above + registry verification Must be registered and verified by a JACS registry verified-hai.ai (legacy alias) Same as verified-registry Backward-compatible alias","breadcrumbs":"Security Model » Claim Levels","id":"1020","title":"Claim Levels"},"1021":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"1021","title":"Setting a Verification Claim"},"1022":{"body":"When an agent claims verified, verified-registry, or legacy verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-registry (or legacy verified-hai.ai) claims, additional enforcement: Registry Registration : Agent must be registered with the configured registry (for HAI-hosted registry, hai.ai ) Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if the registry API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"1022","title":"Claim Enforcement"},"1023":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"1023","title":"Backward Compatibility"},"1024":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-registry' failed: Agent 'uuid' is not registered with the configured registry.\nAgents claiming 'verified-registry' must be registered with a reachable registry endpoint.","breadcrumbs":"Security Model » Error Messages","id":"1024","title":"Error Messages"},"1025":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-registry requires network access to the registry endpoint Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"1025","title":"Security Considerations"},"1026":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"1026","title":"DNS-Based Verification"},"1027":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"1027","title":"How It Works"},"1028":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"1028","title":"Configuration"},"1029":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"1029","title":"Security Levels"},"103":{"body":"import { JacsClient } from \"@hai.ai/jacs/client\"; async function main() { // Step 1: Create three agents const finance = await JacsClient.ephemeral(\"ring-Ed25519\"); const compliance = await JacsClient.ephemeral(\"ring-Ed25519\"); const legal = await JacsClient.ephemeral(\"ring-Ed25519\"); // Step 2: Finance proposes an agreement with quorum const proposal = { action: \"Deploy model v2 to production\", conditions: [\"passes safety audit\", \"approved by 2 of 3 signers\"], }; const deadline = new Date(Date.now() + 60 * 60 * 1000).toISOString(); const agentIds = [finance.agentId, compliance.agentId, legal.agentId]; let agreement = await finance.createAgreement(proposal, agentIds, { question: \"Do you approve deployment of model v2?\", context: \"Production rollout pending safety audit sign-off.\", quorum: 2, timeout: deadline, }); // Step 3: Finance signs agreement = await finance.signAgreement(agreement); // Step 4: Compliance co-signs -- quorum is now met agreement = await compliance.signAgreement(agreement); // Step 5: Verify const doc = JSON.parse(agreement.raw); const ag = doc.jacsAgreement; const sigCount = ag.signatures?.length ?? 0; console.log(`Signatures: ${sigCount} of ${agentIds.length}`); console.log(`Quorum met: ${sigCount >= (ag.quorum ?? agentIds.length)}`);\n} main().catch(console.error);","breadcrumbs":"Multi-Agent Agreements » Node.js / TypeScript","id":"103","title":"Node.js / TypeScript"},"1030":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"1030","title":"Trust Store Management"},"1031":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"1031","title":"Trusting Agents"},"1032":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"1032","title":"Untrusting Agents"},"1033":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"1033","title":"Trust Store Security"},"1034":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"1034","title":"Best Practices"},"1035":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"1035","title":"Agreement Security"},"1036":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"1036","title":"Agreement Structure"},"1037":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"1037","title":"Agreement Guarantees"},"1038":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"1038","title":"Request/Response Security"},"1039":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"1039","title":"Request Signing"},"104":{"body":"Three independent agents were created, each with their own keys -- no shared secrets. Finance proposed an agreement requiring 2-of-3 quorum with a one-hour deadline. Finance and Compliance signed. Legal never needed to act -- quorum was met. Any party can verify the agreement independently. The cryptographic proof chain is self-contained. Every signature includes: the signer's agent ID, the signing algorithm, a timestamp, and a hash of the agreement content. If anyone tampers with the document after signing, verification fails.","breadcrumbs":"Multi-Agent Agreements » What Just Happened?","id":"104","title":"What Just Happened?"},"1040":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"1040","title":"Response Verification"},"1041":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"1041","title":"Algorithm Security"},"1042":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"1042","title":"Supported Algorithms"},"1043":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"1043","title":"Algorithm Selection"},"1044":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"1044","title":"Security Best Practices"},"1045":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"1045","title":"1. Key Storage"},"1046":{"body":"# Option A: Use environment variables (CI, servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\" # Option B: Use OS keychain (developer workstations)\njacs keychain set --agent-id # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments\nexport JACS_KEYCHAIN_BACKEND=disabled","breadcrumbs":"Security Model » 2. Password Handling","id":"1046","title":"2. Password Handling"},"1047":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"1047","title":"3. Transport Security"},"1048":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"1048","title":"4. Verification Policies"},"1049":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"1049","title":"5. Audit Logging"},"105":{"body":"Agreements API Reference -- timeout, algorithm constraints, and more Python Framework Adapters -- use agreements inside LangChain, FastAPI, CrewAI Security Model -- how the cryptographic proof chain works","breadcrumbs":"Multi-Agent Agreements » Next Steps","id":"105","title":"Next Steps"},"1050":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"1050","title":"Security Checklist"},"1051":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"1051","title":"Development"},"1052":{"body":"Encrypt private keys at rest Use environment variables or OS keychain for secrets (never store jacs_private_key_password in config) Set JACS_KEYCHAIN_BACKEND=disabled on CI/headless servers Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"1052","title":"Production"},"1053":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"1053","title":"Verification"},"1054":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"1054","title":"Security Considerations"},"1055":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"1055","title":"Supply Chain"},"1056":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"1056","title":"Side Channels"},"1057":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"1057","title":"Recovery"},"1058":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"1058","title":"Troubleshooting Verification Claims"},"1059":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with the registry\" Problem : You're using verified-registry (or legacy verified-hai.ai) but the agent isn't registered. Solution : Register your agent with your configured registry (for HAI-hosted registry, hai.ai ) Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"1059","title":"Common Issues and Solutions"},"106":{"body":"Verify a JACS-signed document in under 2 minutes. Verification confirms two things: the document was signed by the claimed agent, and the content has not been modified since signing. Verification does NOT require creating an agent. You only need the signed document (and optionally access to the signer's public key).","breadcrumbs":"Verifying Signed Documents » Verifying Signed Documents","id":"106","title":"Verifying Signed Documents"},"1060":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-registry 2 (highest) Above + registry registration verified-hai.ai (legacy alias) 2 (highest) Alias of verified-registry","breadcrumbs":"Security Model » Claim Level Reference","id":"1060","title":"Claim Level Reference"},"1061":{"body":"Upgrades allowed : unverified → verified → verified-registry (legacy alias verified-hai.ai is same level) Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"1061","title":"Upgrade vs Downgrade Rules"},"1062":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"1062","title":"Quick Diagnostic Commands"},"1063":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"1063","title":"See Also"},"1064":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"1064","title":"Key Rotation"},"1065":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"1065","title":"Why Key Rotation Matters"},"1066":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"1066","title":"Key Compromise Recovery"},"1067":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"1067","title":"Cryptographic Agility"},"1068":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"1068","title":"Compliance Requirements"},"1069":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"1069","title":"Agent Versioning"},"107":{"body":"The fastest way to verify a document from the command line. No config file, no agent setup. # Verify a local file\njacs verify signed-document.json # Verify with JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document by URL\njacs verify --remote https://example.com/signed-doc.json # Specify a directory containing public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Output on success: Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z JSON output (--json): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} The exit code is 0 for valid, 1 for invalid or error. Use this in CI/CD pipelines: if jacs verify artifact.json --json; then echo \"Artifact is authentic\"\nelse echo \"Verification failed\" >&2 exit 1\nfi If a jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise, it creates a temporary ephemeral verifier internally.","breadcrumbs":"Verifying Signed Documents » CLI: jacs verify","id":"107","title":"CLI: jacs verify"},"1070":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"1070","title":"Version Format"},"1071":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"1071","title":"Version Chain"},"1072":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"1072","title":"Version-Aware Verification"},"1073":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"1073","title":"Signature Structure"},"1074":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"1074","title":"Key Resolution Process"},"1075":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"1075","title":"Key Lookup Priority"},"1076":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"1076","title":"Key Rotation Process"},"1077":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"1077","title":"Step-by-Step Rotation"},"1078":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"1078","title":"Transition Signature"},"1079":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"1079","title":"CLI Commands (Planned)"},"108":{"body":"","breadcrumbs":"Verifying Signed Documents » Python","id":"108","title":"Python"},"1080":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"1080","title":"Example Rotation Flow"},"1081":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"1081","title":"Trust Store with Version History"},"1082":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"1082","title":"TrustedAgent Structure"},"1083":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1083","title":"Key Status Values"},"1084":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1084","title":"Looking Up Keys"},"1085":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1085","title":"DNS Support for Key Versions"},"1086":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1086","title":"Multi-Version DNS Records"},"1087":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1087","title":"DNS Record Generation"},"1088":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1088","title":"Security Considerations"},"1089":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1089","title":"Key Revocation"},"109":{"body":"import jacs.simple as jacs jacs.load(\"./jacs.config.json\") result = jacs.verify(signed_json)\nif result.valid: print(f\"Signed by: {result.signer_id}\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"109","title":"With an agent loaded"},"1090":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1090","title":"Overlap Period"},"1091":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1091","title":"Secure Deletion"},"1092":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1092","title":"Best Practices"},"1093":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1093","title":"Rotation Schedule"},"1094":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1094","title":"Pre-Rotation Checklist"},"1095":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1095","title":"Post-Rotation Checklist"},"1096":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1096","title":"See Also"},"1097":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1097","title":"Cryptographic Algorithms"},"1098":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1098","title":"Supported Algorithms"},"1099":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1099","title":"Ed25519 (ring-Ed25519)"},"11":{"body":"pip install jacs","breadcrumbs":"Introduction » Python","id":"11","title":"Python"},"110":{"body":"import jacs.simple as jacs result = jacs.verify_standalone( signed_json, key_resolution=\"local\", key_directory=\"./trusted-keys/\"\n)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") verify_standalone does not use a global agent. Pass the key resolution strategy and directories explicitly.","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"110","title":"Without an agent (standalone)"},"1100":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1100","title":"Overview"},"1101":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1101","title":"Characteristics"},"1102":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1102","title":"Configuration"},"1103":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1103","title":"Use Cases"},"1104":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1104","title":"Example"},"1105":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1105","title":"RSA-PSS"},"1106":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1106","title":"Overview"},"1107":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1107","title":"Characteristics"},"1108":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1108","title":"Configuration"},"1109":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1109","title":"Use Cases"},"111":{"body":"If the document is in local storage and you know its ID: result = jacs.verify_by_id(\"550e8400-e29b-41d4:1\")","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"111","title":"Verify by document ID"},"1110":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1110","title":"Considerations"},"1111":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1111","title":"Dilithium (pq-dilithium)"},"1112":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1112","title":"Overview"},"1113":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1113","title":"Characteristics"},"1114":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1114","title":"Configuration"},"1115":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1115","title":"Use Cases"},"1116":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1116","title":"Considerations"},"1117":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1117","title":"PQ2025 (Hybrid)"},"1118":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1118","title":"Overview"},"1119":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1119","title":"Characteristics"},"112":{"body":"","breadcrumbs":"Verifying Signed Documents » Node.js","id":"112","title":"Node.js"},"1120":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1120","title":"Configuration"},"1121":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1121","title":"Use Cases"},"1122":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1122","title":"Considerations"},"1123":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1123","title":"Algorithm Selection Guide"},"1124":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1124","title":"Decision Matrix"},"1125":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1125","title":"By Use Case"},"1126":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1126","title":"Key Generation"},"1127":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1127","title":"Key Formats"},"1128":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1128","title":"Signature Structure"},"1129":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1129","title":"Hashing"},"113":{"body":"import * as jacs from '@hai.ai/jacs/simple'; await jacs.load('./jacs.config.json'); const result = await jacs.verify(signedJson);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"113","title":"With an agent loaded"},"1130":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1130","title":"Algorithm Migration"},"1131":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1131","title":"Performance Comparison"},"1132":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1132","title":"Security Considerations"},"1133":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1133","title":"Algorithm Agility"},"1134":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1134","title":"Forward Secrecy"},"1135":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1135","title":"Key Compromise"},"1136":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1136","title":"See Also"},"1137":{"body":"Choosing the right signing algorithm affects key size, signature size, verification speed, and compliance posture. This guide helps you pick the right one.","breadcrumbs":"Algorithm Selection Guide » Algorithm Selection Guide","id":"1137","title":"Algorithm Selection Guide"},"1138":{"body":"Algorithm Config Value Public Key Signature Best For Ed25519 ring-Ed25519 32 bytes 64 bytes Speed, small signatures RSA-PSS RSA-PSS ~550 bytes (4096-bit) ~512 bytes Broad compatibility ML-DSA-87 pq2025 2,592 bytes 4,627 bytes Post-quantum compliance (FIPS-204) Dilithium pq-dilithium >1,000 bytes ~3,293-4,644 bytes Deprecated -- use pq2025","breadcrumbs":"Algorithm Selection Guide » Supported Algorithms","id":"1138","title":"Supported Algorithms"},"1139":{"body":"Do you need FIPS/NIST post-quantum compliance? ├── Yes → pq2025 └── No ├── Need maximum interop with existing PKI/TLS systems? → RSA-PSS └── Need speed and small payloads? → ring-Ed25519 Default recommendation for new projects: pq2025 Ed25519 and RSA-PSS are well-understood and widely deployed, but neither is quantum-resistant. If you don't have a specific reason to choose one of them, start with pq2025 so you don't have to migrate later.","breadcrumbs":"Algorithm Selection Guide » How to Choose","id":"1139","title":"How to Choose"},"114":{"body":"import { verifyStandalone } from '@hai.ai/jacs/simple'; const result = verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './trusted-keys/',\n});\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"114","title":"Without an agent (standalone)"},"1140":{"body":"Choose pq2025 (ML-DSA-87, FIPS-204) when: Your compliance team asks about quantum readiness Government or defense contracts require FIPS-204 You need long-lived signatures that must remain valid for 10+ years You want to avoid a future algorithm migration JACS supports ML-DSA-87 (FIPS-204) for post-quantum digital signatures. When your compliance team asks about quantum readiness, JACS already has the answer. The tradeoff is size: ML-DSA-87 public keys are 2,592 bytes and signatures are 4,627 bytes -- roughly 80x larger than Ed25519. For most applications this is negligible, but if you're signing millions of small messages and bandwidth matters, consider Ed25519.","breadcrumbs":"Algorithm Selection Guide » When to Choose Post-Quantum","id":"1140","title":"When to Choose Post-Quantum"},"1141":{"body":"JACS verification works across algorithms. An agreement can contain signatures from RSA, Ed25519, and ML-DSA agents and all verify correctly. This heterogeneous verification is important for cross-organization scenarios where different parties chose different algorithms. Each agent uses one algorithm (chosen at creation time), but can verify signatures from all supported algorithms.","breadcrumbs":"Algorithm Selection Guide » Cross-Algorithm Verification","id":"1141","title":"Cross-Algorithm Verification"},"1142":{"body":"Set the algorithm in your jacs.config.json: { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Or via environment variable: export JACS_AGENT_KEY_ALGORITHM=pq2025 Valid values: ring-Ed25519, RSA-PSS, pq2025 In Python and Node.js, pass the algorithm to quickstart(...): from jacs.client import JacsClient\nclient = JacsClient.quickstart( name=\"algo-agent\", domain=\"algo.example.com\", algorithm=\"pq2025\",\n) import { JacsClient } from \"@hai.ai/jacs\";\nconst client = await JacsClient.quickstart({ name: \"algo-agent\", domain: \"algo.example.com\", algorithm: \"pq2025\",\n});","breadcrumbs":"Algorithm Selection Guide » Configuration","id":"1142","title":"Configuration"},"1143":{"body":"Each agent uses one algorithm, chosen at creation time. You cannot change an agent's algorithm after creation. Algorithm negotiation between agents is planned but not yet implemented. pq-dilithium is deprecated in favor of pq2025 (ML-DSA-87). Use pq2025 for new agents and verification hints.","breadcrumbs":"Algorithm Selection Guide » Current Limitations","id":"1143","title":"Current Limitations"},"1144":{"body":"JACS has two storage layers today: Low-level file/object storage via MultiStorage Signed document CRUD/search via DocumentService Those are related, but they are not identical. The most important rule is the signed-document contract: Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes an already-signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Storage Backends » Storage Backends","id":"1144","title":"Storage Backends"},"1145":{"body":"Backend Config Value Core Surface Notes Filesystem fs MultiStorage + DocumentService Default. Signed JSON files on disk. Local indexed SQLite rusqlite DocumentService + SearchProvider Stores signed documents in a local SQLite DB with FTS search. AWS object storage aws MultiStorage Object-store backend. Memory memory MultiStorage Non-persistent, useful for tests and temporary flows. Browser local storage local MultiStorage WASM-only. For local indexed document search in JACS core, use rusqlite.","breadcrumbs":"Storage Backends » Built-in Core Backends","id":"1145","title":"Built-in Core Backends"},"1146":{"body":"Filesystem is the default signed-document backend. { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Typical layout: jacs_data/\n├── agent/\n│ └── {agent-id}:{agent-version}.json\n└── documents/ ├── {document-id}:{version}.json └── archive/ Use filesystem when you want the simplest possible deployment, inspectable files, and no local database dependency.","breadcrumbs":"Storage Backends » Filesystem (fs)","id":"1146","title":"Filesystem (fs)"},"1147":{"body":"rusqlite is the built-in indexed document backend used by the upgraded bindings and MCP search path. { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} With this setting: Signed documents are stored in ./jacs_data/jacs_documents.sqlite3 Full-text search comes from SQLite FTS DocumentService reads and writes enforce verification Updating visibility creates a new signed successor version Use rusqlite when you want local full-text search, filtered document queries, and a single-machine deployment.","breadcrumbs":"Storage Backends » Local Indexed SQLite (rusqlite)","id":"1147","title":"Local Indexed SQLite (rusqlite)"},"1148":{"body":"AWS support is an object-store backend for lower-level storage operations. { \"jacs_default_storage\": \"aws\"\n} Required environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-bucket\"\nexport AWS_ACCESS_KEY_ID=\"...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" Use aws when you need remote object storage. If you also need a richer signed-document query surface, use one of the database-focused crates below.","breadcrumbs":"Storage Backends » AWS (aws)","id":"1148","title":"AWS (aws)"},"1149":{"body":"Memory storage is non-persistent: { \"jacs_default_storage\": \"memory\"\n} Use it for tests, temporary operations, and ephemeral agent flows.","breadcrumbs":"Storage Backends » Memory (memory)","id":"1149","title":"Memory (memory)"},"115":{"body":"const result = await jacs.verifyById('550e8400-e29b-41d4:1');","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"115","title":"Verify by document ID"},"1150":{"body":"Several richer database backends now live outside the JACS core crate: jacs-postgresql jacs-duckdb jacs-redb jacs-surrealdb These crates implement the same storage/search traits in their own packages. They are not built-in jacs_default_storage values for the core crate.","breadcrumbs":"Storage Backends » Extracted Backend Crates","id":"1150","title":"Extracted Backend Crates"},"1151":{"body":"Scenario Recommendation Default local usage fs Local search + filtering rusqlite Ephemeral tests memory Remote object storage aws Postgres / vector / multi-model needs Use an extracted backend crate","breadcrumbs":"Storage Backends » Choosing a Backend","id":"1151","title":"Choosing a Backend"},"1152":{"body":"Switching backends does not migrate data automatically. When you change jacs_default_storage: Export the signed documents you need to keep. Update the config value. Create/import the new backend’s data store. Re-run verification on imported documents as part of migration validation.","breadcrumbs":"Storage Backends » Migration Notes","id":"1152","title":"Migration Notes"},"1153":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1153","title":"Custom Schemas"},"1154":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1154","title":"Overview"},"1155":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1155","title":"Creating a Custom Schema"},"1156":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1156","title":"Basic Structure"},"1157":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1157","title":"Step-by-Step Guide"},"1158":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1158","title":"Schema Best Practices"},"1159":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1159","title":"Use Meaningful IDs"},"116":{"body":"Generate a URL that lets anyone verify a signed document through a web verifier (e.g., hai.ai): Python: url = jacs.generate_verify_link(signed_doc.raw_json)\n# https://hai.ai/jacs/verify?s= Node.js: const url = jacs.generateVerifyLink(signed.raw); The document is base64url-encoded into the URL query parameter. Documents must be under ~1.5 KB to fit within the 2048-character URL limit. For larger documents, share the file directly and verify with the CLI or SDK.","breadcrumbs":"Verifying Signed Documents » Verification Links","id":"116","title":"Verification Links"},"1160":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1160","title":"Document Everything"},"1161":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1161","title":"Use Appropriate Validation"},"1162":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1162","title":"Group Related Fields"},"1163":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1163","title":"Advanced Schema Features"},"1164":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1164","title":"Conditional Validation"},"1165":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1165","title":"Reusable Definitions"},"1166":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1166","title":"Array Constraints"},"1167":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1167","title":"Pattern Properties"},"1168":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1168","title":"Schema Inheritance"},"1169":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1169","title":"Extending Custom Schemas"},"117":{"body":"DNS verification checks that an agent's public key hash matches a DNS TXT record published at _v1.agent.jacs.. This provides a decentralized trust anchor: anyone can look up the agent's expected key fingerprint via DNS without contacting a central server.","breadcrumbs":"Verifying Signed Documents » DNS Verification","id":"117","title":"DNS Verification"},"1170":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1170","title":"Validation"},"1171":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1171","title":"Python Validation"},"1172":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1172","title":"Node.js Validation"},"1173":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1173","title":"Example Schemas"},"1174":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1174","title":"Medical Record"},"1175":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1175","title":"Legal Contract"},"1176":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1176","title":"IoT Sensor Reading"},"1177":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1177","title":"Schema Versioning"},"1178":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1178","title":"Version in Path"},"1179":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1179","title":"Version Field"},"118":{"body":"jacs agent dns --domain example.com --provider plain This outputs the TXT record to add to your DNS zone. Provider options: plain, aws, azure, cloudflare.","breadcrumbs":"Verifying Signed Documents » Publishing a DNS record","id":"118","title":"Publishing a DNS record"},"1180":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1180","title":"Migration Strategy"},"1181":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1181","title":"See Also"},"1182":{"body":"The JACS trust store is a local directory of agent public keys and metadata that your agent has explicitly chosen to trust. It enables offline signature verification without a central authority -- once you trust an agent, you can verify its signatures without network access.","breadcrumbs":"Trust Store » Trust Store Operations","id":"1182","title":"Trust Store Operations"},"1183":{"body":"When you add an agent to your trust store, JACS: Parses the agent's JSON document Extracts the public key and verifies the agent's self-signature Saves the agent document, public key, and metadata to ~/.jacs/trust_store/ After that, any document signed by that agent can be verified locally using the cached public key.","breadcrumbs":"Trust Store » How it works","id":"1183","title":"How it works"},"1184":{"body":"All bindings expose five trust store functions: Function Description trust_agent(agent_json) Add an agent to the trust store (verifies self-signature first) list_trusted_agents() List all trusted agent IDs is_trusted(agent_id) Check if an agent is in the trust store get_trusted_agent(agent_id) Retrieve the full agent JSON untrust_agent(agent_id) Remove an agent from the trust store","breadcrumbs":"Trust Store » API","id":"1184","title":"API"},"1185":{"body":"import jacs # Receive an agent document from a partner organization\nremote_agent_json = receive_from_partner() # Add to trust store (self-signature is verified automatically)\nagent_id = jacs.trust_agent(remote_agent_json)\nprint(f\"Now trusting: {agent_id}\") # Later, check trust before processing a signed document\nif jacs.is_trusted(sender_id): # Verify their signature using the cached public key result = jacs.verify(signed_document) # List all trusted agents\nfor aid in jacs.list_trusted_agents(): print(aid) # Remove trust\njacs.untrust_agent(agent_id)","breadcrumbs":"Trust Store » Python example","id":"1185","title":"Python example"},"1186":{"body":"import { trustAgent, isTrusted, listTrustedAgents, untrustAgent } from '@hai.ai/jacs'; // Add a partner's agent to the trust store\nconst agentId = trustAgent(remoteAgentJson); // Check trust\nif (isTrusted(senderId)) { const result = verify(signedDocument);\n} // List and remove\nconst trusted = listTrustedAgents();\nuntrustAgent(agentId);","breadcrumbs":"Trust Store » Node.js example","id":"1186","title":"Node.js example"},"1187":{"body":"A realistic deployment involves two organizations that need to verify each other's agent signatures: Org B creates an agent and publishes its public key via DNS TXT records or a HAI key distribution endpoint Org A fetches Org B's agent document (via fetch_remote_key or direct exchange) Org A calls trust_agent() with Org B's agent JSON -- JACS verifies the self-signature and caches the public key From this point on, Org A can verify any document signed by Org B's agent offline , using only the local trust store This is the same model as SSH known_hosts or PGP key signing: trust is established once through a verified channel, then used repeatedly without network round-trips.","breadcrumbs":"Trust Store » Cross-organization scenario","id":"1187","title":"Cross-organization scenario"},"1188":{"body":"trust_agent() cryptographically verifies the agent's self-signature before adding it to the store. A tampered agent document will be rejected. Agent IDs are validated against path traversal attacks before any filesystem operations. The trust store directory (~/.jacs/trust_store/) should be protected with appropriate file permissions. Revoking trust with untrust_agent() removes both the agent document and cached key material.","breadcrumbs":"Trust Store » Security notes","id":"1188","title":"Security notes"},"1189":{"body":"Most signing libraries work as tools : the developer calls sign() and verify() manually at each point where integrity matters. JACS can work that way too, but its real value appears when it operates as infrastructure -- signing happens automatically as a side effect of normal framework usage.","breadcrumbs":"Infrastructure vs Tools » Infrastructure vs Tools: JACS as Middleware","id":"1189","title":"Infrastructure vs Tools: JACS as Middleware"},"119":{"body":"jacs agent lookup example.com This fetches the agent's public key from https://example.com/.well-known/jacs-pubkey.json and checks the DNS TXT record at _v1.agent.jacs.example.com.","breadcrumbs":"Verifying Signed Documents » Looking up an agent by domain","id":"119","title":"Looking up an agent by domain"},"1190":{"body":"Approach Developer effort Coverage Tool Call sign()/verify() at every boundary Only where you remember to add it Infrastructure Add 1-3 lines of setup Every request/response automatically","breadcrumbs":"Infrastructure vs Tools » The difference","id":"1190","title":"The difference"},"1191":{"body":"JACS MCP transport proxies sit between client and server. Every JSON-RPC message is signed on the way out and verified on the way in. The MCP tools themselves never call a signing function -- it happens at the transport layer. Client --> [JACS Proxy: sign] --> Server\nClient <-- [JACS Proxy: verify] <-- Server No application code changes. The proxy handles it.","breadcrumbs":"Infrastructure vs Tools » Transport-level: MCP proxies","id":"1191","title":"Transport-level: MCP proxies"},"1192":{"body":"A single middleware line signs every HTTP response automatically: # FastAPI -- one line of setup\napp.add_middleware(JacsMiddleware, client=jacs_client)\n# Every response now carries a JACS signature header // Express -- one line of setup\napp.use(jacsMiddleware({ client }));\n// Every response now carries a JACS signature header The route handlers are unchanged. Signing is invisible to the developer writing business logic.","breadcrumbs":"Infrastructure vs Tools » Framework-level: Express / FastAPI middleware","id":"1192","title":"Framework-level: Express / FastAPI middleware"},"1193":{"body":"When JACS publishes an A2A agent card, the card includes the agent's public key and supported algorithms. Any other A2A-compatible agent can verify signatures without prior arrangement -- the trust bootstrapping is built into the protocol.","breadcrumbs":"Infrastructure vs Tools » Protocol-level: A2A agent cards","id":"1193","title":"Protocol-level: A2A agent cards"},"1194":{"body":"Manual signing has the same problem as manual memory management: developers forget, and the places they forget are the places attackers target. Infrastructure-level signing eliminates that gap. MCP transport : every tool call and result is signed, not just the ones you thought to protect HTTP middleware : every API response is signed, including error responses and health checks A2A integration : every agent interaction is verifiable, including discovery The developer adds setup code once. After that, signing happens everywhere automatically -- including in code paths the developer never explicitly considered.","breadcrumbs":"Infrastructure vs Tools » Why this matters","id":"1194","title":"Why this matters"},"1195":{"body":"Use JACS as a tool when you need fine-grained control: signing specific documents, creating agreements between named parties, or building custom verification workflows. Use JACS as infrastructure when you want blanket coverage: every message signed, every response verifiable, every agent interaction auditable. This is the recommended default for production deployments. Both approaches use the same keys, the same signatures, and the same verification. The difference is who calls sign() -- you, or the framework.","breadcrumbs":"Infrastructure vs Tools » When to use each approach","id":"1195","title":"When to use each approach"},"1196":{"body":"JACS uses DNS TXT records to anchor agent identity to domain names, providing a decentralized trust layer that does not require a central certificate authority. This page explains the trust model, configuration levels, and known limitations.","breadcrumbs":"DNS Trust Anchoring » DNS Trust Anchoring","id":"1196","title":"DNS Trust Anchoring"},"1197":{"body":"When an agent has jacsAgentDomain set, JACS publishes a TXT record at _v1.agent.jacs. containing a fingerprint of the agent's public key. During verification, JACS resolves this record and compares the fingerprint against the agent's actual key material. The TXT record format: v=hai.ai; id=; alg=sha256; enc=base64; fp= If the digest matches the local public key hash, the agent's identity is confirmed through DNS.","breadcrumbs":"DNS Trust Anchoring » How It Works","id":"1197","title":"How It Works"},"1198":{"body":"dns_validate dns_required dns_strict CLI Flag Behavior false false false --ignore-dns No DNS checks at all. Verification relies only on embedded fingerprints. true false false --no-dns Attempt DNS lookup; fall back to embedded fingerprint on failure. true true false --require-dns DNS TXT record must exist and match. No fallback to embedded fingerprint. true true true --require-strict-dns DNS TXT record must exist, match, and be DNSSEC-authenticated. Default behavior : When no flags are set, dns_validate and dns_required are derived from whether jacsAgentDomain is present in the agent document. If a domain is set, validation and requirement default to true. dns_strict always defaults to false. Verified claims override : Agents with jacsVerificationClaim set to a verified level automatically use validate=true, strict=true, required=true regardless of flags.","breadcrumbs":"DNS Trust Anchoring » Four Configuration Levels","id":"1198","title":"Four Configuration Levels"},"1199":{"body":"Domain ownership implies identity : The entity controlling DNS for a domain is authorized to speak for agents on that domain. TXT records are tamper-evident with DNSSEC : When --require-strict-dns is used, the full DNSSEC chain of trust (root -> TLD -> domain -> record) provides cryptographic integrity. Embedded fingerprints are a weaker fallback : Without DNS, JACS falls back to the signature fingerprint (jacsSignature.publicKeyHash) in the signed artifact/agent material. This proves key consistency but not domain ownership.","breadcrumbs":"DNS Trust Anchoring » Security Model Assumptions","id":"1199","title":"Security Model Assumptions"},"12":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Introduction » Node.js","id":"12","title":"Node.js"},"120":{"body":"# Require DNS validation (fail if no DNS record)\njacs agent verify --require-dns # Require strict DNSSEC validation\njacs agent verify --require-strict-dns For full DNS setup instructions, see DNS-Based Verification and DNS Trust Anchoring .","breadcrumbs":"Verifying Signed Documents » CLI verification with DNS","id":"120","title":"CLI verification with DNS"},"1200":{"body":"Attack Risk Level Mitigated By DNS cache poisoning Medium DNSSEC (--require-strict-dns), short TTLs TXT record manipulation (compromised DNS credentials) High DNSSEC, monitoring, key rotation DNS spoofing (man-in-the-middle) Medium DNSSEC validation, DNS-over-HTTPS resolvers Stale records after key rotation Low TTL management, re-publishing records before rotation Downgrade to embedded-only Medium Use --require-dns to prevent fallback","breadcrumbs":"DNS Trust Anchoring » Known Attack Vectors","id":"1200","title":"Known Attack Vectors"},"1201":{"body":"Fingerprint binding : The TXT record ties a specific public key to a domain, preventing key substitution. Multiple verification levels : From no-DNS (local development) to strict DNSSEC (production cross-org). Fallback logic : When DNS is unavailable and not required, verification degrades gracefully to embedded fingerprint comparison. Error specificity : Distinct error messages for \"record missing,\" \"fingerprint mismatch,\" \"DNSSEC failed,\" and \"agent ID mismatch.\"","breadcrumbs":"DNS Trust Anchoring » What JACS Provides","id":"1201","title":"What JACS Provides"},"1202":{"body":"Active DNSSEC chain validation : JACS relies on the system resolver (or DoH) for DNSSEC; it does not perform independent DNSKEY/DS chain validation. Certificate Transparency-style monitoring : No log of historical TXT record changes. Domain owners must monitor independently. Automatic key-to-DNS synchronization : Publishing and updating TXT records is a manual step (or CI/CD-driven).","breadcrumbs":"DNS Trust Anchoring » What JACS Does Not Yet Provide","id":"1202","title":"What JACS Does Not Yet Provide"},"1203":{"body":"Environment Minimum Setting Reason Local development --ignore-dns or --no-dns No real domain needed Internal org --no-dns DNS available but not critical Cross-org production --require-dns Prevents impersonation across trust boundaries High-security / regulated --require-strict-dns Full DNSSEC chain required For production cross-organization deployments, use --require-dns at minimum. Enable DNSSEC on your domain and use --require-strict-dns when the infrastructure supports it.","breadcrumbs":"DNS Trust Anchoring » Recommendations","id":"1203","title":"Recommendations"},"1204":{"body":"DNS-Based Verification -- setup guide with provider-specific instructions Security Model -- broader security architecture Key Rotation -- coordinating key changes with DNS updates","breadcrumbs":"DNS Trust Anchoring » See Also","id":"1204","title":"See Also"},"1205":{"body":"This page documents the error messages you will see when multi-agent agreements fail. Each scenario is validated by the chaos agreement tests in the JACS test suite.","breadcrumbs":"Failure Modes » Failure Modes","id":"1205","title":"Failure Modes"},"1206":{"body":"What happened: An agreement was created for N agents but one or more agents never signed -- they crashed, timed out, or disconnected before calling sign_agreement. Error message: not all agents have signed: [\"\"] { ... agreement object ... } What to do: Identify the unsigned agent from the error, re-establish contact, and have them call sign_agreement on the document. The partially-signed document is still valid and can accept additional signatures -- signing is additive.","breadcrumbs":"Failure Modes » Partial Signing (Agent Crash)","id":"1206","title":"Partial Signing (Agent Crash)"},"1207":{"body":"What happened: An agreement with an explicit quorum (M-of-N via AgreementOptions) received fewer than M signatures. Error message: Quorum not met: need 2 signatures, have 1 (unsigned: [\"\"]) What to do: Either collect more signatures to meet the quorum threshold, or create a new agreement with a lower quorum if appropriate. The unsigned agent IDs in the error tell you exactly who still needs to sign.","breadcrumbs":"Failure Modes » Quorum Not Met","id":"1207","title":"Quorum Not Met"},"1208":{"body":"What happened: A signature byte was modified after an agent signed the agreement. The cryptographic verification layer detects that the signature does not match the signed content. Error message: The exact message comes from the crypto verification layer and varies by algorithm, but it will always fail on the signature check rather than reporting missing signatures. You will not see \"not all agents have signed\" for this case -- the error is a cryptographic verification failure. What to do: This indicates data corruption in transit or deliberate tampering. Discard the document and request a fresh copy from the signing agent. Do not attempt to re-sign a document with a corrupted signature.","breadcrumbs":"Failure Modes » Tampered Signature","id":"1208","title":"Tampered Signature"},"1209":{"body":"What happened: The document content was modified after signatures were applied. JACS stores an integrity hash of the agreement-relevant fields at signing time, and any body modification causes a mismatch. Error message: Agreement verification failed: agreement hashes do not match What to do: The document body no longer matches what the agents originally signed. Discard the modified document and go back to the last known-good version. If the modification was intentional (e.g., an amendment), create a new agreement on the updated document and collect fresh signatures from all parties.","breadcrumbs":"Failure Modes » Tampered Document Body","id":"1209","title":"Tampered Document Body"},"121":{"body":"JACS signatures are language-agnostic. A document signed by a Rust agent verifies identically in Python and Node.js, and vice versa. This holds for both Ed25519 and post-quantum (ML-DSA-87/pq2025) algorithms. This is tested on every commit: Rust generates signed fixtures, then Python calls verify_standalone() and Node.js calls verifyStandalone() to verify them. Each binding also countersigns the fixture with a different algorithm, proving round-trip interoperability. Test sources: Rust fixture generator: jacs/tests/cross_language/mod.rs Python consumer: jacspy/tests/test_cross_language.py Node.js consumer: jacsnpm/test/cross-language.test.js","breadcrumbs":"Verifying Signed Documents » Cross-Language Verification","id":"121","title":"Cross-Language Verification"},"1210":{"body":"What happened: sign_agreement succeeded but save() was never called -- for example, a storage backend failure or process interruption before persistence. Error message: None. This is not an error. After sign_agreement returns successfully, the signed document is immediately retrievable and verifiable from in-memory storage. What to do: Retry the save() call to persist to disk. The in-memory state is consistent: you can retrieve the document with get_document, verify it with check_agreement, serialize it, and transfer it to other agents for additional signatures -- all without saving first.","breadcrumbs":"Failure Modes » In-Memory Consistency After Signing","id":"1210","title":"In-Memory Consistency After Signing"},"1211":{"body":"Creating and Using Agreements - Agreement creation and signing workflow Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details and signature verification","breadcrumbs":"Failure Modes » See Also","id":"1211","title":"See Also"},"1212":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1212","title":"Testing"},"1213":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1213","title":"Testing Fundamentals"},"1214":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1214","title":"Test Agent Setup"},"1215":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1215","title":"Test Fixtures"},"1216":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1216","title":"Unit Testing"},"1217":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1217","title":"Testing Document Operations"},"1218":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1218","title":"Testing Agreements"},"1219":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1219","title":"Agreement Completion Semantics (Strict)"},"122":{"body":"When verifying a document, JACS resolves the signer's public key in a configurable order. Set JACS_KEY_RESOLUTION to control this: Value Source local Local trust store (added via trust_agent) dns DNS TXT record lookup hai HAI key distribution service Default: local,hai. Example: JACS_KEY_RESOLUTION=local,dns,hai.","breadcrumbs":"Verifying Signed Documents » Key Resolution Order","id":"122","title":"Key Resolution Order"},"1220":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1220","title":"Two-Agent Agreement Harness (Separate Agents)"},"1221":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1221","title":"Testing Request/Response Signing"},"1222":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1222","title":"Integration Testing"},"1223":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1223","title":"Testing MCP Integration"},"1224":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1224","title":"Testing HTTP Endpoints"},"1225":{"body":"","breadcrumbs":"Testing » Mocking","id":"1225","title":"Mocking"},"1226":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1226","title":"Mocking JACS Agent"},"1227":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1227","title":"Mocking MCP Transport"},"1228":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1228","title":"Test Coverage"},"1229":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1229","title":"Rust Coverage"},"123":{"body":"Signing says WHO. Attestation says WHO plus WHY. A JACS attestation is a cryptographically signed document that goes beyond proving who signed something. It records why a piece of data should be trusted -- the evidence, the claims, and the reasoning behind that trust.","breadcrumbs":"What Is an Attestation? » What Is an Attestation?","id":"123","title":"What Is an Attestation?"},"1230":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1230","title":"Python Coverage"},"1231":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1231","title":"Node.js Coverage"},"1232":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1232","title":"CI/CD Integration"},"1233":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1233","title":"GitHub Actions"},"1234":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1234","title":"Test Environment Variables"},"1235":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1235","title":"RAII Test Fixtures (Rust)"},"1236":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1236","title":"TrustTestGuard Pattern"},"1237":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1237","title":"Property-Based Testing"},"1238":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1238","title":"Key Properties to Test"},"1239":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1239","title":"Fuzzing"},"124":{"body":"sign_message() create_attestation() Proves Who signed it Who signed it + why it's trustworthy Contains Signature + hash Signature + hash + subject + claims + evidence Use case Data integrity Trust decisions, audit trails, compliance Verification Was it tampered with? Was it tampered with? Are the claims valid? Is the evidence fresh?","breadcrumbs":"What Is an Attestation? » Signing vs. Attestation","id":"124","title":"Signing vs. Attestation"},"1240":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1240","title":"Recommended Tool: cargo-fuzz"},"1241":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1241","title":"Priority Fuzz Targets for JACS"},"1242":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1242","title":"Best Practices"},"1243":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1243","title":"1. Isolate Tests"},"1244":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1244","title":"2. Test Edge Cases"},"1245":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1245","title":"3. Test Security Properties"},"1246":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1246","title":"4. Test Error Handling"},"1247":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1247","title":"See Also"},"1248":{"body":"Use MCP when the boundary is model-to-tool inside an application or local workstation. Use A2A when the boundary is agent-to-agent across organizations or services.","breadcrumbs":"MCP Overview » MCP Overview","id":"1248","title":"MCP Overview"},"1249":{"body":"There are three supported ways to use JACS with MCP today: Run jacs mcp when you want a ready-made MCP server with the broadest tool surface. Wrap an existing MCP transport when you already have an MCP server or client and want signed JSON-RPC. Register JACS as MCP tools when you want the model to call signing, verification, agreement, A2A, or trust operations directly.","breadcrumbs":"MCP Overview » Choose The MCP Path","id":"1249","title":"Choose The MCP Path"},"125":{"body":"","breadcrumbs":"What Is an Attestation? » Key Concepts","id":"125","title":"Key Concepts"},"1250":{"body":"Runtime Best starting point What it gives you Rust jacs-mcp Full MCP server with document, agreement, trust, A2A, and audit tools Python jacs.mcp or jacs.adapters.mcp Local SSE transport security or FastMCP tool registration Node.js @hai.ai/jacs/mcp Transport proxy or MCP tool registration for existing SDK-based servers","breadcrumbs":"MCP Overview » Best Fit By Runtime","id":"1250","title":"Best Fit By Runtime"},"1251":{"body":"Python MCP wrappers are local-only. JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback URLs. Unsigned fallback is off by default. Both Python and Node fail closed unless you explicitly allow unsigned fallback. Node has two factories. createJACSTransportProxy() takes a loaded JacsClient or JacsAgent; createJACSTransportProxyAsync() is the config-path variant.","breadcrumbs":"MCP Overview » Important Constraints","id":"1251","title":"Important Constraints"},"1252":{"body":"Install the unified binary and start the MCP server: cargo install jacs-cli\njacs mcp The MCP server is built into the jacs binary (stdio transport only, no HTTP). It includes document signing, agreements, trust store operations, A2A tools, and security audit tools. See jacs-mcp/README.md in the repo for the full tool list and client configuration examples.","breadcrumbs":"MCP Overview » 1. Ready-Made Server: jacs mcp","id":"1252","title":"1. Ready-Made Server: jacs mcp"},"1253":{"body":"","breadcrumbs":"MCP Overview » 2. Transport Security Around Your Existing MCP Code","id":"1253","title":"2. Transport Security Around Your Existing MCP Code"},"1254":{"body":"Use jacs.mcp when you already have a FastMCP server or client and want transparent signing around the SSE transport: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\") For clients: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") Helpful utilities in the same module: create_jacs_mcp_server() for a one-line FastMCP server jacs_middleware() for explicit Starlette middleware wiring jacs_call() for one-off authenticated local calls See Python MCP Integration for the detailed patterns.","breadcrumbs":"MCP Overview » Python","id":"1254","title":"Python"},"1255":{"body":"Use the transport proxy when you already have an MCP transport: import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); If you only have a config path: import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); See Node.js MCP Integration for examples and tool registration.","breadcrumbs":"MCP Overview » Node.js","id":"1255","title":"Node.js"},"1256":{"body":"This is different from transport security. Here the model gets explicit MCP tools such as jacs_sign_document, jacs_verify_document, agreement helpers, and trust helpers.","breadcrumbs":"MCP Overview » 3. Register JACS Operations As MCP Tools","id":"1256","title":"3. Register JACS Operations As MCP Tools"},"1257":{"body":"from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\")\nregister_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client)","breadcrumbs":"MCP Overview » Python","id":"1257","title":"Python"},"1258":{"body":"import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The Node tool set is intentionally smaller than the Rust MCP server. Use jacs mcp when you need the largest supported MCP surface.","breadcrumbs":"MCP Overview » Node.js","id":"1258","title":"Node.js"},"1259":{"body":"jacs-mcp/README.md jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js","breadcrumbs":"MCP Overview » Example Paths In This Repo","id":"1259","title":"Example Paths In This Repo"},"126":{"body":"What is being attested. Every attestation targets a specific subject -- an artifact, agent, workflow, or identity. The subject is identified by type, ID, and cryptographic digests.","breadcrumbs":"What Is an Attestation? » Subject","id":"126","title":"Subject"},"1260":{"body":"Python MCP Integration Node.js MCP Integration A2A Interoperability Python Framework Adapters","breadcrumbs":"MCP Overview » Related Guides","id":"1260","title":"Related Guides"},"1261":{"body":"Use A2A when your agent needs to be discoverable and verifiable by another service, team, or organization. This is the cross-boundary story; MCP is the inside-the-app story.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1261","title":"A2A Interoperability"},"1262":{"body":"Agent Cards with JACS provenance metadata Signed artifacts such as a2a-task or a2a-message Trust policy for deciding whether another agent is acceptable Chain of custody via parent signatures","breadcrumbs":"A2A Interoperability » What JACS Adds To A2A","id":"1262","title":"What JACS Adds To A2A"},"1263":{"body":"","breadcrumbs":"A2A Interoperability » The Core Flow","id":"1263","title":"The Core Flow"},"1264":{"body":"Python: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\ncard = client.export_agent_card(url=\"http://localhost:8080\") Node.js: import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const card = client.exportAgentCard();","breadcrumbs":"A2A Interoperability » 1. Export An Agent Card","id":"1264","title":"1. Export An Agent Card"},"1265":{"body":"Python has the strongest first-class server helpers today. Quick demo server: from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", url=\"http://localhost:8080\",\n).serve(port=8080) Production FastAPI mounting: from jacs.a2a_server import create_a2a_app, jacs_a2a_routes app = create_a2a_app(client, title=\"My A2A Agent\")\n# or:\n# app.include_router(jacs_a2a_routes(client)) Node.js has two discovery helpers: client.getA2A().listen(port) for a minimal demo server jacsA2AMiddleware(client, options) for mounting discovery routes in an existing Express app import express from 'express';\nimport { jacsA2AMiddleware } from '@hai.ai/jacs/a2a-server'; const app = express();\napp.use(jacsA2AMiddleware(client, { url: 'http://localhost:3000' }));\napp.listen(3000);","breadcrumbs":"A2A Interoperability » 2. Serve Discovery Documents","id":"1265","title":"2. Serve Discovery Documents"},"1266":{"body":"Python: signed = client.sign_artifact({\"taskId\": \"t-1\", \"operation\": \"classify\"}, \"task\")\nresult = client.get_a2a().verify_wrapped_artifact(signed)\nassert result[\"valid\"] Node.js: const signed = await client.signArtifact( { taskId: 't-1', operation: 'classify' }, 'task',\n); const result = await client.verifyArtifact(signed);\nconsole.log(result.valid);","breadcrumbs":"A2A Interoperability » 3. Sign And Verify Artifacts","id":"1266","title":"3. Sign And Verify Artifacts"},"1267":{"body":"Trust policy answers a different question from cryptographic verification. Trust policy : should this remote agent be admitted? Artifact verification : is this specific signed payload valid? The current policy meanings are: Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store That means verified is about JACS provenance on the Agent Card , not about a promise that every foreign key has already been resolved.","breadcrumbs":"A2A Interoperability » Trust Policies","id":"1267","title":"Trust Policies"},"1268":{"body":"a2a = client.get_a2a()\nassessment = a2a.assess_remote_agent(remote_card_json, policy=\"strict\") if assessment[\"allowed\"]: result = a2a.verify_wrapped_artifact(artifact, assess_trust=True)","breadcrumbs":"A2A Interoperability » Python","id":"1268","title":"Python"},"1269":{"body":"const a2a = client.getA2A();\nconst assessment = a2a.assessRemoteAgent(remoteCardJson); if (assessment.allowed) { const result = await a2a.verifyWrappedArtifact(signedArtifact);\n}","breadcrumbs":"A2A Interoperability » Node.js","id":"1269","title":"Node.js"},"127":{"body":"What you assert about the subject. Claims are structured statements with a name, value, optional confidence score (0.0-1.0), and assurance level (self-asserted, verified, or independently-attested).","breadcrumbs":"What Is an Attestation? » Claims","id":"127","title":"Claims"},"1270":{"body":"Use the trust store when you want explicit admission: Export the agent document with share_agent() / shareAgent() Exchange the public key with share_public_key() / getPublicKey() Add the remote agent with trust_agent_with_key() / trustAgentWithKey() This is the cleanest path into strict policy.","breadcrumbs":"A2A Interoperability » Bootstrap Patterns","id":"1270","title":"Bootstrap Patterns"},"1271":{"body":"Python : jacs.a2a_server is the clearest full discovery story. Node.js : jacsA2AMiddleware() serves five .well-known routes from Express, but the generated jwks.json and jacs-pubkey.json payloads are still placeholder metadata. listen() is intentionally smaller and only suitable for demos.","breadcrumbs":"A2A Interoperability » Current Runtime Differences","id":"1271","title":"Current Runtime Differences"},"1272":{"body":"jacs-mcp/README.md jacspy/tests/test_a2a_server.py jacsnpm/src/a2a-server.js jacsnpm/examples/a2a-agent-example.js jacs/tests/a2a_cross_language_tests.rs","breadcrumbs":"A2A Interoperability » Example Paths In This Repo","id":"1272","title":"Example Paths In This Repo"},"1273":{"body":"Three focused mini-guides to get your JACS agent working with A2A. Guide What You'll Do Time 1. Serve Publish your Agent Card so other agents can find you 2 min 2. Discover & Trust Find remote agents and assess their trustworthiness 2 min 3. Exchange Sign and verify A2A artifacts with chain of custody 3 min Single-page version: See the A2A Quick Start at the repo root for a 10-line journey.","breadcrumbs":"A2A Quickstart » A2A Quickstart","id":"1273","title":"A2A Quickstart"},"1274":{"body":"Already using the A2A protocol? Here's what JACS adds -- and what stays the same.","breadcrumbs":"A2A Quickstart » JACS for A2A Developers","id":"1274","title":"JACS for A2A Developers"},"1275":{"body":"Agent Cards follow the v0.4.0 shape. Your existing Agent Card fields (name, description, skills, url) are preserved. Discovery uses /.well-known/agent-card.json. No new endpoints are required for basic interop. JSON-RPC transport is untouched. JACS works alongside A2A, not instead of it.","breadcrumbs":"A2A Quickstart » What Stays the Same","id":"1275","title":"What Stays the Same"},"1276":{"body":"A2A Alone With JACS Agent Card has no signature Agent Card is JWS-signed + JWKS published Artifacts are unsigned payloads Artifacts carry jacsSignature with signer ID, algorithm, and timestamp Trust is transport-level (TLS) Trust is data-level -- signatures persist offline No chain of custody parent_signatures link artifacts into a verifiable chain No standard trust policy open / verified / strict policies built in","breadcrumbs":"A2A Quickstart » What JACS Adds","id":"1276","title":"What JACS Adds"},"1277":{"body":"If you already serve an Agent Card, adding JACS provenance takes two steps: Step 1: Add the JACS extension to your Agent Card's capabilities: { \"capabilities\": { \"extensions\": [{ \"uri\": \"urn:jacs:provenance-v1\", \"description\": \"JACS cryptographic document signing\", \"required\": false }] }\n} Step 2: Sign artifacts before sending them: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\n# Wrap your existing artifact payload\nsigned = client.sign_artifact(your_existing_artifact, \"task\")\n# Send `signed` instead of the raw artifact Receiving agents that don't understand JACS will ignore the extra fields. Receiving agents that do understand JACS can verify the signature and assess trust.","breadcrumbs":"A2A Quickstart » Minimal Integration (Add JACS to Existing A2A Code)","id":"1277","title":"Minimal Integration (Add JACS to Existing A2A Code)"},"1278":{"body":"JACS generates two key pairs per agent: Post-quantum (ML-DSA-87) for JACS document signatures -- future-proof Traditional (RSA/ECDSA) for JWS Agent Card signatures -- A2A ecosystem compatibility This means your agent is compatible with both the current A2A ecosystem and quantum-resistant verification.","breadcrumbs":"A2A Quickstart » Dual Key Architecture","id":"1278","title":"Dual Key Architecture"},"1279":{"body":"Q: pip install jacs[a2a-server] fails. A: The a2a-server extra requires Python 3.10+ and adds FastAPI + uvicorn. If you only need signing (not serving), use pip install jacs with no extras. Q: discover_and_assess returns jacs_registered: false. A: The remote agent's Agent Card does not include the urn:jacs:provenance-v1 extension. This is normal for non-JACS A2A agents. With the open trust policy, they are still allowed; with verified, they are rejected. Q: Verification returns valid: true but trust.allowed: false. A: The signature is cryptographically correct, but the trust policy rejected the signer. With strict policy, the signer must be in your local trust store. Add them with a2a.trust_a2a_agent(card_json). Q: sign_artifact raises \"no agent loaded\". A: Call JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") or JacsClient(config_path=...) before signing. The client must have a loaded agent with keys. Q: Agent Card export returns empty skills. A: Skills are derived from jacsServices in the agent definition. Pass skills=[...] to export_agent_card() to override, or define services when creating the agent. Q: My existing A2A client doesn't understand the JACS fields. A: This is expected. JACS fields (jacsId, jacsSignature, jacsSha256) are additive. Non-JACS clients should ignore unknown fields per JSON convention. If a client rejects them, strip JACS fields before sending by extracting signed[\"payload\"]. Q: How do I verify artifacts from agents I've never seen before? A: Use JACS_KEY_RESOLUTION to configure key lookup. Set JACS_KEY_RESOLUTION=local,hai to check your local cache first, then the HAI key service. For offline-only verification, set JACS_KEY_RESOLUTION=local.","breadcrumbs":"A2A Quickstart » Troubleshooting FAQ","id":"1279","title":"Troubleshooting FAQ"},"128":{"body":"What supports the claims. Evidence references link to external proofs (A2A messages, email headers, JWT tokens, TLS notary sessions) with their own digests and timestamps.","breadcrumbs":"What Is an Attestation? » Evidence","id":"128","title":"Evidence"},"1280":{"body":"A2A Interoperability Reference -- Full API reference, well-known documents, MCP integration Trust Store -- Managing trusted agents Express Middleware -- Add A2A to existing Express apps Framework Adapters -- Auto-sign with LangChain, FastAPI, CrewAI Observability & Monitoring Guide -- Monitor signing and verification events Hero Demo (Python) -- 3-agent trust verification example Hero Demo (Node.js) -- Same demo in TypeScript","breadcrumbs":"A2A Quickstart » Next Steps","id":"1280","title":"Next Steps"},"1281":{"body":"Make your JACS agent discoverable by other A2A agents. Prerequisites: pip install jacs[a2a-server] (Python) or npm install @hai.ai/jacs express (Node.js). Python from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart(url=\"http://localhost:8080\").serve(port=8080) Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Serve Your Agent Card","id":"1281","title":"Serve Your Agent Card"},"1282":{"body":"from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.a2a_server import jacs_a2a_routes app = FastAPI()\nclient = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nrouter = jacs_a2a_routes(client)\napp.include_router(router) Node.js (Express) const express = require('express');\nconst { JacsClient } = require('@hai.ai/jacs/client');\nconst { jacsA2AMiddleware } = require('@hai.ai/jacs/a2a-server'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express();\napp.use(jacsA2AMiddleware(client));\napp.listen(8080); Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Production: Mount into Your Own FastAPI App","id":"1282","title":"Production: Mount into Your Own FastAPI App"},"1283":{"body":"All five .well-known endpoints are served automatically: Endpoint Purpose /.well-known/agent-card.json A2A Agent Card with JWS signature /.well-known/jwks.json JWK set for A2A verifiers /.well-known/jacs-agent.json JACS agent descriptor /.well-known/jacs-pubkey.json JACS public key /.well-known/jacs-extension.json JACS provenance extension descriptor The Agent Card includes the urn:jacs:provenance-v1 extension in capabilities.extensions, signaling to other JACS agents that your agent supports cryptographic provenance.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » What Gets Served","id":"1283","title":"What Gets Served"},"1284":{"body":"Discover & Trust Remote Agents -- Find other agents and assess their trustworthiness Exchange Signed Artifacts -- Sign and verify A2A artifacts A2A Interoperability Reference -- Full API reference","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Next Steps","id":"1284","title":"Next Steps"},"1285":{"body":"Find other A2A agents and decide whether to trust them. Python from jacs.a2a_discovery import discover_and_assess_sync result = discover_and_assess_sync(\"https://agent.example.com\")\nif result[\"allowed\"]: print(f\"Trusted: {result['card']['name']} ({result['trust_level']})\")","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Discover & Trust Remote Agents","id":"1285","title":"Discover & Trust Remote Agents"},"1286":{"body":"For strict policy, agents must be in your local trust store: from jacs.client import JacsClient\nfrom jacs.a2a import JACSA2AIntegration client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\na2a = JACSA2AIntegration(client, trust_policy=\"strict\") # Assess a remote agent's trustworthiness\nassessment = a2a.assess_remote_agent(remote_card_json)\nprint(f\"JACS registered: {assessment['jacs_registered']}\")\nprint(f\"Allowed: {assessment['allowed']}\") # Add to trust store (verifies agent's self-signature first)\na2a.trust_a2a_agent(remote_card_json)","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1286","title":"Add to Your Trust Store"},"1287":{"body":"from jacs.a2a_discovery import discover_agent, discover_and_assess card = await discover_agent(\"https://agent.example.com\")\nresult = await discover_and_assess(\"https://agent.example.com\", policy=\"verified\", client=client) Node.js const { discoverAndAssess } = require('@hai.ai/jacs/a2a-discovery'); const result = await discoverAndAssess('https://agent.example.com');\nif (result.allowed) { console.log(`Trusted: ${result.card.name} (${result.trustLevel})`);\n}","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Async API","id":"1287","title":"Async API"},"1288":{"body":"const { JacsClient } = require('@hai.ai/jacs/client');\nconst { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst a2a = new JACSA2AIntegration(client, 'strict'); // Assess a remote agent\nconst assessment = a2a.assessRemoteAgent(remoteCardJson);\nconsole.log(`JACS registered: ${assessment.jacsRegistered}`);\nconsole.log(`Allowed: ${assessment.allowed}`); // Add to trust store\na2a.trustA2AAgent(remoteAgentId);","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1288","title":"Add to Your Trust Store"},"1289":{"body":"Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Trust Policies","id":"1289","title":"Trust Policies"},"129":{"body":"How the attestation was produced. When one attestation builds on another -- for example, a review attestation that references an earlier scan attestation -- the derivation chain captures the full transformation history.","breadcrumbs":"What Is an Attestation? » Derivation Chain","id":"129","title":"Derivation Chain"},"1290":{"body":"1. Discover -- Fetch /.well-known/agent-card.json from a remote URL\n2. Assess -- Check for JACS extension, verify signatures\n3. Decide -- Trust policy determines if the agent is allowed\n4. Trust -- Optionally add the agent to your local trust store With open policy, all agents pass step 3. With verified, agents must have the JACS extension. With strict, agents must be explicitly added to the trust store in step 4 before they pass.","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » How Trust Flows","id":"1290","title":"How Trust Flows"},"1291":{"body":"Exchange Signed Artifacts -- Sign and verify artifacts with trusted agents Serve Your Agent Card -- Make your agent discoverable Trust Store -- Managing the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Next Steps","id":"1291","title":"Next Steps"},"1292":{"body":"Sign artifacts with cryptographic provenance and verify artifacts from other agents. Python","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Exchange Signed Artifacts","id":"1292","title":"Exchange Signed Artifacts"},"1293":{"body":"from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Sign an artifact\nsigned = client.sign_artifact({\"action\": \"classify\", \"input\": \"data\"}, \"task\") # Verify it (with trust assessment)\na2a = client.get_a2a()\nresult = a2a.verify_wrapped_artifact(signed, assess_trust=True)\nprint(f\"Valid: {result['valid']}, Allowed: {result['trust']['allowed']}\")","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1293","title":"Sign and Verify"},"1294":{"body":"When multiple agents process data in sequence, link artifacts into a verifiable chain: # Agent A signs step 1\nstep1 = client_a.sign_artifact({\"step\": 1, \"data\": \"raw\"}, \"message\") # Agent B signs step 2, referencing step 1 as parent\nstep2 = client_b.sign_artifact( {\"step\": 2, \"data\": \"processed\"}, \"message\", parent_signatures=[step1],\n) # Verify the full chain\nresult = a2a.verify_wrapped_artifact(step2)\nassert result[\"valid\"]\nassert result[\"parent_signatures_valid\"]","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1294","title":"Chain of Custody"},"1295":{"body":"chain = a2a.create_chain_of_custody([step1, step2])\n# chain contains: steps (ordered), signers, timestamps, validity Node.js","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Build an Audit Trail","id":"1295","title":"Build an Audit Trail"},"1296":{"body":"const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); // Sign an artifact\nconst signed = await client.signArtifact({ action: 'classify', input: 'data' }, 'task'); // Verify it\nconst a2a = client.getA2A();\nconst result = a2a.verifyWrappedArtifact(signed);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1296","title":"Sign and Verify"},"1297":{"body":"// Agent A signs step 1\nconst step1 = await clientA.signArtifact({ step: 1, data: 'raw' }, 'message'); // Agent B signs step 2, referencing step 1\nconst step2 = await clientB.signArtifact( { step: 2, data: 'processed' }, 'message', [step1],\n); // Verify the full chain\nconst result = a2a.verifyWrappedArtifact(step2);\nconsole.log(`Chain valid: ${result.valid}`);\nconsole.log(`Parents valid: ${result.parentSignaturesValid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1297","title":"Chain of Custody"},"1298":{"body":"The artifact_type parameter labels the payload for downstream processing: Type Use Case task Task assignments, work requests message Inter-agent messages result Task results, responses You can use any string -- these are conventions, not enforced types.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Artifact Types","id":"1298","title":"Artifact Types"},"1299":{"body":"Every signed artifact includes: Field Description jacsId Unique document ID jacsSignature Signer ID, algorithm, timestamp, and base64 signature jacsSha256 Content hash for integrity verification jacsType The artifact type label jacsParentSignatures Parent artifacts for chain of custody (if any) payload The original artifact data Non-JACS receivers can safely ignore the jacs* fields and extract payload directly.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » What Gets Signed","id":"1299","title":"What Gets Signed"},"13":{"body":"go get github.com/HumanAssisted/JACS/jacsgo Rust, Python, and Node quickstart flows create or load a persistent agent and return agent metadata including config and key paths.","breadcrumbs":"Introduction » Go","id":"13","title":"Go"},"130":{"body":"Layer 2: Adapters (A2A, email, JWT, TLSNotary) |\nLayer 1: Attestation Engine (create, verify, lift, DSSE export) |\nLayer 0: JACS Core (sign, verify, agreements, storage) Attestations build on top of existing JACS signing. Every attestation is also a valid signed JACS document. You can verify an attestation with verify() for signature checks, or use verify_attestation() for the full trust evaluation.","breadcrumbs":"What Is an Attestation? » Architecture Layers","id":"130","title":"Architecture Layers"},"1300":{"body":"Serve Your Agent Card -- Make your agent discoverable Discover & Trust Remote Agents -- Find and assess other agents A2A Interoperability Reference -- Full API reference Hero Demo (Python) -- 3-agent trust verification example","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Next Steps","id":"1300","title":"Next Steps"},"1301":{"body":"This guide helps you choose the right JACS API for your use case.","breadcrumbs":"Sign vs. Attest Decision Guide » Sign vs. Attest: When to Use Which","id":"1301","title":"Sign vs. Attest: When to Use Which"},"1302":{"body":"Start here: What do you need to prove? \"This data hasn't been tampered with\" Use sign_message() / signMessage() This gives you a cryptographic signature and integrity hash. \"This data hasn't been tampered with AND here's why it should be trusted\" Use create_attestation() / createAttestation() This gives you signature + integrity + claims + evidence + derivation chain. \"I have an existing signed document and want to add trust context\" Use lift_to_attestation() / liftToAttestation() This wraps an existing JACS-signed document into a new attestation. \"I need to export a trust proof for external systems\" Use export_attestation_dsse() / exportAttestationDsse() This creates an in-toto DSSE envelope compatible with SLSA and Sigstore. \"I need to send signed data to another agent or service\" Use sign_artifact() / signArtifact() via the A2A integration. This wraps your data in a JACS provenance envelope for cross-boundary exchange. See A2A Interoperability and A2A + Attestation Composition .","breadcrumbs":"Sign vs. Attest Decision Guide » Decision Tree","id":"1302","title":"Decision Tree"},"1303":{"body":"Scenario API Output Log an AI action sign_message() Signed document Record a human review decision create_attestation() Attestation with claims Attach evidence from another system create_attestation() with evidence Attestation with evidence refs Wrap an existing signed doc with trust context lift_to_attestation() New attestation referencing original Export for SLSA/Sigstore export_attestation_dsse() DSSE envelope Verify signature only verify() Valid/invalid + signer Verify signature + claims + evidence verify_attestation(full=True) Full verification result Exchange artifact with another agent sign_artifact() / A2A Signed wrapped artifact","breadcrumbs":"Sign vs. Attest Decision Guide » Quick Reference","id":"1303","title":"Quick Reference"},"1304":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Examples","id":"1304","title":"Examples"},"1305":{"body":"signed = client.sign_message({\"action\": \"approve\"})\nresult = client.verify(signed.raw_json)\n# result[\"valid\"] == True","breadcrumbs":"Sign vs. Attest Decision Guide » Just need integrity? Use signing.","id":"1305","title":"Just need integrity? Use signing."},"1306":{"body":"att = client.create_attestation( subject={\"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n)\nresult = client.verify_attestation(att.raw_json, full=True)\n# result[\"valid\"] == True, result[\"evidence\"] == [...]","breadcrumbs":"Sign vs. Attest Decision Guide » Need trust context? Use attestation.","id":"1306","title":"Need trust context? Use attestation."},"1307":{"body":"signed = client.sign_message({\"content\": \"original\"})\natt = client.lift_to_attestation(signed, [{\"name\": \"approved\", \"value\": True}])\n# att now has attestation metadata referencing the original document","breadcrumbs":"Sign vs. Attest Decision Guide » Already signed? Lift to attestation.","id":"1307","title":"Already signed? Lift to attestation."},"1308":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Common Patterns","id":"1308","title":"Common Patterns"},"1309":{"body":"Use sign_message() for each tool call or action. The signature proves the agent took the action and the data hasn't been modified.","breadcrumbs":"Sign vs. Attest Decision Guide » AI Agent Action Logging","id":"1309","title":"AI Agent Action Logging"},"131":{"body":"from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\") # Sign a document (Layer 0)\nsigned = client.sign_message({\"action\": \"approve\", \"amount\": 100}) # Attest WHY it's trustworthy (Layer 1)\natt = client.create_attestation( subject={\"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n) # Verify the full trust chain\nresult = client.verify_attestation(att.raw_json, full=True)\nprint(f\"Valid: {result['valid']}\")","breadcrumbs":"What Is an Attestation? » Quick Example","id":"131","title":"Quick Example"},"1310":{"body":"Use create_attestation() with claims like reviewed_by: human and confidence: 0.95. This creates an auditable record that a human reviewed and approved the output.","breadcrumbs":"Sign vs. Attest Decision Guide » Human Review Attestation","id":"1310","title":"Human Review Attestation"},"1311":{"body":"Use create_attestation() with a derivation field to capture input/output relationships. Each step attests to its own transformation with references to upstream attestations.","breadcrumbs":"Sign vs. Attest Decision Guide » Multi-step Pipeline","id":"1311","title":"Multi-step Pipeline"},"1312":{"body":"Use export_attestation_dsse() to generate an in-toto DSSE envelope that external systems (SLSA verifiers, Sigstore) can validate independently.","breadcrumbs":"Sign vs. Attest Decision Guide » Cross-system Verification","id":"1312","title":"Cross-system Verification"},"1313":{"body":"This step-by-step tutorial walks you through adding attestation support to an existing JACS workflow. You'll go from basic signing to full attestation creation and verification in under 5 minutes.","breadcrumbs":"Attestation Tutorial » Tutorial: Add Attestations to Your Workflow","id":"1313","title":"Tutorial: Add Attestations to Your Workflow"},"1314":{"body":"JACS installed (Python, Node.js, or CLI) Attestation feature enabled (built with --features attestation)","breadcrumbs":"Attestation Tutorial » Prerequisites","id":"1314","title":"Prerequisites"},"1315":{"body":"Use an ephemeral agent for testing (no files on disk): {{#tabs }} {{#tab name=\"Python\" }} from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\")\nprint(f\"Agent ID: {client.agent_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.ephemeral('ring-Ed25519');\nconsole.log(`Agent ID: ${client.agentId}`); {{#endtab }} {{#tab name=\"CLI\" }} export JACS_PRIVATE_KEY_PASSWORD=\"YourP@ssw0rd\"\njacs quickstart --algorithm ed25519 {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 1: Create an Agent","id":"1315","title":"Step 1: Create an Agent"},"1316":{"body":"Sign some data to establish the base document: {{#tabs }} {{#tab name=\"Python\" }} signed = client.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const signed = await client.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 2: Sign a Document","id":"1316","title":"Step 2: Sign a Document"},"1317":{"body":"Now add trust context -- why this document should be trusted: {{#tabs }} {{#tab name=\"Python\" }} import hashlib\ncontent_hash = hashlib.sha256(signed.raw_json.encode()).hexdigest()\nattestation = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": content_hash}, }, claims=[ { \"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95, \"assuranceLevel\": \"verified\", } ],\n)\nprint(f\"Attestation ID: {attestation.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { createHash } = require('crypto');\nconst contentHash = createHash('sha256').update(signed.raw).digest('hex');\nconst attestation = await client.createAttestation({ subject: { type: 'artifact', id: signed.documentId, digests: { sha256: contentHash }, }, claims: [{ name: 'reviewed_by', value: 'human', confidence: 0.95, assuranceLevel: 'verified', }],\n});\nconsole.log(`Attestation ID: ${attestation.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 3: Create an Attestation","id":"1317","title":"Step 3: Create an Attestation"},"1318":{"body":"","breadcrumbs":"Attestation Tutorial » Step 4: Verify the Attestation","id":"1318","title":"Step 4: Verify the Attestation"},"1319":{"body":"{{#tabs }} {{#tab name=\"Python\" }} result = client.verify_attestation(attestation.raw_json)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Signature OK: {result['crypto']['signature_valid']}\")\nprint(f\"Hash OK: {result['crypto']['hash_valid']}\") {{#endtab }} {{#tab name=\"Node.js\" }} const result = await client.verifyAttestation(attestation.raw);\nconsole.log(`Valid: ${result.valid}`);\nconsole.log(`Signature OK: ${result.crypto.signature_valid}`);\nconsole.log(`Hash OK: ${result.crypto.hash_valid}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Local Verification (fast -- signature + hash only)","id":"1319","title":"Local Verification (fast -- signature + hash only)"},"132":{"body":"Attestation (Layer C) provides trust context: claims, evidence, and derivation chains. It answers \"why should this data be trusted?\" A2A trust policy (Layer B) handles agent admission: \"is this agent allowed to communicate?\" For transport trust decisions, see A2A Interoperability . For how attestation and A2A compose, see A2A + Attestation Composition . For the full three-layer model, see Trust Layers .","breadcrumbs":"What Is an Attestation? » Attestation vs. A2A Trust Policy","id":"132","title":"Attestation vs. A2A Trust Policy"},"1320":{"body":"{{#tabs }} {{#tab name=\"Python\" }} full = client.verify_attestation(attestation.raw_json, full=True)\nprint(f\"Valid: {full['valid']}\")\nprint(f\"Evidence: {full.get('evidence', [])}\")\nprint(f\"Chain: {full.get('chain')}\") {{#endtab }} {{#tab name=\"Node.js\" }} const full = await client.verifyAttestation(attestation.raw, { full: true });\nconsole.log(`Valid: ${full.valid}`);\nconsole.log(`Evidence: ${JSON.stringify(full.evidence)}`);\nconsole.log(`Chain: ${JSON.stringify(full.chain)}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Full Verification (thorough -- includes evidence + derivation chain)","id":"1320","title":"Full Verification (thorough -- includes evidence + derivation chain)"},"1321":{"body":"Evidence references link to external proofs that support your claims: {{#tabs }} {{#tab name=\"Python\" }} attestation_with_evidence = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"abc123...\"}, }, claims=[{\"name\": \"scanned\", \"value\": True, \"confidence\": 1.0}], evidence=[ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, } ],\n) {{#endtab }} {{#tab name=\"Node.js\" }} const attWithEvidence = await client.createAttestation({ subject: { type: 'artifact', id: 'doc-001', digests: { sha256: 'abc123...' }, }, claims: [{ name: 'scanned', value: true, confidence: 1.0 }], evidence: [{ kind: 'custom', digests: { sha256: 'evidence-hash...' }, uri: 'https://scanner.example.com/results/123', collectedAt: '2026-03-04T00:00:00Z', verifier: { name: 'security-scanner', version: '2.0' }, }],\n}); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 5: Add Evidence (Optional)","id":"1321","title":"Step 5: Add Evidence (Optional)"},"1322":{"body":"Export your attestation as a DSSE (Dead Simple Signing Envelope) for compatibility with in-toto, SLSA, and Sigstore: {{#tabs }} {{#tab name=\"Python\" }} envelope = client.export_attestation_dsse(attestation.raw_json)\nprint(f\"Payload type: {envelope['payloadType']}\")\nprint(f\"Signatures: {len(envelope['signatures'])}\") {{#endtab }} {{#tab name=\"Node.js\" }} const envelope = await client.exportAttestationDsse(attestation.raw);\nconsole.log(`Payload type: ${envelope.payloadType}`);\nconsole.log(`Signatures: ${envelope.signatures.length}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 6: Export as DSSE (Optional)","id":"1322","title":"Step 6: Export as DSSE (Optional)"},"1323":{"body":"Sign vs. Attest decision guide -- when to use which API Attestation error catalog -- understand verification results What is an attestation? -- concept deep dive","breadcrumbs":"Attestation Tutorial » What's Next?","id":"1323","title":"What's Next?"},"1324":{"body":"Evidence adapters normalize external proof sources into JACS attestation claims and evidence references. JACS ships with A2A and Email adapters; you can add your own for JWT tokens, TLSNotary proofs, or any custom evidence source.","breadcrumbs":"Writing a Custom Evidence Adapter » Writing a Custom Evidence Adapter","id":"1324","title":"Writing a Custom Evidence Adapter"},"1325":{"body":"An EvidenceAdapter is a Rust trait with three methods: pub trait EvidenceAdapter: Send + Sync + std::fmt::Debug { /// Returns the kind string (e.g., \"jwt\", \"tlsnotary\", \"custom\"). fn kind(&self) -> &str; /// Normalize raw evidence bytes + metadata into claims + evidence reference. fn normalize( &self, raw: &[u8], metadata: &serde_json::Value, ) -> Result<(Vec, EvidenceRef), Box>; /// Verify a previously created evidence reference. fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result>;\n} The adapter lifecycle: At attestation creation time: normalize() is called with raw evidence bytes and optional metadata. It returns structured claims and an EvidenceRef that will be embedded in the attestation document. At verification time (full tier): verify_evidence() is called with the stored EvidenceRef to re-validate the evidence.","breadcrumbs":"Writing a Custom Evidence Adapter » What Is an EvidenceAdapter?","id":"1325","title":"What Is an EvidenceAdapter?"},"1326":{"body":"normalize() must: Compute content-addressable digests of the raw evidence using compute_digest_set_bytes() Decide whether to embed the evidence (recommended for data under 64KB) Extract meaningful claims from the evidence Set appropriate confidence and assuranceLevel values Include a collectedAt timestamp Return a VerifierInfo identifying your adapter and version normalize() must NOT: Make network calls (normalization should be deterministic and fast) Modify the raw evidence Set confidence to 1.0 unless the evidence is self-verifying (e.g., a valid cryptographic proof)","breadcrumbs":"Writing a Custom Evidence Adapter » The normalize() Contract","id":"1326","title":"The normalize() Contract"},"1327":{"body":"verify_evidence() must: Verify the digest integrity (re-hash and compare) Check freshness (is the collectedAt timestamp within acceptable bounds?) Return a detailed EvidenceVerificationResult with digest_valid, freshness_valid, and human-readable detail verify_evidence() may: Make network calls (for remote evidence resolution) Access the file system (for local evidence files) Return partial results (e.g., digest valid but freshness expired)","breadcrumbs":"Writing a Custom Evidence Adapter » The verify_evidence() Contract","id":"1327","title":"The verify_evidence() Contract"},"1328":{"body":"Here is a complete example of a JWT evidence adapter: use crate::attestation::adapters::EvidenceAdapter;\nuse crate::attestation::digest::compute_digest_set_bytes;\nuse crate::attestation::types::*;\nuse serde_json::Value;\nuse std::error::Error; #[derive(Debug)]\npub struct JwtAdapter; impl EvidenceAdapter for JwtAdapter { fn kind(&self) -> &str { \"jwt\" } fn normalize( &self, raw: &[u8], metadata: &Value, ) -> Result<(Vec, EvidenceRef), Box> { // 1. Parse the JWT (header.payload.signature) let jwt_str = std::str::from_utf8(raw)?; let parts: Vec<&str> = jwt_str.split('.').collect(); if parts.len() != 3 { return Err(\"Invalid JWT: expected 3 dot-separated parts\".into()); } // 2. Decode the payload (base64url) let payload_bytes = base64::Engine::decode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, parts[1], )?; let payload: Value = serde_json::from_slice(&payload_bytes)?; // 3. Compute content-addressable digests let digests = compute_digest_set_bytes(raw); // 4. Extract claims (only non-PII fields per TRD Decision 14) let mut claims = vec![]; if let Some(iss) = payload.get(\"iss\") { claims.push(Claim { name: \"jwt-issuer\".into(), value: iss.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: iss.as_str().map(String::from), issued_at: Some(crate::time_utils::now_rfc3339()), }); } if let Some(sub) = payload.get(\"sub\") { claims.push(Claim { name: \"jwt-subject\".into(), value: sub.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: None, issued_at: None, }); } // 5. Build the evidence reference let evidence = EvidenceRef { kind: EvidenceKind::Jwt, digests, uri: metadata.get(\"uri\").and_then(|v| v.as_str()).map(String::from), embedded: raw.len() < 65536, embedded_data: if raw.len() < 65536 { Some(Value::String(jwt_str.to_string())) } else { None }, collected_at: crate::time_utils::now_rfc3339(), resolved_at: None, sensitivity: EvidenceSensitivity::Restricted, // JWTs may contain PII verifier: VerifierInfo { name: \"jacs-jwt-adapter\".into(), version: env!(\"CARGO_PKG_VERSION\").into(), }, }; Ok((claims, evidence)) } fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result> { // Re-verify the digest let digest_valid = if let Some(ref data) = evidence.embedded_data { let raw = data.as_str().unwrap_or(\"\").as_bytes(); let recomputed = compute_digest_set_bytes(raw); recomputed.sha256 == evidence.digests.sha256 } else { // Cannot verify without embedded data or fetchable URI false }; // Check freshness (example: 5 minute max age) let freshness_valid = true; // Implement actual time check Ok(EvidenceVerificationResult { kind: \"jwt\".into(), digest_valid, freshness_valid, detail: if digest_valid { \"JWT digest verified\".into() } else { \"JWT digest mismatch or data unavailable\".into() }, }) }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Step-by-Step: Building a JWT Adapter","id":"1328","title":"Step-by-Step: Building a JWT Adapter"},"1329":{"body":"Write tests that cover: Normal case: Valid evidence normalizes to expected claims Invalid input: Malformed evidence returns a clear error Digest verification: Round-trip through normalize + verify_evidence Empty evidence: Edge case handling #[cfg(test)]\nmod tests { use super::*; use serde_json::json; #[test] fn jwt_normalize_extracts_issuer() { let adapter = JwtAdapter; // Build a minimal JWT (header.payload.signature) let header = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"alg\\\":\\\"RS256\\\"}\", ); let payload = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"iss\\\":\\\"auth.example.com\\\",\\\"sub\\\":\\\"user-123\\\"}\", ); let jwt = format!(\"{}.{}.fake-sig\", header, payload); let (claims, evidence) = adapter .normalize(jwt.as_bytes(), &json!({})) .expect(\"normalize should succeed\"); assert!(claims.iter().any(|c| c.name == \"jwt-issuer\")); assert_eq!(evidence.kind, EvidenceKind::Jwt); }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Testing Your Adapter","id":"1329","title":"Testing Your Adapter"},"133":{"body":"Use attestations when you need to answer questions like: Why should I trust this data? (claims + evidence) Who reviewed it and when? (issuer, timestamps, assurance level) How was it produced? (derivation chain) Can I independently verify the trust chain? (DSSE export, evidence verification) If you only need to prove who signed something and that it hasn't been tampered with, sign_message() is sufficient. See Sign vs. Attest for a detailed decision guide.","breadcrumbs":"What Is an Attestation? » When to Use Attestations","id":"133","title":"When to Use Attestations"},"1330":{"body":"Adapters are registered on the Agent struct via the evidence adapter list. To add your adapter to the default set, modify adapters/mod.rs: pub fn default_adapters() -> Vec> { vec![ Box::new(a2a::A2aAdapter), Box::new(email::EmailAdapter), Box::new(jwt::JwtAdapter), // Add your adapter here ]\n} For runtime registration (without modifying JACS source), use the agent's adapter API (when available in a future release).","breadcrumbs":"Writing a Custom Evidence Adapter » Registering Your Adapter with the Agent","id":"1330","title":"Registering Your Adapter with the Agent"},"1331":{"body":"The EvidenceSensitivity enum controls how evidence is handled: Public: Evidence can be freely shared and embedded Restricted: Evidence should be handled with care; consider redacting PII Confidential: Evidence should not be embedded; use content-addressable URI references only For JWTs and other credential-based evidence, default to Restricted and only include non-PII fields (iss, sub, aud, iat, exp) in claims.","breadcrumbs":"Writing a Custom Evidence Adapter » Privacy Considerations","id":"1331","title":"Privacy Considerations"},"1332":{"body":"JACS provides Python framework adapters for LangChain, FastAPI, CrewAI, and Anthropic. Each adapter can be configured to produce attestations (not just signatures) for tool calls, API requests, and agent actions.","breadcrumbs":"Framework Adapter Attestation Guide » Framework Adapter Attestation Guide","id":"1332","title":"Framework Adapter Attestation Guide"},"1333":{"body":"All framework adapters share these attestation patterns:","breadcrumbs":"Framework Adapter Attestation Guide » Common Patterns","id":"1333","title":"Common Patterns"},"1334":{"body":"When attest=True is enabled on any adapter, it automatically includes these default claims: [ {\"name\": \"framework\", \"value\": \"langchain\", \"confidence\": 1.0}, {\"name\": \"tool_name\", \"value\": \"my_tool\", \"confidence\": 1.0}, {\"name\": \"timestamp\", \"value\": \"2026-03-04T...\", \"confidence\": 1.0},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Default Claims","id":"1334","title":"Default Claims"},"1335":{"body":"Add your own claims to any adapter call: extra_claims = [ {\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}, {\"name\": \"approved\", \"value\": True, \"assuranceLevel\": \"verified\"},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Custom Claims","id":"1335","title":"Custom Claims"},"1336":{"body":"Attach evidence references from external systems: evidence = [ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"abc123...\"}, \"uri\": \"https://scanner.example.com/report/456\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, }\n]","breadcrumbs":"Framework Adapter Attestation Guide » Evidence Attachment","id":"1336","title":"Evidence Attachment"},"1337":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » LangChain","id":"1337","title":"LangChain"},"1338":{"body":"Use jacs_wrap_tool_call with attest=True: from jacs.adapters.langchain import jacs_wrap_tool_call\nfrom jacs.client import JacsClient client = JacsClient.quickstart() # Wrap a tool call with attestation\n@jacs_wrap_tool_call(client, attest=True)\ndef my_tool(query: str) -> str: return f\"Result for: {query}\" # The tool call now produces a signed attestation\nresult = my_tool(\"test query\")\n# result.attestation contains the signed attestation document","breadcrumbs":"Framework Adapter Attestation Guide » Enabling Attestation on Tool Calls","id":"1338","title":"Enabling Attestation on Tool Calls"},"1339":{"body":"from jacs.adapters.langchain import signed_tool @signed_tool(client, attest=True, claims=[ {\"name\": \"data_source\", \"value\": \"internal_db\", \"confidence\": 1.0}\n])\ndef lookup_customer(customer_id: str) -> dict: return {\"name\": \"Alice\", \"status\": \"active\"}","breadcrumbs":"Framework Adapter Attestation Guide » Using the signed_tool Decorator","id":"1339","title":"Using the signed_tool Decorator"},"134":{"body":"JACS organizes trust into three distinct layers. Each layer has a clear scope and its own vocabulary. Understanding which layer you need prevents confusion between identity, transport policy, and evidentiary trust.","breadcrumbs":"Trust Layers » JACS Trust Layers","id":"134","title":"JACS Trust Layers"},"1340":{"body":"from jacs.adapters.langchain import with_jacs_signing # Wrap an entire chain with attestation\nsigned_chain = with_jacs_signing( chain=my_chain, client=client, attest=True,\n)","breadcrumbs":"Framework Adapter Attestation Guide » With LangChain Chains","id":"1340","title":"With LangChain Chains"},"1341":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » FastAPI","id":"1341","title":"FastAPI"},"1342":{"body":"The JacsMiddleware can be configured to produce attestations for all responses: from fastapi import FastAPI\nfrom jacs.adapters.fastapi import JacsMiddleware\nfrom jacs.client import JacsClient app = FastAPI()\nclient = JacsClient.quickstart() app.add_middleware( JacsMiddleware, client=client, attest=True, # Produce attestations, not just signatures default_claims=[ {\"name\": \"service\", \"value\": \"my-api\", \"confidence\": 1.0}, ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Middleware","id":"1342","title":"Attestation Middleware"},"1343":{"body":"Use jacs_route for route-level attestation control: from jacs.adapters.fastapi import jacs_route @app.post(\"/approve\")\n@jacs_route(client, attest=True, claims=[ {\"name\": \"action\", \"value\": \"approve\", \"confidence\": 1.0}, {\"name\": \"requires_review\", \"value\": True},\n])\nasync def approve_request(request_id: str): return {\"approved\": True, \"request_id\": request_id} The response headers will include X-JACS-Attestation-Id with the attestation document ID.","breadcrumbs":"Framework Adapter Attestation Guide » Per-Route Attestation","id":"1343","title":"Per-Route Attestation"},"1344":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » CrewAI","id":"1344","title":"CrewAI"},"1345":{"body":"Use jacs_guardrail with attestation mode to create trust-verified task execution: from jacs.adapters.crewai import jacs_guardrail, JacsSignedTool\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @jacs_guardrail(client, attest=True)\ndef verified_analysis(task_result): \"\"\"Guardrail that attests to analysis quality.\"\"\" return task_result","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Guardrails","id":"1345","title":"Attestation Guardrails"},"1346":{"body":"from jacs.adapters.crewai import signed_task @signed_task(client, attest=True, claims=[ {\"name\": \"analysis_type\", \"value\": \"financial\", \"confidence\": 0.9},\n])\ndef analyze_portfolio(data): return {\"risk_score\": 0.3, \"recommendation\": \"hold\"}","breadcrumbs":"Framework Adapter Attestation Guide » Signed Tasks","id":"1346","title":"Signed Tasks"},"1347":{"body":"class MyTool(JacsSignedTool): \"\"\"A CrewAI tool with built-in attestation.\"\"\" name = \"market_data\" description = \"Fetch market data\" attest = True default_claims = [ {\"name\": \"data_source\", \"value\": \"bloomberg\"}, ] def _run(self, ticker: str) -> dict: return {\"ticker\": ticker, \"price\": 150.0}","breadcrumbs":"Framework Adapter Attestation Guide » JacsSignedTool","id":"1347","title":"JacsSignedTool"},"1348":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » Anthropic","id":"1348","title":"Anthropic"},"1349":{"body":"The Anthropic adapter hooks into Claude tool calls to produce attestations: from jacs.adapters.anthropic import signed_tool, JacsToolHook\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @signed_tool(client, attest=True)\ndef search_database(query: str) -> str: return \"Found 3 results\" # Or use the hook class for more control\nhook = JacsToolHook( client=client, attest=True, default_claims=[ {\"name\": \"model\", \"value\": \"claude-4.6\"}, {\"name\": \"tool_use_id\", \"value\": \"auto\"}, # Auto-filled from tool call ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Tool Hook Attestation","id":"1349","title":"Tool Hook Attestation"},"135":{"body":"","breadcrumbs":"Trust Layers » The Three Layers","id":"135","title":"The Three Layers"},"1350":{"body":"import anthropic\nfrom jacs.adapters.anthropic import JacsToolHook client = anthropic.Anthropic()\njacs_client = JacsClient.quickstart()\nhook = JacsToolHook(jacs_client, attest=True) # Register tools with JACS attestation\ntools = hook.wrap_tools([ { \"name\": \"get_weather\", \"description\": \"Get weather for a location\", \"input_schema\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\"}}}, }\n])","breadcrumbs":"Framework Adapter Attestation Guide » With the Anthropic SDK","id":"1350","title":"With the Anthropic SDK"},"1351":{"body":"All framework attestations use the same JACS verification API: # Verify any attestation (from any framework adapter)\nresult = client.verify_attestation(attestation_json, full=True)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Framework: {result['claims'][0]['value']}\")\nprint(f\"Evidence: {result.get('evidence', [])}\")","breadcrumbs":"Framework Adapter Attestation Guide » Verifying Framework Attestations","id":"1351","title":"Verifying Framework Attestations"},"1352":{"body":"All adapters respect the strict flag on JacsClient: Permissive (default): Signing/attestation failures log warnings but do not block the operation Strict: Signing/attestation failures raise exceptions and block the operation # Strict mode: attestation failure = operation failure\nclient = JacsClient.quickstart(strict=True) # Permissive mode: attestation failure = warning + continue\nclient = JacsClient.quickstart(strict=False)","breadcrumbs":"Framework Adapter Attestation Guide » Strict vs. Permissive Mode","id":"1352","title":"Strict vs. Permissive Mode"},"1353":{"body":"A2A provenance and attestation serve different purposes. This guide explains when and how to combine them.","breadcrumbs":"A2A + Attestation Composition » A2A + Attestation: Using Both Together","id":"1353","title":"A2A + Attestation: Using Both Together"},"1354":{"body":"Use A2A alone when you need to prove who sent what across agent boundaries. Use attestation alone when you need to record why data should be trusted within a single agent's workflow. Use both when: You send data to another agent AND need to explain why it's trustworthy You receive data from another agent AND want to attest that you reviewed it You're building a multi-agent pipeline where each step adds trust evidence","breadcrumbs":"A2A + Attestation Composition » When You Need Both","id":"1354","title":"When You Need Both"},"1355":{"body":"A2A chain-of-custody provides movement lineage. Attestation derivation provides claim lineage. A2A tracks where an artifact has been (Agent A → Agent B → Agent C). Attestation tracks what trust claims have been made about it (scanned → reviewed → approved). They compose naturally: an agent receives a signed artifact via A2A, then creates an attestation recording its analysis of that artifact.","breadcrumbs":"A2A + Attestation Composition » The Composition Rule","id":"1355","title":"The Composition Rule"},"1356":{"body":"Agent A: Signs artifact with A2A provenance ↓ (cross-boundary exchange)\nAgent B: Verifies A2A signature, attests review with evidence ↓ (cross-boundary exchange)\nAgent C: Verifies both the A2A chain and the attestation","breadcrumbs":"A2A + Attestation Composition » Example Workflow","id":"1356","title":"Example Workflow"},"1357":{"body":"from jacs.client import JacsClient # --- Agent A: Sign and send ---\nagent_a = JacsClient.quickstart(name=\"scanner\", domain=\"scanner.example.com\")\na2a_a = agent_a.get_a2a()\nsigned = a2a_a.sign_artifact( {\"scan_result\": \"clean\", \"target\": \"file.bin\"}, \"message\",\n) # --- Agent B: Receive, verify, attest ---\nagent_b = JacsClient.quickstart(name=\"reviewer\", domain=\"reviewer.example.com\")\na2a_b = agent_b.get_a2a() # Verify the A2A artifact from Agent A\nverify_result = a2a_b.verify_wrapped_artifact(signed)\nassert verify_result[\"valid\"] # Now attest WHY the review is trustworthy\nimport hashlib, json\ncontent_hash = hashlib.sha256(json.dumps(signed, sort_keys=True).encode()).hexdigest()\nattestation = agent_b.create_attestation( subject={\"type\": \"artifact\", \"id\": signed[\"jacsId\"], \"digests\": {\"sha256\": content_hash}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.9}],\n) # Send the attestation onward via A2A\nattested_artifact = a2a_b.sign_artifact( {\"attestation_id\": attestation.document_id, \"original_artifact\": signed[\"jacsId\"]}, \"message\", parent_signatures=[signed],\n)","breadcrumbs":"A2A + Attestation Composition » Python","id":"1357","title":"Python"},"1358":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; // --- Agent A: Sign and send ---\nconst agentA = await JacsClient.quickstart({ name: 'scanner', domain: 'scanner.example.com' });\nconst a2aA = agentA.getA2A();\nconst signed = await a2aA.signArtifact( { scanResult: 'clean', target: 'file.bin' }, 'message',\n); // --- Agent B: Receive, verify, attest ---\nconst agentB = await JacsClient.quickstart({ name: 'reviewer', domain: 'reviewer.example.com' });\nconst a2aB = agentB.getA2A(); const verifyResult = await a2aB.verifyWrappedArtifact(signed);\nconsole.assert(verifyResult.valid); // Attest the review\nconst attestation = agentB.createAttestation({ subject: { type: 'artifact', id: signed.jacsId, digests: { sha256: '...' } }, claims: [{ name: 'reviewed', value: true, confidence: 0.9 }],\n});","breadcrumbs":"A2A + Attestation Composition » Node.js","id":"1358","title":"Node.js"},"1359":{"body":"Don't use A2A trust policy to validate attestation evidence. A2A policy (open/verified/strict) controls agent admission, not evidence quality. An allowed agent can still produce bad evidence. Don't use attestation to determine transport trust. Attestation claims don't tell you whether an agent should be allowed to communicate. Use assess_remote_agent() for that. Don't conflate chain-of-custody with derivation chain. A2A parent signatures track artifact movement. Attestation derivation tracks how one claim was produced from another. They are complementary, not interchangeable.","breadcrumbs":"A2A + Attestation Composition » What NOT to Do","id":"1359","title":"What NOT to Do"},"136":{"body":"Scope: Who signed what, and has it been tampered with? APIs: sign_message(), verify(), verify_standalone() This is the foundation. Every JACS document carries a cryptographic signature that proves which agent created it and that the content hasn't changed. Layer A answers: \"Is this signature valid?\" Crypto status values: Verified · SelfSigned · Unverified · Invalid Verified : Signature is valid and signer's key was resolved from a trusted source. SelfSigned : Signature is valid but signer is the same as verifier (no third-party trust). Unverified : Signature could not be checked because the signer's key was not available. Invalid : Signature check failed — the content was tampered with or the wrong key was used.","breadcrumbs":"Trust Layers » Layer A: Identity + Integrity (JACS Core)","id":"136","title":"Layer A: Identity + Integrity (JACS Core)"},"1360":{"body":"Trust Layers — the three-layer model and terminology A2A Interoperability — full A2A reference Attestation Tutorial — creating and verifying attestations Sign vs. Attest — choosing the right API","breadcrumbs":"A2A + Attestation Composition » Further Reading","id":"1360","title":"Further Reading"},"1361":{"body":"JACS emits structured events at every signing, verification, and agreement lifecycle step. This guide shows you how to capture those events and route them to your monitoring stack. For Rust-specific API details (ObservabilityConfig, LogDestination, MetricsConfig, etc.), see the Observability (Rust API) .","breadcrumbs":"Observability & Monitoring Guide » Observability & Monitoring Guide","id":"1361","title":"Observability & Monitoring Guide"},"1362":{"body":"Every event includes an event field for filtering. The table below is derived directly from the source code.","breadcrumbs":"Observability & Monitoring Guide » Structured Event Reference","id":"1362","title":"Structured Event Reference"},"1363":{"body":"Event Level Fields Source document_signed info algorithm, duration_ms crypt/mod.rs batch_signed info algorithm, batch_size, duration_ms crypt/mod.rs signing_procedure_complete info agent_id, algorithm, timestamp, placement_key agent/mod.rs","breadcrumbs":"Observability & Monitoring Guide » Signing Events","id":"1363","title":"Signing Events"},"1364":{"body":"Event Level Fields Source signature_verified info algorithm, valid, duration_ms crypt/mod.rs verification_complete info / error document_id, signer_id, algorithm, timestamp, valid, duration_ms agent/mod.rs verification_complete emits at info when valid=true and at error when valid=false.","breadcrumbs":"Observability & Monitoring Guide » Verification Events","id":"1364","title":"Verification Events"},"1365":{"body":"Event Level Fields Source agreement_created info document_id, agent_count, quorum, has_timeout agent/agreement.rs signature_added info document_id, signer_id, current, total, required agent/agreement.rs quorum_reached info document_id, signatures, required, total agent/agreement.rs agreement_expired warn document_id, deadline agent/agreement.rs","breadcrumbs":"Observability & Monitoring Guide » Agreement Events","id":"1365","title":"Agreement Events"},"1366":{"body":"JACS ships with three optional feature flags for OpenTelemetry backends. By default, only stderr and file logging are available. # Enable all three OTEL pipelines\ncargo build --features otlp-logs,otlp-metrics,otlp-tracing # Or enable just tracing\ncargo build --features otlp-tracing Feature What it adds otlp-logs OTLP log export (opentelemetry, opentelemetry-otlp, opentelemetry-appender-tracing, tokio) otlp-metrics OTLP metrics export (opentelemetry, opentelemetry-otlp, opentelemetry_sdk, tokio) otlp-tracing Distributed tracing (opentelemetry, opentelemetry-otlp, tracing-opentelemetry, tokio) Convenience helpers for automatic counter/gauge recording for sign and verify operations are always available without any feature flag.","breadcrumbs":"Observability & Monitoring Guide » Enabling OTEL Export","id":"1366","title":"Enabling OTEL Export"},"1367":{"body":"Route JACS events through an OpenTelemetry Collector. This configuration receives OTLP over HTTP, batches events, and exports to common backends. # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: timeout: 5s send_batch_size: 512 filter/jacs: logs: include: match_type: regexp record_attributes: - key: event value: \"document_signed|signature_verified|verification_complete|agreement_.*|batch_signed|signing_procedure_complete|quorum_reached|signature_added\" exporters: # Debug: print to collector stdout debug: verbosity: detailed # Datadog datadog: api: key: \"${DD_API_KEY}\" site: datadoghq.com # Splunk HEC splunkhec: token: \"${SPLUNK_HEC_TOKEN}\" endpoint: \"https://splunk-hec:8088/services/collector\" source: \"jacs\" sourcetype: \"jacs:events\" # Generic OTLP (Grafana Cloud, Honeycomb, etc.) otlphttp: endpoint: \"${OTLP_ENDPOINT}\" headers: Authorization: \"Bearer ${OTLP_API_KEY}\" service: pipelines: logs: receivers: [otlp] processors: [batch, filter/jacs] exporters: [debug] # Replace with your exporter metrics: receivers: [otlp] processors: [batch] exporters: [debug] traces: receivers: [otlp] processors: [batch] exporters: [debug]","breadcrumbs":"Observability & Monitoring Guide » OTEL Collector Configuration","id":"1367","title":"OTEL Collector Configuration"},"1368":{"body":"In jacs.config.json: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"my-jacs-service\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n} Or via environment variables (useful in containers): export OTEL_EXPORTER_OTLP_ENDPOINT=\"http://collector:4318\"\nexport OTEL_SERVICE_NAME=\"jacs-production\"\nexport OTEL_RESOURCE_ATTRIBUTES=\"deployment.environment=production\"","breadcrumbs":"Observability & Monitoring Guide » Pointing JACS at the Collector","id":"1368","title":"Pointing JACS at the Collector"},"1369":{"body":"Deploy the OTEL Collector with the datadog exporter (see config above). Set DD_API_KEY in the collector's environment. In Datadog, JACS events appear under Logs > Search with source:opentelemetry. Create a monitor on event:verification_complete AND valid:false to alert on verification failures. Alternatively, use the Datadog Agent's built-in OTLP receiver: # datadog.yaml\notlp_config: receiver: protocols: http: endpoint: 0.0.0.0:4318","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Datadog","id":"1369","title":"Feeding Events to Datadog"},"137":{"body":"Scope: Is this agent allowed to communicate with me? APIs: sign_artifact(), verify_wrapped_artifact(), assess_remote_agent(), discover_agent() Layer B handles cross-boundary exchange between agents using the A2A protocol. It adds trust policy on top of Layer A's cryptographic status. Layer B answers: \"Should I accept artifacts from this agent?\" Policy status values: allowed · blocked · not_assessed Trust policies (open, verified, strict) control admission: Policy Requirement open Accept all agents verified Agent must have the urn:jacs:provenance-v1 extension strict Agent must be in the local trust store See A2A Interoperability for full details.","breadcrumbs":"Trust Layers » Layer B: Exchange + Discovery (A2A Integration)","id":"137","title":"Layer B: Exchange + Discovery (A2A Integration)"},"1370":{"body":"Deploy the OTEL Collector with the splunkhec exporter. Set SPLUNK_HEC_TOKEN in the collector's environment. Events arrive in Splunk with sourcetype=jacs:events. Search: sourcetype=\"jacs:events\" event=\"verification_complete\" valid=false","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Splunk","id":"1370","title":"Feeding Events to Splunk"},"1371":{"body":"Agreement events give you a complete lifecycle view: creation, each signature, quorum, and expiry. Here are practical queries.","breadcrumbs":"Observability & Monitoring Guide » Agreement Monitoring","id":"1371","title":"Agreement Monitoring"},"1372":{"body":"Filter for agreement_created events where has_timeout=true, then correlate with quorum_reached. Any agreement_created without a matching quorum_reached within the timeout window is at risk.","breadcrumbs":"Observability & Monitoring Guide » Agreements Approaching Timeout","id":"1372","title":"Agreements Approaching Timeout"},"1373":{"body":"event=\"signature_added\" | stats max(current) as sigs, max(required) as needed by document_id\n| where sigs < needed","breadcrumbs":"Observability & Monitoring Guide » Failed Quorum Detection","id":"1373","title":"Failed Quorum Detection"},"1374":{"body":"Track signature_added events over time to see how quickly agents sign after agreement creation: event=\"signature_added\" | timechart count by document_id","breadcrumbs":"Observability & Monitoring Guide » Signature Velocity","id":"1374","title":"Signature Velocity"},"1375":{"body":"The agreement_expired event (level warn) fires when an agent attempts to sign or verify an expired agreement. Alert on this directly: event=\"agreement_expired\" | alert","breadcrumbs":"Observability & Monitoring Guide » Expiry Alerts","id":"1375","title":"Expiry Alerts"},"1376":{"body":"Both document_signed and signature_verified include duration_ms. Use these to track signing and verification performance: event=\"document_signed\" | stats avg(duration_ms) as avg_sign_ms, p99(duration_ms) as p99_sign_ms by algorithm\nevent=\"signature_verified\" | stats avg(duration_ms) as avg_verify_ms, p99(duration_ms) as p99_verify_ms by algorithm Post-quantum algorithms (pq2025, pq-dilithium) will show higher latency than ring-Ed25519. Use these metrics to decide whether the security/performance tradeoff is acceptable for your workload.","breadcrumbs":"Observability & Monitoring Guide » Latency Tracking","id":"1376","title":"Latency Tracking"},"1377":{"body":"Observability (Rust API) -- Full API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig Algorithm Selection Guide -- Latency implications of algorithm choice Failure Modes -- What events to expect when things go wrong","breadcrumbs":"Observability & Monitoring Guide » Next Steps","id":"1377","title":"Next Steps"},"1378":{"body":"JACS provides a detached-signature model for email. Your agent signs a raw RFC 5322 .eml file and the result is the same email with a jacs-signature.json MIME attachment. The recipient extracts that attachment, verifies the cryptographic signature, and compares content hashes to detect tampering. There are only two functions you need: Action Function What you supply What you get back Sign jacs::email::sign_email() raw .eml bytes + your EmailSigner .eml bytes with jacs-signature.json Verify jacs::email::verify_email() signed .eml bytes + sender's public key + verifier ContentVerificationResult (pass/fail per field)","breadcrumbs":"Email Signing & Verification » Email Signing and Verification","id":"1378","title":"Email Signing and Verification"},"1379":{"body":"use jacs::email::{sign_email, EmailSigner}; // 1. Load raw email bytes (RFC 5322 format)\nlet raw_eml = std::fs::read(\"outgoing.eml\")?; // 2. Sign — your agent implements EmailSigner (see below)\nlet signed_eml = sign_email(&raw_eml, &my_agent)?; // 3. Send signed_eml — it is a valid .eml with the JACS attachment\nstd::fs::write(\"outgoing_signed.eml\", &signed_eml)?;","breadcrumbs":"Email Signing & Verification » Signing an email","id":"1379","title":"Signing an email"},"138":{"body":"Scope: Why should this data be trusted? APIs: create_attestation(), verify_attestation(), lift_to_attestation(), export_attestation_dsse() Layer C records the reasoning behind trust: claims, evidence, derivation chains, and assurance levels. Layer C answers: \"What evidence supports this data?\" Attestation status values: local_valid · full_valid local_valid : Signature and hash are correct; claims are structurally valid. full_valid : All of the above, plus evidence digests verified and derivation chain intact. See What Is an Attestation? for full details.","breadcrumbs":"Trust Layers » Layer C: Trust Context (Attestation)","id":"138","title":"Layer C: Trust Context (Attestation)"},"1380":{"body":"Your agent must implement four methods: pub trait EmailSigner { /// Sign raw bytes. Return the signature bytes. fn sign_bytes(&self, data: &[u8]) -> Result, Box>; /// Your agent's JACS ID (e.g. \"abc123:v1\"). fn jacs_id(&self) -> &str; /// The key identifier used for signing. fn key_id(&self) -> &str; /// The signing algorithm name. This comes from your JACS agent's /// key configuration — never hardcode it. fn algorithm(&self) -> &str;\n} The algorithm value (e.g. \"ed25519\", \"rsa-pss\", \"pq2025\") is read from your JACS agent's key metadata at runtime. sign_email records it in the jacs-signature.json document so the verifier knows which algorithm to use.","breadcrumbs":"Email Signing & Verification » The EmailSigner trait","id":"1380","title":"The EmailSigner trait"},"1381":{"body":"Parses and canonicalizes the email headers and body Computes SHA-256 hashes for each header, body part, and attachment Builds the JACS email signature payload Canonicalizes the payload via RFC 8785 (JCS) Calls your sign_bytes() to produce the cryptographic signature Attaches the result as jacs-signature.json You do not need to know any of this to use it — it is a single function call.","breadcrumbs":"Email Signing & Verification » What sign_email does internally","id":"1381","title":"What sign_email does internally"},"1382":{"body":"If the email already has a jacs-signature.json (it was previously signed by another agent), sign_email automatically: Renames the existing signature to jacs-signature-0.json (or -1, -2, ...) Computes a parent_signature_hash linking to the previous signature Signs the email with a new jacs-signature.json This builds a verifiable forwarding chain. No extra code needed.","breadcrumbs":"Email Signing & Verification » Forwarding (re-signing)","id":"1382","title":"Forwarding (re-signing)"},"1383":{"body":"","breadcrumbs":"Email Signing & Verification » Verifying an email","id":"1383","title":"Verifying an email"},"1384":{"body":"use jacs::email::verify_email;\nuse jacs::simple::SimpleAgent; let signed_eml = std::fs::read(\"incoming_signed.eml\")?;\nlet sender_public_key: Vec = /* fetch from HAI registry or local store */; // Any agent can verify — the sender's public key is passed explicitly\nlet (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?;\nlet result = verify_email(&signed_eml, &agent, &sender_public_key)?; if result.valid { println!(\"Email is authentic and unmodified\");\n} else { // Inspect which fields failed for field in &result.field_results { println!(\"{}: {:?}\", field.field, field.status); }\n} verify_email does everything in one call: Extracts jacs-signature.json from the email Removes it (the signature covers the email without itself) Verifies the JACS document signature against the sender's public key Compares every hash in the JACS document against the actual email content Returns per-field results","breadcrumbs":"Email Signing & Verification » One-call API (recommended)","id":"1384","title":"One-call API (recommended)"},"1385":{"body":"If you need to inspect the JACS document metadata (issuer, timestamps) before doing the content comparison: use jacs::email::{verify_email_document, verify_email_content};\nuse jacs::simple::SimpleAgent; let (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?; // Step 1: Verify the cryptographic signature — returns the trusted JACS document\nlet (doc, parts) = verify_email_document(&signed_eml, &agent, &sender_public_key)?; // Inspect the document\nprintln!(\"Signed by: {}\", doc.metadata.issuer);\nprintln!(\"Created at: {}\", doc.metadata.created_at); // Step 2: Compare content hashes\nlet result = verify_email_content(&doc, &parts);\nassert!(result.valid); All cryptographic operations are handled by the JACS agent via SimpleAgent::verify_with_key(). The agent's own key is not used -- the sender's public key is passed explicitly.","breadcrumbs":"Email Signing & Verification » Two-step API (when you need the JACS document)","id":"1385","title":"Two-step API (when you need the JACS document)"},"1386":{"body":"The ContentVerificationResult contains a field_results vector with one entry per field: Status Meaning Pass Hash matches — field is authentic Modified Hash mismatch but case-insensitive email address match (address headers only) Fail Content does not match the signed hash Unverifiable Field absent or not verifiable (e.g. Message-ID may change in transit) Fields checked: from, to, cc, subject, date, message_id, in_reply_to, references, body_plain, body_html, and all attachments.","breadcrumbs":"Email Signing & Verification » Field-level results","id":"1386","title":"Field-level results"},"1387":{"body":"The jacs-signature.json attachment has this structure: { \"version\": \"1.0\", \"document_type\": \"email_signature\", \"payload\": { \"headers\": { \"from\": { \"value\": \"agent@example.com\", \"hash\": \"sha256:...\" }, \"to\": { \"value\": \"recipient@example.com\", \"hash\": \"sha256:...\" }, \"subject\": { \"value\": \"Hello\", \"hash\": \"sha256:...\" }, \"date\": { \"value\": \"Fri, 28 Feb 2026 12:00:00 +0000\", \"hash\": \"sha256:...\" }, \"message_id\": { \"value\": \"\", \"hash\": \"sha256:...\" } }, \"body_plain\": { \"content_hash\": \"sha256:...\" }, \"body_html\": null, \"attachments\": [ { \"filename\": \"report.pdf\", \"content_hash\": \"sha256:...\" } ], \"parent_signature_hash\": null }, \"metadata\": { \"issuer\": \"agent-jacs-id:v1\", \"document_id\": \"uuid\", \"created_at\": \"2026-02-28T12:00:00Z\", \"hash\": \"sha256:...\" }, \"signature\": { \"key_id\": \"agent-key-id\", \"algorithm\": \"ed25519\", \"signature\": \"base64...\", \"signed_at\": \"2026-02-28T12:00:00Z\" }\n} metadata.hash is the SHA-256 of the RFC 8785 canonical JSON of payload. signature.signature is the cryptographic signature over that same canonical JSON. The algorithm is always read from the agent — never hardcoded.","breadcrumbs":"Email Signing & Verification » The JACS signature document","id":"1387","title":"The JACS signature document"},"1388":{"body":"All items are re-exported from jacs::email: // Signing\njacs::email::sign_email(raw_email: &[u8], signer: &dyn EmailSigner) -> Result, EmailError>\njacs::email::EmailSigner // trait your agent implements // Verification\njacs::email::verify_email(raw, &agent, pubkey) // one-call: crypto + content check\njacs::email::verify_email_document(raw, &agent, pk) // step 1: crypto only\njacs::email::verify_email_content(&doc, &parts) // step 2: content hash comparison\njacs::email::normalize_algorithm(...) // algorithm name normalization // Types\njacs::email::ContentVerificationResult // overall result with field_results\njacs::email::FieldResult // per-field status\njacs::email::FieldStatus // Pass | Modified | Fail | Unverifiable\njacs::email::JacsEmailSignatureDocument // the full signature document\njacs::email::EmailError // error type // Attachment helpers (for advanced use)\njacs::email::get_jacs_attachment(...) // extract jacs-signature.json bytes\njacs::email::remove_jacs_attachment(...) // strip jacs-signature.json from email\njacs::email::add_jacs_attachment(...) // inject jacs-signature.json into email","breadcrumbs":"Email Signing & Verification » Public API summary","id":"1388","title":"Public API summary"},"1389":{"body":"JACS uses a buffer-then-sign pattern for streaming outputs. Token streams from LLMs are accumulated in memory and signed once the stream completes. This is the correct approach for LLM outputs because: LLM responses are small. A typical response is under 100KB of text. Buffering this costs nothing. Signatures cover the complete output. A partial signature over incomplete text is useless for verification. Framework adapters handle this automatically. If you use a JACS adapter, streaming signing just works.","breadcrumbs":"Streaming Signing » Streaming Signing","id":"1389","title":"Streaming Signing"},"139":{"body":"Term Layer Meaning Crypto status A Outcome of signature verification: Verified, SelfSigned, Unverified, Invalid Policy status B Outcome of trust policy check: allowed, blocked, not_assessed Attestation status C Outcome of attestation verification: local_valid, full_valid Verified A Signature is valid and signer key was resolved SelfSigned A Signature is valid but signer is the verifier Unverified A Key not available — cannot check signature Invalid A Signature check failed Allowed B Agent passes the configured trust policy Blocked B Agent does not pass the trust policy Not assessed B No agent card provided — trust not evaluated","breadcrumbs":"Trust Layers » Terminology Glossary","id":"139","title":"Terminology Glossary"},"1390":{"body":"","breadcrumbs":"Streaming Signing » How It Works by Framework","id":"1390","title":"How It Works by Framework"},"1391":{"body":"The wrapStream middleware accumulates text-delta chunks via a TransformStream. When the stream flushes, it signs the complete text and emits a provider-metadata chunk containing the provenance record. import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { streamText } from 'ai'; const model = withProvenance(openai('gpt-4o'), { client });\nconst result = await streamText({ model, prompt: 'Explain trust.' }); for await (const chunk of result.textStream) { process.stdout.write(chunk); // stream to user in real time\n}\n// provenance is available after stream completes","breadcrumbs":"Streaming Signing » Vercel AI SDK (streamText)","id":"1391","title":"Vercel AI SDK (streamText)"},"1392":{"body":"LangChain tools execute synchronously (or await async results) before returning to the model. JACS signs each tool result individually via wrap_tool_call or signed_tool. No special streaming handling is needed because the signing happens at the tool output boundary, not the token stream. from jacs.adapters.langchain import jacs_signing_middleware agent = create_agent( model=\"openai:gpt-4o\", tools=tools, middleware=[jacs_signing_middleware(client=jacs_client)],\n)\n# Tool results are auto-signed before the model sees them","breadcrumbs":"Streaming Signing » LangChain / LangGraph","id":"1392","title":"LangChain / LangGraph"},"1393":{"body":"HTTP middleware signs the response body before it is sent. For streaming HTTP responses (SSE, chunked encoding), sign the complete message content before streaming, or sign each event individually. # FastAPI: middleware signs JSON responses automatically\nfrom jacs.adapters.fastapi import JacsMiddleware\napp.add_middleware(JacsMiddleware)","breadcrumbs":"Streaming Signing » Express / Koa / FastAPI","id":"1393","title":"Express / Koa / FastAPI"},"1394":{"body":"If you're calling an LLM API directly without a framework adapter, accumulate the response yourself and sign it when complete: import jacs.simple as jacs jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Accumulate streamed response\nchunks = []\nasync for chunk in llm_stream(\"What is trust?\"): chunks.append(chunk) print(chunk, end=\"\") # stream to user # Sign the complete response\ncomplete_text = \"\".join(chunks)\nsigned = jacs.sign_message({\"response\": complete_text, \"model\": \"gpt-4o\"}) const jacs = require('@hai.ai/jacs/simple');\nawait jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com' }); const chunks = [];\nfor await (const chunk of llmStream('What is trust?')) { chunks.push(chunk); process.stdout.write(chunk);\n} const signed = await jacs.signMessage({ response: chunks.join(''), model: 'gpt-4o',\n});","breadcrumbs":"Streaming Signing » Raw LLM APIs (No Framework Adapter)","id":"1394","title":"Raw LLM APIs (No Framework Adapter)"},"1395":{"body":"The buffer-then-sign pattern assumes the full content fits in memory. This is always true for LLM text responses. If you need to sign very large data (multi-GB files, video streams), use sign_file instead, which hashes the file on disk without loading it into memory.","breadcrumbs":"Streaming Signing » When NOT to Buffer","id":"1395","title":"When NOT to Buffer"},"1396":{"body":"Vercel AI SDK Adapter LangChain Adapters Framework Adapters (Node.js)","breadcrumbs":"Streaming Signing » See Also","id":"1396","title":"See Also"},"1397":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1397","title":"CLI Examples"},"1398":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1398","title":"Quick Reference"},"1399":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1399","title":"Getting Started"},"14":{"body":"It does not treat MCP and A2A as the same thing. MCP is for model-to-tool calls inside an application boundary; A2A is for agent discovery and exchange across boundaries. It does not assume every aspirational integration is first-class. If a chapter describes a feature that is not fully supported today, it has been moved out of the main path and tracked separately. It does not require a registry or blockchain to work. JACS identity is key-based and can be used entirely locally.","breadcrumbs":"Introduction » What This Book Does Not Claim","id":"14","title":"What This Book Does Not Claim"},"140":{"body":"\"Which layer do I need?\" I just need to prove data hasn't been tampered with → Layer A. Use sign_message() and verify(). I need to exchange signed data with other agents → Layer B. Use sign_artifact() and A2A discovery. See the A2A Quickstart . I need to record WHY data should be trusted → Layer C. Use create_attestation(). See the Attestation Tutorial . I need both exchange AND trust evidence → Layer B + C. See A2A + Attestation Composition .","breadcrumbs":"Trust Layers » Quick Decision Flow","id":"140","title":"Quick Decision Flow"},"1400":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1400","title":"First-Time Setup"},"1401":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1401","title":"Verify Your Setup"},"1402":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1402","title":"Document Operations"},"1403":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1403","title":"Creating Documents"},"1404":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1404","title":"Verifying Documents"},"1405":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1405","title":"Updating Documents"},"1406":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1406","title":"Extracting Embedded Content"},"1407":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1407","title":"Agreement Workflows"},"1408":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1408","title":"Creating an Agreement"},"1409":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1409","title":"Signing an Agreement"},"141":{"body":"\"Unverified\" does not mean \"Invalid.\" Unverified means the signer's key wasn't available. Invalid means the signature check actively failed. These have very different security implications. A2A trust policy is not attestation verification. A2A policy (Layer B) answers \"should I talk to this agent?\" Attestation (Layer C) answers \"why should I trust this data?\" They compose but are not interchangeable. \"Trusted\" is not the same as \"Verified.\" In JACS, \"trusted\" refers to trust store membership (Layer B). \"Verified\" refers to cryptographic signature validation (Layer A).","breadcrumbs":"Trust Layers » Common Misconceptions","id":"141","title":"Common Misconceptions"},"1410":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1410","title":"Complete Agreement Workflow"},"1411":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1411","title":"Agent Operations"},"1412":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1412","title":"Creating a Custom Agent"},"1413":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1413","title":"DNS-Based Identity"},"1414":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1414","title":"Agent Verification"},"1415":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1415","title":"Task Management"},"1416":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1416","title":"Creating Tasks"},"1417":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1417","title":"Scripting Examples"},"1418":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1418","title":"Batch Document Processing"},"1419":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1419","title":"Verification Report"},"142":{"body":"JACS includes native bindings (Rust compiled to platform-specific libraries), so deployment depends on pre-built binary availability for your target platform.","breadcrumbs":"Deployment Compatibility » Deployment Compatibility","id":"142","title":"Deployment Compatibility"},"1420":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1420","title":"Watch for New Documents"},"1421":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1421","title":"Environment Configuration"},"1422":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1422","title":"Using Environment Variables"},"1423":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1423","title":"Multiple Configurations"},"1424":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1424","title":"Error Handling"},"1425":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1425","title":"Understanding Exit Codes"},"1426":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1426","title":"Handling Failures"},"1427":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1427","title":"See Also"},"1428":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1428","title":"Node.js Examples"},"1429":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod v0.7.0 uses an async-first API. All NAPI operations return Promises by default; sync variants use a Sync suffix. // Initialize JACS (ES Modules, async)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1429","title":"Setup"},"143":{"body":"Platform Language Notes Linux (x86_64, aarch64) All Primary target macOS (Apple Silicon, Intel) All Full support Windows (x86_64) Rust, Node.js Python wheels may need manual build AWS Lambda Python, Node.js Use Lambda layers for native deps Docker / Kubernetes All Standard containerization Vercel (Node.js runtime) Node.js Via serverless functions","breadcrumbs":"Deployment Compatibility » Supported Platforms","id":"143","title":"Supported Platforms"},"1430":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1430","title":"Basic Document Operations"},"1431":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1431","title":"Creating and Signing Documents"},"1432":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1432","title":"Verifying Documents"},"1433":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1433","title":"Updating Documents"},"1434":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1434","title":"HTTP Server with Express"},"1435":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1435","title":"Complete Express Server"},"1436":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1436","title":"HTTP Client"},"1437":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1437","title":"MCP Integration"},"1438":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-server', domain: 'mcp.local', }); const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, client, \"server\" ); const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1438","title":"MCP Server"},"1439":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-client', domain: 'mcp.local', }); const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, client, \"client\" ); const mcpClient = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await mcpClient.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await mcpClient.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await mcpClient.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await mcpClient.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await mcpClient.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1439","title":"MCP Client"},"144":{"body":"Platform Why Workaround Cloudflare Workers No native module support (WASM-only) Use a proxy service Deno Deploy No native Node.js addons Use Deno with --allow-ffi locally Bun Native builds may fail Use Node.js runtime instead Browser / WASM Post-quantum crypto not available in WASM Planned for a future release","breadcrumbs":"Deployment Compatibility » Not Yet Supported","id":"144","title":"Not Yet Supported"},"1440":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1440","title":"Agreements"},"1441":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1441","title":"Creating Multi-Party Agreements"},"1442":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1442","title":"Signing Agreements"},"1443":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1443","title":"Checking Agreement Status"},"1444":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1444","title":"Document Store"},"1445":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1445","title":"Simple File-Based Store"},"1446":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1446","title":"Error Handling"},"1447":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1447","title":"Robust Error Handling Pattern"},"1448":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1448","title":"Testing"},"1449":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1449","title":"Jest Test Setup"},"145":{"body":"Language Minimum Version Rust 1.93+ (edition 2024) Python 3.10+ Node.js 18+ (LTS recommended)","breadcrumbs":"Deployment Compatibility » Version Requirements","id":"145","title":"Version Requirements"},"1450":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1450","title":"See Also"},"1451":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1451","title":"Python Examples"},"1452":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1452","title":"Setup"},"1453":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1453","title":"Basic Document Operations"},"1454":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1454","title":"Creating and Signing Documents"},"1455":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1455","title":"Verifying Documents"},"1456":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1456","title":"Updating Documents"},"1457":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1457","title":"HTTP Server with FastAPI"},"1458":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1458","title":"Complete FastAPI Server"},"1459":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1459","title":"HTTP Client"},"146":{"body":"FROM python:3.12-slim\nRUN pip install jacs\nCOPY . /app\nWORKDIR /app\nRUN python -c \"import jacs.simple as j; j.quickstart(name='docker-agent', domain='docker.local')\"\nCMD [\"python\", \"main.py\"]","breadcrumbs":"Deployment Compatibility » Docker Example","id":"146","title":"Docker Example"},"1460":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1460","title":"MCP Integration"},"1461":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1461","title":"FastMCP Server with JACS"},"1462":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1462","title":"MCP Client with JACS"},"1463":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1463","title":"Agreements"},"1464":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1464","title":"Creating Multi-Party Agreements"},"1465":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1465","title":"Signing Agreements"},"1466":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1466","title":"Checking Agreement Status"},"1467":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1467","title":"Document Store"},"1468":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1468","title":"Simple File-Based Store"},"1469":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1469","title":"Batch Processing"},"147":{"body":"For AWS Lambda, include the JACS native library in a Lambda layer or bundle it in your deployment package. Set JACS_PRIVATE_KEY_PASSWORD as a Lambda environment variable (use AWS Secrets Manager for production). Headless environments (Docker, Lambda, CI): Set JACS_KEYCHAIN_BACKEND=disabled to skip OS keychain lookups, which are not available in containers or serverless runtimes. Use JACS_PRIVATE_KEY_PASSWORD or JACS_PASSWORD_FILE instead.","breadcrumbs":"Deployment Compatibility » Lambda Deployment","id":"147","title":"Lambda Deployment"},"1470":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1470","title":"Batch Document Creator"},"1471":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1471","title":"Testing"},"1472":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1472","title":"Pytest Setup"},"1473":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1473","title":"Error Handling"},"1474":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1474","title":"Robust Error Handling Pattern"},"1475":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1475","title":"See Also"},"1476":{"body":"This page is now a curated index of examples that still line up with the current APIs. The old monolithic example chapter mixed outdated agent APIs with supported workflows.","breadcrumbs":"Integration Examples » Integration Examples","id":"1476","title":"Integration Examples"},"1477":{"body":"jacs-mcp/README.md Best starting point for the full Rust MCP server jacspy/examples/mcp/server.py Python FastMCP server wrapped with JACSMCPServer jacspy/examples/mcp/client.py Python FastMCP client wrapped with JACSMCPClient jacsnpm/examples/mcp.stdio.server.js Node stdio server with createJACSTransportProxy() jacsnpm/examples/mcp.stdio.client.js Node stdio client with signed transport","breadcrumbs":"Integration Examples » MCP","id":"1477","title":"MCP"},"1478":{"body":"jacspy/examples/langchain/signing_callback.py Best current Python example for signed LangGraph tool execution jacsnpm/examples/langchain/basic-agent.ts Node LangChain.js agent using JACS tools jacsnpm/examples/langchain/signing-callback.ts Node auto-signing pattern for LangGraph-style flows","breadcrumbs":"Integration Examples » LangChain / LangGraph","id":"1478","title":"LangChain / LangGraph"},"1479":{"body":"jacspy/tests/test_a2a_server.py Best current Python reference for generated .well-known routes jacsnpm/src/a2a-server.js Node Express A2A discovery middleware jacsnpm/examples/a2a-agent-example.js Node A2A card and artifact demo jacs/tests/a2a_cross_language_tests.rs Cross-language behavior reference for signing and verification","breadcrumbs":"Integration Examples » A2A","id":"1479","title":"A2A"},"148":{"body":"If no pre-built binary exists for your platform: # Python\npip install maturin\ncd jacspy && maturin develop --release # Node.js\ncd jacsnpm && npm run build Requires Rust 1.93+ toolchain installed via rustup .","breadcrumbs":"Deployment Compatibility » Building from Source","id":"148","title":"Building from Source"},"1480":{"body":"jacspy/examples/http/server.py FastAPI app with JacsMiddleware jacspy/examples/http/client.py Python client consuming signed responses jacsnpm/examples/expressmiddleware.js Express middleware example","breadcrumbs":"Integration Examples » HTTP / App Middleware","id":"1480","title":"HTTP / App Middleware"},"1481":{"body":"If an example and a higher-level prose page disagree, trust: the current binding README the current tests the example that imports the API you intend to use today","breadcrumbs":"Integration Examples » Rule Of Thumb","id":"1481","title":"Rule Of Thumb"},"1482":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands. For a workflow-oriented tutorial, see CLI Tutorial . For practical scripting examples, see CLI Examples .","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1482","title":"CLI Command Reference"},"1483":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1483","title":"Global Commands"},"1484":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1484","title":"jacs version"},"1485":{"body":"Create a persistent agent with keys on disk and optionally sign data -- no manual setup needed. If ./jacs.config.json already exists, loads it; otherwise creates a new agent. Agent, keys, and config are saved to ./jacs_data, ./jacs_keys, and ./jacs.config.json. Password is required: set JACS_PRIVATE_KEY_PASSWORD (recommended) or JACS_PASSWORD_FILE (CLI file bootstrap). Set exactly one explicit source; if both are set, CLI exits with an error. This is the fastest way to start using JACS. # Print agent info (ID, algorithm)\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json # Use a specific algorithm\njacs quickstart --name my-agent --domain my-agent.example.com --algorithm ring-Ed25519 Options: --name - Agent name used for first-time quickstart creation (required) --domain - Agent domain used for DNS/public-key verification workflows (required) --algorithm - Signing algorithm (default: pq2025). Also: ring-Ed25519, RSA-PSS --sign - Sign input (from stdin or --file) instead of printing info --file - Read JSON input from file instead of stdin (requires --sign)","breadcrumbs":"CLI Command Reference » jacs quickstart","id":"1485","title":"jacs quickstart"},"1486":{"body":"Verify a signed JACS document. No agent or config file required -- the CLI creates an ephemeral verifier if needed. # Verify a local file\njacs verify signed-document.json # JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document\njacs verify --remote https://example.com/signed-doc.json # Specify a directory of public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Options: - Path to the signed JACS JSON file (positional, required unless --remote is used) --remote - Fetch document from URL before verifying --json - Output result as JSON ({\"valid\": true, \"signerId\": \"...\", \"timestamp\": \"...\"}) --key-dir - Directory containing public keys for verification Exit codes: 0 for valid, 1 for invalid or error. Output (text): Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z Output (JSON): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} If ./jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise it creates a temporary ephemeral verifier internally. See the Verification Guide for Python, Node.js, and DNS verification workflows.","breadcrumbs":"CLI Command Reference » jacs verify","id":"1486","title":"jacs verify"},"1487":{"body":"Manage private key passwords in the OS keychain (macOS Keychain or Linux Secret Service via D-Bus). This allows JACS to retrieve your private key password without environment variables or password files. Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments. Every keychain command requires --agent-id so that each agent's password is stored separately. This prevents collisions when multiple agents coexist on the same machine. # Store a password interactively (prompts for input)\njacs keychain set --agent-id # Store a password non-interactively (for scripting)\njacs keychain set --agent-id --password \"YourStr0ng!Pass#Here\" # Retrieve the stored password (prints to stdout, for piping)\nexport JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get --agent-id ) # Remove the stored password\njacs keychain delete --agent-id # Check keychain availability and whether a password is stored\njacs keychain status --agent-id Subcommand Description jacs keychain set --agent-id Store a password for an agent (prompts interactively) jacs keychain set --agent-id --password Store a specific password (for scripting) jacs keychain get --agent-id Print stored password to stdout jacs keychain delete --agent-id Remove stored password from OS keychain jacs keychain status --agent-id Check keychain availability and storage state Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable. Password resolution order: When JACS needs the private key password, it checks sources in this order: JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain keyed by agent ID (if keychain feature is enabled and not disabled)","breadcrumbs":"CLI Command Reference » jacs keychain","id":"1487","title":"jacs keychain"},"1488":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1488","title":"jacs init"},"1489":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1489","title":"jacs help"},"149":{"body":"Common issues and solutions when installing or using JACS.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"149","title":"Troubleshooting"},"1490":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1490","title":"Configuration Commands"},"1491":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1491","title":"jacs config"},"1492":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1492","title":"Agent Commands"},"1493":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1493","title":"jacs agent"},"1494":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1494","title":"Task Commands"},"1495":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1495","title":"jacs task"},"1496":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1496","title":"Document Commands"},"1497":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f - Path to input file. Must be JSON format -o - Output filename for the created document -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema - Path to JSON schema file to use for validation --attach - Path to file or directory for file attachments -e, --embed - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1497","title":"jacs document create"},"1498":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a - Path to the agent file -f - Path to original document file -n - Path to new/modified document file -o - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema - Path to JSON schema file for validation --attach - Path to file or directory for additional attachments -e, --embed - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1498","title":"jacs document update"},"1499":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a - Path to the agent file -f - Path to input file. Must be JSON format -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1499","title":"jacs document verify"},"15":{"body":"GitHub Repository Issue Tracker","breadcrumbs":"Introduction » Community","id":"15","title":"Community"},"150":{"body":"","breadcrumbs":"Troubleshooting » Installation Issues","id":"150","title":"Installation Issues"},"1500":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a - Path to the agent file -f - Path to input file containing embedded files -d - Path to directory of files to process -s, --schema - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1500","title":"jacs document extract"},"1501":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1501","title":"Agreement Commands"},"1502":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1502","title":"Common Patterns"},"1503":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1503","title":"Basic Document Lifecycle"},"1504":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1504","title":"Working with Attachments"},"1505":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1505","title":"Schema Validation Workflow"},"1506":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1506","title":"Global Options"},"1507":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1507","title":"Exit Codes"},"1508":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1508","title":"Environment Variables"},"1509":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1509","title":"File Formats"},"151":{"body":"Check your Python version (3.10+ required). If no pre-built wheel exists for your platform, install the Rust toolchain and build from source: pip install maturin\ncd jacspy && maturin develop --release","breadcrumbs":"Troubleshooting » pip install fails","id":"151","title":"pip install fails"},"1510":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1510","title":"Input Files"},"1511":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1511","title":"Output Files"},"1512":{"body":"This is the comprehensive configuration guide covering zero-config quickstart, storage backends, observability, and environment variables. For the raw schema field list, see Config File Schema .","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1512","title":"Configuration Reference"},"1513":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1513","title":"Overview"},"1514":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (local key cache by publicKeyHash), dns (DNS TXT fingerprint validation), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that yields verifiable key material is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1514","title":"Key resolution for verifiers"},"1515":{"body":"If you just want to sign and verify without manual config setup, use quickstart(name, domain, ...): import jacs.simple as jacs\ninfo = jacs.quickstart(name=\"config-agent\", domain=\"config.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path) const jacs = require('@hai.ai/jacs/simple');\nconst info = await jacs.quickstart({ name: 'config-agent', domain: 'config.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath); jacs quickstart --name config-agent --domain config.example.com quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Configuration Reference » Zero-Config Path","id":"1515","title":"Zero-Config Path"},"1516":{"body":"For persistent agents, a config file needs only two fields (plus $schema): { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"pq2025\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Configuration Reference » Minimal Configuration","id":"1516","title":"Minimal Configuration"},"1517":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"pq2025\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1517","title":"Complete Example Configuration"},"1518":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1518","title":"Observability Configuration"},"1519":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1519","title":"Logs Configuration"},"152":{"body":"Pre-built binaries are available for Linux/macOS/Windows x64 and ARM64 macOS. If no pre-built binary matches your platform, you need the Rust toolchain installed so the native addon can compile during npm install.","breadcrumbs":"Troubleshooting » npm install fails","id":"152","title":"npm install fails"},"1520":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1520","title":"Metrics Configuration"},"1521":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1521","title":"Tracing Configuration"},"1522":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1522","title":"Authentication & Headers"},"1523":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1523","title":"Common Patterns"},"1524":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1524","title":"Development Configuration"},"1525":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1525","title":"Production Configuration"},"1526":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1526","title":"File-based Configuration"},"1527":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1527","title":"Environment Variable Integration"},"1528":{"body":"Only one environment variable is truly required (unless using the OS keychain): JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations, unless the password is stored in the OS keychain)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1528","title":"Required Environment Variable"},"1529":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: pq2025) jacs_default_storage - Storage backend (default: fs) jacs_keychain_backend - OS keychain backend for password storage (default: \"auto\"). See below. jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1529","title":"Configuration-Based Settings"},"153":{"body":"The default wheels and binaries target glibc. On Alpine or other musl-based systems, build from source with the Rust toolchain, or use a Debian-based container image instead.","breadcrumbs":"Troubleshooting » Alpine Linux / musl libc","id":"153","title":"Alpine Linux / musl libc"},"1530":{"body":"The jacs_keychain_backend field controls whether JACS looks up the private key password from the OS credential store (macOS Keychain or Linux Secret Service): { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect the platform default (macOS Keychain or Linux Secret Service). This is the default when the field is omitted. \"macos-keychain\" Explicitly use the macOS Keychain \"linux-secret-service\" Explicitly use the Linux D-Bus Secret Service (GNOME Keyring, KDE Wallet, KeePassXC) \"disabled\" Never consult the OS keychain. Recommended for CI, headless servers, and containers. You can also override via environment variable: export JACS_KEYCHAIN_BACKEND=disabled # skip keychain in CI When not set to \"disabled\", password resolution checks: env var first, then OS keychain, then error. See the CLI keychain commands for storing and managing passwords. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » OS Keychain Configuration","id":"1530","title":"OS Keychain Configuration"},"1531":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1531","title":"Storage Configuration"},"1532":{"body":"Backend Value Description Use Case Filesystem \"fs\" Signed JSON documents on local disk Default, development, single-node deployments Local Indexed SQLite \"rusqlite\" Signed documents in SQLite with FTS search Local search, bindings, MCP AWS S3 \"aws\" Amazon S3 object storage Remote object storage Memory \"memory\" In-memory object storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications For local indexed document search in JACS core, use \"rusqlite\". Additional database backends such as PostgreSQL, DuckDB, Redb, and SurrealDB live in separate crates and are not core jacs_default_storage values.","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1532","title":"Available Storage Backends"},"1533":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments Local Indexed SQLite (\"rusqlite\") { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: Built with the default sqlite Cargo feature Database path: /jacs_documents.sqlite3 Best for: Local full-text search, MCP/binding document operations, single-machine deployments that want indexed reads AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1533","title":"Backend-Specific Configuration"},"1534":{"body":"Filesystem (fs) stores signed documents as JSON files under jacs_data/documents/. Rusqlite (rusqlite) stores signed documents in jacs_data/jacs_documents.sqlite3 and is the indexed DocumentService path used by bindings and MCP. Agent files and keys remain path-based assets under jacs_data/ and jacs_keys/. Observability data (logs, metrics) can use separate storage via observability configuration.","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1534","title":"Storage Behavior"},"1535":{"body":"Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes a signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Configuration Reference » DocumentService Guarantees","id":"1535","title":"DocumentService Guarantees"},"1536":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1536","title":"Configuration Examples"},"1537":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access Rusqlite : Protect the local database file with the same filesystem permissions you use for other signed artifacts Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1537","title":"Security Considerations"},"1538":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1538","title":"Migration Between Storage Backends"},"1539":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1539","title":"Error Codes"},"154":{"body":"","breadcrumbs":"Troubleshooting » Configuration Issues","id":"154","title":"Configuration Issues"},"1540":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1540","title":"CLI Exit Codes"},"1541":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1541","title":"Configuration Errors"},"1542":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1542","title":"Missing Configuration"},"1543":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1543","title":"Invalid Configuration"},"1544":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1544","title":"Key Directory Not Found"},"1545":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1545","title":"Cryptographic Errors"},"1546":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1546","title":"Private Key Not Found"},"1547":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1547","title":"Invalid Key Format"},"1548":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1548","title":"Key Password Required"},"1549":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1549","title":"Algorithm Mismatch"},"155":{"body":"Run jacs quickstart --name my-agent --domain my-agent.example.com to auto-create a config, or copy the example: cp jacs.config.example.json jacs.config.json","breadcrumbs":"Troubleshooting » Config not found","id":"155","title":"Config not found"},"1550":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1550","title":"Signature Errors"},"1551":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1551","title":"Verification Failed"},"1552":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1552","title":"Missing Signature"},"1553":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1553","title":"Invalid Signature Format"},"1554":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1554","title":"Unknown Signing Algorithm"},"1555":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1555","title":"DNS Verification Errors"},"1556":{"body":"Error: strict DNSSEC validation failed for (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1556","title":"DNSSEC Validation Failed"},"1557":{"body":"Error: DNS TXT lookup failed for (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1557","title":"DNS Record Not Found"},"1558":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1558","title":"DNS Required"},"1559":{"body":"Error: DNS lookup timed out for Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1559","title":"DNS Lookup Timeout"},"156":{"body":"Wrong or missing password. Check JACS_PRIVATE_KEY_PASSWORD. For CLI, you may also set JACS_PASSWORD_FILE to a file that contains only the password, or use jacs keychain set to store the password in the OS keychain. Set exactly one explicit source; if both env var and password file are set, CLI fails by design. The OS keychain is only consulted when neither env var nor password file is present.","breadcrumbs":"Troubleshooting » Private key decryption failed","id":"156","title":"Private key decryption failed"},"1560":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1560","title":"Document Errors"},"1561":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1561","title":"Invalid JSON"},"1562":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1562","title":"Schema Validation Failed"},"1563":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1563","title":"Document Not Found"},"1564":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1564","title":"Version Mismatch"},"1565":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1565","title":"Agreement Errors"},"1566":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1566","title":"Agreement Not Found"},"1567":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1567","title":"Already Signed"},"1568":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1568","title":"Not Authorized"},"1569":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1569","title":"Agreement Locked"},"157":{"body":"Set the signingAlgorithm field in your config, or pass it explicitly to quickstart(...) / create(...). Valid values: pq2025, ring-Ed25519, RSA-PSS.","breadcrumbs":"Troubleshooting » Algorithm detection failed","id":"157","title":"Algorithm detection failed"},"1570":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1570","title":"Storage Errors"},"1571":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1571","title":"Storage Backend Error"},"1572":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1572","title":"AWS S3 Error"},"1573":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1573","title":"Connection Error"},"1574":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1574","title":"HTTP/MCP Errors"},"1575":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1575","title":"Request Verification Failed"},"1576":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1576","title":"Response Verification Failed"},"1577":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1577","title":"Middleware Configuration Error"},"1578":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1578","title":"Debugging Tips"},"1579":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1579","title":"Enable Verbose Output"},"158":{"body":"","breadcrumbs":"Troubleshooting » Runtime Issues","id":"158","title":"Runtime Issues"},"1580":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1580","title":"Check Configuration"},"1581":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1581","title":"Verify Agent"},"1582":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1582","title":"Test Signing"},"1583":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1583","title":"See Also"},"1584":{"body":"This reference explains every field in the AttestationVerificationResult returned by verify_attestation() and verify_attestation_full().","breadcrumbs":"Attestation Verification Results » Attestation Verification Results","id":"1584","title":"Attestation Verification Results"},"1585":{"body":"{ \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true }, \"evidence\": [ { \"kind\": \"custom\", \"digest_valid\": true, \"freshness_valid\": true, \"errors\": [] } ], \"chain\": { \"depth\": 1, \"all_links_valid\": true, \"links\": [] }, \"errors\": []\n}","breadcrumbs":"Attestation Verification Results » Result Structure","id":"1585","title":"Result Structure"},"1586":{"body":"Field Type Description valid boolean Overall result. true only if all sub-checks pass. crypto object Cryptographic verification results. evidence array Per-evidence-ref verification results (full tier only). chain object|null Derivation chain verification (full tier only, if derivation exists). errors array Human-readable error messages for any failures.","breadcrumbs":"Attestation Verification Results » Top-Level Fields","id":"1586","title":"Top-Level Fields"},"1587":{"body":"Field Type Description signature_valid boolean The cryptographic signature matches the document content and the signer's public key. hash_valid boolean The jacsSha256 hash matches the canonicalized document content. Common failure scenarios: signature_valid: false -- The document was tampered with after signing, or the wrong public key was used. hash_valid: false -- The document body was modified after the hash was computed.","breadcrumbs":"Attestation Verification Results » crypto Object","id":"1587","title":"crypto Object"},"1588":{"body":"Each entry corresponds to one evidence reference in the attestation's evidence array. Field Type Description kind string Evidence type (a2a, email, jwt, tlsnotary, custom). digest_valid boolean The evidence digest matches the expected value. freshness_valid boolean The collectedAt timestamp is within acceptable bounds. errors array Error messages specific to this evidence item. Common failure scenarios: digest_valid: false -- The evidence content has changed since the attestation was created. freshness_valid: false -- The evidence is too old. Check collectedAt and your freshness policy.","breadcrumbs":"Attestation Verification Results » evidence Array (Full Tier Only)","id":"1588","title":"evidence Array (Full Tier Only)"},"1589":{"body":"Present only when the attestation has a derivation field. Field Type Description depth number Number of links in the derivation chain. all_links_valid boolean Every derivation link verified successfully. links array Per-link verification details. Each link in links: Field Type Description input_digests_valid boolean Input digests match the referenced documents. output_digests_valid boolean Output digests match the transformation result. transform object Transform metadata (name, hash, reproducible).","breadcrumbs":"Attestation Verification Results » chain Object (Full Tier Only)","id":"1589","title":"chain Object (Full Tier Only)"},"159":{"body":"Ensure the data and key directories exist and are writable. By default these are ./jacs_data and ./jacs_keys.","breadcrumbs":"Troubleshooting » Agent creation fails","id":"159","title":"Agent creation fails"},"1590":{"body":"","breadcrumbs":"Attestation Verification Results » Verification Tiers","id":"1590","title":"Verification Tiers"},"1591":{"body":"Checks: crypto.signature_valid + crypto.hash_valid Speed: < 1ms typical Network: None Use for: Real-time validation, hot path","breadcrumbs":"Attestation Verification Results » Local Tier (verify_attestation())","id":"1591","title":"Local Tier (verify_attestation())"},"1592":{"body":"Checks: Everything in local + evidence digests + freshness + derivation chain Speed: < 10ms typical (no network), varies with evidence count Network: Optional (for remote evidence resolution) Use for: Audit trails, compliance, trust decisions","breadcrumbs":"Attestation Verification Results » Full Tier (verify_attestation(full=True))","id":"1592","title":"Full Tier (verify_attestation(full=True))"},"1593":{"body":"","breadcrumbs":"Attestation Verification Results » Troubleshooting","id":"1593","title":"Troubleshooting"},"1594":{"body":"The valid field aggregates all sub-checks. If crypto passes but evidence or chain checks fail, valid will be false. Check the evidence and chain fields for details.","breadcrumbs":"Attestation Verification Results » \"valid is false but crypto shows all true\"","id":"1594","title":"\"valid is false but crypto shows all true\""},"1595":{"body":"If you created the attestation without evidence references, the evidence array will be empty. This is not an error -- it means there are no external proofs to verify.","breadcrumbs":"Attestation Verification Results » \"evidence is empty\"","id":"1595","title":"\"evidence is empty\""},"1596":{"body":"If the attestation has no derivation field, chain will be null. This is normal for standalone attestations that don't reference prior attestations.","breadcrumbs":"Attestation Verification Results » \"chain is null\"","id":"1596","title":"\"chain is null\""},"1597":{"body":"JACS uses JSON Canonicalization Scheme (JCS) for hashing. If you serialize and re-parse the document, ensure the serializer preserves field order and does not add/remove whitespace in a way that changes the canonical form.","breadcrumbs":"Attestation Verification Results » \"signature_valid is false after serialization\"","id":"1597","title":"\"signature_valid is false after serialization\""},"1598":{"body":"The jacs attest command creates and verifies attestation documents from the command line. Attestation extends basic signing with structured claims, evidence references, and derivation chains.","breadcrumbs":"Attestation CLI Reference » CLI Reference: jacs attest","id":"1598","title":"CLI Reference: jacs attest"},"1599":{"body":"Create a signed attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest create","id":"1599","title":"jacs attest create"},"16":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"16","title":"What is JACS?"},"160":{"body":"Ensure the signer's public key is accessible. If verifying a document from another agent, you may need to import their public key or use the trust store.","breadcrumbs":"Troubleshooting » Signature verification fails","id":"160","title":"Signature verification fails"},"1600":{"body":"jacs attest create --claims '' [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1600","title":"Synopsis"},"1601":{"body":"Flag Required Description --claims '' Yes JSON array of claims. Each claim must have name and value fields. --subject-type No Type of subject: agent, artifact, workflow, identity. Default: derived from context. --subject-id No Identifier of the subject being attested. --subject-digest No SHA-256 digest of the subject content. --evidence '' No JSON array of evidence references. --from-document No Lift an existing signed JACS document into an attestation. Overrides subject flags. -o, --output No Write attestation to file instead of stdout.","breadcrumbs":"Attestation CLI Reference » Options","id":"1601","title":"Options"},"1602":{"body":"Create a basic attestation: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123def456...\" \\ --claims '[{\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}]' Attestation with multiple claims: jacs attest create \\ --subject-type agent \\ --subject-id \"agent-abc\" \\ --subject-digest \"sha256hash...\" \\ --claims '[ {\"name\": \"reviewed\", \"value\": true, \"confidence\": 0.95}, {\"name\": \"source\", \"value\": \"internal_db\", \"assuranceLevel\": \"verified\"} ]' Lift an existing signed document to attestation: jacs attest create \\ --from-document mydata.signed.json \\ --claims '[{\"name\": \"approved\", \"value\": true}]' With evidence references: jacs attest create \\ --subject-type artifact \\ --subject-id \"report-456\" \\ --subject-digest \"def789...\" \\ --claims '[{\"name\": \"scanned\", \"value\": true}]' \\ --evidence '[{ \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"} }]' Write to file: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o attestation.json","breadcrumbs":"Attestation CLI Reference » Examples","id":"1602","title":"Examples"},"1603":{"body":"Verify an attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest verify","id":"1603","title":"jacs attest verify"},"1604":{"body":"jacs attest verify [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1604","title":"Synopsis"},"1605":{"body":"Argument Required Description Yes Path to the attestation JSON file to verify.","breadcrumbs":"Attestation CLI Reference » Arguments","id":"1605","title":"Arguments"},"1606":{"body":"Flag Required Description --full No Use full verification (evidence + derivation chain). Default: local verification (crypto + hash only). --json No Output the verification result as JSON. --key-dir No Directory containing public keys for verification. --max-depth No Maximum derivation chain depth. Default: 10.","breadcrumbs":"Attestation CLI Reference » Options","id":"1606","title":"Options"},"1607":{"body":"Basic verification (local tier): jacs attest verify attestation.json Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Full verification: jacs attest verify attestation.json --full Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Evidence: 1 item(s) verified [0] custom: digest OK, freshness OK Chain: not present JSON output (for scripting): jacs attest verify attestation.json --json Output: { \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true, \"signer_id\": \"agent-id-abc123\", \"algorithm\": \"ring-Ed25519\" }, \"evidence\": [], \"chain\": null, \"errors\": []\n} Verify with external keys: jacs attest verify attestation.json --key-dir ./trusted_keys/ Pipe through jq: jacs attest verify attestation.json --json | jq '.crypto'","breadcrumbs":"Attestation CLI Reference » Examples","id":"1607","title":"Examples"},"1608":{"body":"","breadcrumbs":"Attestation CLI Reference » Piping and Scripting Patterns","id":"1608","title":"Piping and Scripting Patterns"},"1609":{"body":"jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o att.json && \\\njacs attest verify att.json --json | jq '.valid'","breadcrumbs":"Attestation CLI Reference » Create and verify in one pipeline","id":"1609","title":"Create and verify in one pipeline"},"161":{"body":"Check the jacs_data_directory path in your config. Documents are stored as JSON files in that directory.","breadcrumbs":"Troubleshooting » Documents not found","id":"161","title":"Documents not found"},"1610":{"body":"#!/bin/bash\nset -e RESULT=$(jacs attest verify \"$1\" --json 2>/dev/null)\nVALID=$(echo \"$RESULT\" | jq -r '.valid') if [ \"$VALID\" = \"true\" ]; then echo \"Attestation is valid\" exit 0\nelse echo \"Attestation is INVALID\" echo \"$RESULT\" | jq '.errors' exit 1\nfi","breadcrumbs":"Attestation CLI Reference » Check validity in a script","id":"1610","title":"Check validity in a script"},"1611":{"body":"for file in attestations/*.json; do echo -n \"$file: \" jacs attest verify \"$file\" --json | jq -r '.valid'\ndone","breadcrumbs":"Attestation CLI Reference » Batch verify multiple attestations","id":"1611","title":"Batch verify multiple attestations"},"1612":{"body":"Code Meaning 0 Success (create: attestation created; verify: attestation valid) 1 Failure (create: error creating attestation; verify: attestation invalid or error)","breadcrumbs":"Attestation CLI Reference » Exit Codes","id":"1612","title":"Exit Codes"},"1613":{"body":"Variable Description JACS_PRIVATE_KEY_PASSWORD Password for the agent's private key JACS_MAX_DERIVATION_DEPTH Override maximum derivation chain depth (default: 10) JACS_DATA_DIRECTORY Directory for JACS data files JACS_KEY_DIRECTORY Directory containing keys JACS_AGENT_ID_AND_VERSION Agent identity for signing","breadcrumbs":"Attestation CLI Reference » Environment Variables","id":"1613","title":"Environment Variables"},"1614":{"body":"Sign vs. Attest Decision Guide Attestation Tutorial Attestation Verification Results CLI Command Reference","breadcrumbs":"Attestation CLI Reference » See Also","id":"1614","title":"See Also"},"1615":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1615","title":"Migration Guide"},"1616":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1616","title":"Version Compatibility"},"1617":{"body":"","breadcrumbs":"Migration Guide » Migrating Node.js from 0.6.x to 0.7.0","id":"1617","title":"Migrating Node.js from 0.6.x to 0.7.0"},"1618":{"body":"In v0.7.0, all NAPI operations return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). Before (v0.6.x): const agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify(content));\nconst isValid = agent.verifyDocument(doc); After (v0.7.0, async -- recommended): const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content));\nconst isValid = await agent.verifyDocument(doc); After (v0.7.0, sync -- for scripts/CLI): const agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));\nconst isValid = agent.verifyDocumentSync(doc);","breadcrumbs":"Migration Guide » Breaking Change: Async-First API","id":"1618","title":"Breaking Change: Async-First API"},"1619":{"body":"v0.6.x v0.7.0 Async (default) v0.7.0 Sync agent.load(path) await agent.load(path) agent.loadSync(path) agent.createDocument(...) await agent.createDocument(...) agent.createDocumentSync(...) agent.verifyDocument(doc) await agent.verifyDocument(doc) agent.verifyDocumentSync(doc) agent.verifyAgent() await agent.verifyAgent() agent.verifyAgentSync() agent.updateAgent(json) await agent.updateAgent(json) agent.updateAgentSync(json) agent.updateDocument(...) await agent.updateDocument(...) agent.updateDocumentSync(...) agent.signString(data) await agent.signString(data) agent.signStringSync(data) agent.createAgreement(...) await agent.createAgreement(...) agent.createAgreementSync(...) agent.signAgreement(...) await agent.signAgreement(...) agent.signAgreementSync(...) agent.checkAgreement(...) await agent.checkAgreement(...) agent.checkAgreementSync(...)","breadcrumbs":"Migration Guide » Method Renaming Summary","id":"1619","title":"Method Renaming Summary"},"162":{"body":"git clone https://github.com/HumanAssisted/JACS.git\ncd JACS # Rust core + CLI\ncargo build --release\ncargo install --path jacs --features cli # Python binding\ncd jacspy && maturin develop --release # Node.js binding\ncd jacsnpm && npm run build Requires Rust 1.93+ (install via rustup ).","breadcrumbs":"Troubleshooting » Building from Source","id":"162","title":"Building from Source"},"1620":{"body":"These methods remain synchronous without a Sync suffix because they use V8-thread-only APIs (Env, JsObject): agent.signRequest(params) -- unchanged agent.verifyResponse(doc) -- unchanged agent.verifyResponseWithAgentId(doc) -- unchanged","breadcrumbs":"Migration Guide » V8-Thread-Only Methods (No Change)","id":"1620","title":"V8-Thread-Only Methods (No Change)"},"1621":{"body":"The @hai.ai/jacs/simple module follows the same pattern: // v0.6.x\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessage({ action: 'approve' }); // v0.7.0 async (recommended)\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = await jacs.signMessage({ action: 'approve' }); // v0.7.0 sync\njacs.quickstartSync({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Migration Guide » Simplified API (Module-Level)","id":"1621","title":"Simplified API (Module-Level)"},"1622":{"body":"These functions do not call NAPI and remain unchanged (no suffix needed): hashString(), createConfig(), getPublicKey(), isLoaded(), exportAgent(), getAgentInfo() getDnsRecord(), getWellKnownJson(), verifyStandalone() Trust store: trustAgent(), listTrustedAgents(), untrustAgent(), isTrusted(), getTrustedAgent()","breadcrumbs":"Migration Guide » Pure Sync Functions (No Change)","id":"1622","title":"Pure Sync Functions (No Change)"},"1623":{"body":"Update dependency: npm install @hai.ai/jacs@0.7.0 Add await to all NAPI method calls, or append Sync to method names Update test assertions to handle Promises (use async/await in test functions) V8-thread-only methods (signRequest, verifyResponse, verifyResponseWithAgentId) need no changes","breadcrumbs":"Migration Guide » Migration Steps","id":"1623","title":"Migration Steps"},"1624":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1624","title":"Migrating from 0.5.1 to 0.5.2"},"1625":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1625","title":"Migration Notes"},"1626":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1626","title":"Deprecated Environment Variables"},"1627":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1627","title":"New Environment Variables"},"1628":{"body":"In v0.9.0, several method names were standardized. The old names remain as aliases for backward compatibility but are deprecated and will be removed in 1.0.0 (minimum 2 minor releases after deprecation).","breadcrumbs":"Migration Guide » Deprecated Method Aliases (0.9.0)","id":"1628","title":"Deprecated Method Aliases (0.9.0)"},"1629":{"body":"Set the JACS_SHOW_DEPRECATIONS=1 environment variable to emit runtime warnings when deprecated methods are called: export JACS_SHOW_DEPRECATIONS=1 This is recommended during development and CI to identify code that needs updating.","breadcrumbs":"Migration Guide » Runtime Deprecation Warnings","id":"1629","title":"Runtime Deprecation Warnings"},"163":{"body":"GitHub Issues -- report bugs and feature requests Quick Start Guide -- step-by-step setup","breadcrumbs":"Troubleshooting » Getting Help","id":"163","title":"Getting Help"},"1630":{"body":"SDK Deprecated Method Canonical Replacement Since Removal Python (binding) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Python (A2A) a2a.wrap_artifact_with_provenance() a2a.sign_artifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifact() agent.signArtifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifactSync() agent.signArtifactSync() 0.9.0 1.0.0 Node.js (A2A) a2a.wrapArtifactWithProvenance() a2a.signArtifact() 0.9.0 1.0.0 Rust (core) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Go SignA2AArtifact() (simple API) Uses sign_artifact internally -- -- All aliases behave identically to their canonical replacements. No behavioral changes are needed when migrating -- only rename the method call.","breadcrumbs":"Migration Guide » Deprecated Alias Table","id":"1630","title":"Deprecated Alias Table"},"1631":{"body":"Python: # Before (deprecated)\nwrapped = agent.wrap_a2a_artifact(artifact_json, \"task\") # After (canonical)\nsigned = agent.sign_artifact(artifact_json, \"task\") Node.js: // Before (deprecated)\nconst wrapped = await agent.wrapA2aArtifact(artifactJson, 'task'); // After (canonical)\nconst signed = await agent.signArtifact(artifactJson, 'task'); Python A2A integration: # Before (deprecated)\nwrapped = a2a.wrap_artifact_with_provenance(artifact, \"task\") # After (canonical)\nsigned = a2a.sign_artifact(artifact, \"task\") Node.js A2A integration: // Before (deprecated)\nconst wrapped = await a2a.wrapArtifactWithProvenance(artifact, 'task'); // After (canonical)\nconst signed = await a2a.signArtifact(artifact, 'task');","breadcrumbs":"Migration Guide » Migration Examples","id":"1631","title":"Migration Examples"},"1632":{"body":"Module-level functions (e.g., jacs.load(), jacs.sign_request() in Python; load(), signRequest() in Node.js) were deprecated in earlier releases. Use JacsAgent instance methods instead. See the Python and Node.js API references for the full list.","breadcrumbs":"Migration Guide » Module-Level Function Deprecation (Reminder)","id":"1632","title":"Module-Level Function Deprecation (Reminder)"},"1633":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1633","title":"Migrating from 0.2.x to 0.3.x"},"1634":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1634","title":"Configuration Changes"},"1635":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1635","title":"Migration Steps"},"1636":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1636","title":"Migrating Storage Backends"},"1637":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1637","title":"Filesystem to AWS S3"},"1638":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1638","title":"AWS S3 to Filesystem"},"1639":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1639","title":"Migrating Cryptographic Algorithms"},"164":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"164","title":"Installation"},"1640":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1640","title":"Ed25519 to Post-Quantum"},"1641":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1641","title":"Migrating Between Platforms"},"1642":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1642","title":"Node.js to Python"},"1643":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1643","title":"Sharing Agents Between Platforms"},"1644":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1644","title":"Migrating Key Formats"},"1645":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1645","title":"Unencrypted to Encrypted Keys"},"1646":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1646","title":"Database Migration"},"1647":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1647","title":"Adding Database Storage"},"1648":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1648","title":"MCP Integration Migration"},"1649":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1649","title":"Adding JACS to Existing MCP Server"},"165":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"165","title":"Requirements"},"1650":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1650","title":"HTTP API Migration"},"1651":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1651","title":"Adding JACS to Existing Express API"},"1652":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1652","title":"Troubleshooting Migration"},"1653":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1653","title":"Common Issues"},"1654":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1654","title":"Verification Checklist"},"1655":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1655","title":"Rollback Procedures"},"1656":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1656","title":"See Also"},"166":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"166","title":"Verify Rust Version"},"167":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"167","title":"Installing the CLI"},"168":{"body":"cargo install jacs-cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"168","title":"From crates.io (Recommended)"},"169":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Installation » From Homebrew (macOS)","id":"169","title":"From Homebrew (macOS)"},"17":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust with flexible key resolution (local trust stores, DNS, optional key services) Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"17","title":"The Problem JACS Solves"},"170":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS\ncargo install --path jacs-cli","breadcrumbs":"Installation » From Source","id":"170","title":"From Source"},"171":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"171","title":"Verify Installation"},"172":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Installation » MCP Server","id":"172","title":"MCP Server"},"173":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"173","title":"Using as a Library"},"174":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"174","title":"With Optional Features"},"175":{"body":"Feature Description cli (Deprecated -- use cargo install jacs-cli instead) otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Installation » Available Features","id":"175","title":"Available Features"},"176":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"176","title":"Platform Support"},"177":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq2025, legacy pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"177","title":"WebAssembly Notes"},"178":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ./jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"178","title":"Configuration"},"179":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"179","title":"Manual Configuration"},"18":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"18","title":"JACS Core Philosophy"},"180":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq2025, legacy pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"180","title":"Environment Variables"},"181":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"181","title":"Troubleshooting"},"182":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"182","title":"Build Errors"},"183":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"183","title":"Runtime Errors"},"184":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"184","title":"Next Steps"},"185":{"body":"This page walks through common CLI workflows. For a complete command reference, see the CLI Command Reference . For practical scripting examples, see CLI Examples . The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Tutorial » CLI Tutorial","id":"185","title":"CLI Tutorial"},"186":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Tutorial » Getting Help","id":"186","title":"Getting Help"},"187":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks jacs mcp Start the built-in MCP server (stdio transport)","breadcrumbs":"CLI Tutorial » Commands Overview","id":"187","title":"Commands Overview"},"188":{"body":"","breadcrumbs":"CLI Tutorial » Initialization","id":"188","title":"Initialization"},"189":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Tutorial » Quick Start","id":"189","title":"Quick Start"},"19":{"body":"JACS is built specifically for AI agent communication patterns, while still being usable as a general-purpose signed JSON provenance layer. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"19","title":"🎯 Agent-First Design"},"190":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"CLI Tutorial » MCP Server","id":"190","title":"MCP Server"},"191":{"body":"","breadcrumbs":"CLI Tutorial » Configuration Commands","id":"191","title":"Configuration Commands"},"192":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Tutorial » Create Configuration","id":"192","title":"Create Configuration"},"193":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Tutorial » Read Configuration","id":"193","title":"Read Configuration"},"194":{"body":"","breadcrumbs":"CLI Tutorial » Agent Commands","id":"194","title":"Agent Commands"},"195":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Tutorial » Create Agent","id":"195","title":"Create Agent"},"196":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Tutorial » Verify Agent","id":"196","title":"Verify Agent"},"197":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Tutorial » DNS Commands","id":"197","title":"DNS Commands"},"198":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Tutorial » Lookup Agent","id":"198","title":"Lookup Agent"},"199":{"body":"","breadcrumbs":"CLI Tutorial » Task Commands","id":"199","title":"Task Commands"},"2":{"body":"Signed JSON and file envelopes with tamper detection Persistent agent identity with encrypted private keys Trust bootstrap primitives such as share_public_key, share_agent, and trust_agent_with_key A2A artifact signing and trust policies (open, verified, strict) MCP integration paths for ready-made servers, transport security, or tool registration Framework adapters for Python and Node.js ecosystems Multi-party agreements with quorum, timeout, and algorithm constraints Cross-language compatibility across Rust, Python, Node.js, and Go","breadcrumbs":"Introduction » What JACS Gives You","id":"2","title":"What JACS Gives You"},"20":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"20","title":"🔐 Trust Through Cryptography"},"200":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Tutorial » Create Task","id":"200","title":"Create Task"},"201":{"body":"","breadcrumbs":"CLI Tutorial » Document Commands","id":"201","title":"Document Commands"},"202":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Create Document","id":"202","title":"Create Document"},"203":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Tutorial » Update Document","id":"203","title":"Update Document"},"204":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Verify Document","id":"204","title":"Verify Document"},"205":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Tutorial » Extract Embedded Content","id":"205","title":"Extract Embedded Content"},"206":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Tutorial » Agreement Commands","id":"206","title":"Agreement Commands"},"207":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Tutorial » Environment Variables","id":"207","title":"Environment Variables"},"208":{"body":"","breadcrumbs":"CLI Tutorial » Common Workflows","id":"208","title":"Common Workflows"},"209":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Tutorial » Create and Sign a Document","id":"209","title":"Create and Sign a Document"},"21":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"21","title":"📋 Standards-Based"},"210":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Tutorial » Multi-Agent Agreement","id":"210","title":"Multi-Agent Agreement"},"211":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Tutorial » Verify Another Agent","id":"211","title":"Verify Another Agent"},"212":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Tutorial » Exit Codes","id":"212","title":"Exit Codes"},"213":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Tutorial » Next Steps","id":"213","title":"Next Steps"},"214":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"214","title":"Creating an Agent"},"215":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"215","title":"What is an Agent?"},"216":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"216","title":"Creating Your First Agent"},"217":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"217","title":"Quick Method (Recommended)"},"218":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"218","title":"Manual Method"},"219":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"Engaging, accurate content delivered\", \"failureDescription\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"219","title":"With Custom Agent Definition"},"22":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"22","title":"Key Concepts"},"220":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"220","title":"Agent Types"},"221":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"name\": \"data-processing\", \"serviceDescription\": \"Process and transform data\", \"successDescription\": \"Data transformed successfully\", \"failureDescription\": \"Input data could not be processed\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"221","title":"AI Agent Example"},"222":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@example.com\", \"isPrimary\": true } ], \"jacsServices\": [ { \"name\": \"code-review\", \"serviceDescription\": \"Review code for quality and security\", \"successDescription\": \"Actionable review delivered\", \"failureDescription\": \"Could not complete review\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"222","title":"Human Agent Example"},"223":{"body":"Services define what an agent can do. Each service has: { \"name\": \"service-identifier\", \"serviceDescription\": \"What the service does\", \"successDescription\": \"Definition of successful completion\", \"failureDescription\": \"What constitutes failure\"\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"223","title":"Agent Services"},"224":{"body":"{ \"name\": \"document-processing\", \"serviceDescription\": \"Process and analyze documents\", \"successDescription\": \"Documents processed accurately\", \"failureDescription\": \"Unable to process one or more documents\", \"costDescription\": \"Usage-based pricing\", \"privacyPolicy\": \"https://example.com/privacy\", \"termsOfService\": \"https://example.com/terms\"\n}","breadcrumbs":"Creating an Agent » Detailed Service Example","id":"224","title":"Detailed Service Example"},"225":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"firstName\": \"Example\", \"lastName\": \"Agent\", \"email\": \"agent@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"225","title":"Agent Contacts"},"226":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"226","title":"Cryptographic Keys"},"227":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq2025 Post-quantum ML-DSA-87 signatures Future-proof security pq-dilithium Legacy post-quantum signatures Backward compatibility only (deprecated)","breadcrumbs":"Creating an Agent » Key Algorithms","id":"227","title":"Key Algorithms"},"228":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"228","title":"Configure Key Algorithm"},"229":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"229","title":"Key Storage"},"23":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"23","title":"Agents"},"230":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"230","title":"Verifying Agents"},"231":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"231","title":"Verify Your Own Agent"},"232":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"232","title":"Verify a Specific Agent File"},"233":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"233","title":"With DNS Verification"},"234":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"234","title":"Updating Agents"},"235":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"High-quality content generated\", \"failureDescription\": \"Unable to generate requested content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"235","title":"Agent Document Structure"},"236":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"236","title":"Best Practices"},"237":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"237","title":"Security"},"238":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"238","title":"Agent Design"},"239":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"239","title":"Operations"},"24":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"24","title":"Documents"},"240":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"240","title":"Next Steps"},"241":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"241","title":"Working with Documents"},"242":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"242","title":"What is a JACS Document?"},"243":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"243","title":"Creating Documents"},"244":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"244","title":"From a JSON File"},"245":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"245","title":"From a Directory"},"246":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"246","title":"With Custom Schema"},"247":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"247","title":"Output Options"},"248":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"248","title":"Document Structure"},"249":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"249","title":"Required Header Fields"},"25":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"25","title":"Tasks"},"250":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"250","title":"Document Levels"},"251":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"251","title":"File Attachments"},"252":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"252","title":"Attach Files"},"253":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"253","title":"Embed vs. Reference"},"254":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"254","title":"Attachment Structure"},"255":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"255","title":"Verifying Documents"},"256":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"256","title":"Basic Verification"},"257":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"257","title":"Verify with Schema"},"258":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"258","title":"Verify Directory"},"259":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"259","title":"Verbose Output"},"26":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"26","title":"Agreements"},"260":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"260","title":"Updating Documents"},"261":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"261","title":"Update with Attachments"},"262":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"262","title":"Extracting Embedded Content"},"263":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"263","title":"Document Types"},"264":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"264","title":"Task Documents"},"265":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"265","title":"Message Documents"},"266":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"266","title":"Custom Documents"},"267":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"267","title":"Version History"},"268":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"268","title":"Working with Multiple Agents"},"269":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"269","title":"Different Agent Signs Document"},"27":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"27","title":"How JACS Works"},"270":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"270","title":"Verify Document from Unknown Agent"},"271":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"271","title":"Best Practices"},"272":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"272","title":"Document Design"},"273":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"273","title":"Security"},"274":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"274","title":"Performance"},"275":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"275","title":"Common Workflows"},"276":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"276","title":"Create and Share Document"},"277":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"277","title":"Track Document Changes"},"278":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"278","title":"Process Multiple Documents"},"279":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"279","title":"Next Steps"},"28":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"28","title":"Real-World Examples"},"280":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"280","title":"Creating and Using Agreements"},"281":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"281","title":"What is an Agreement?"},"282":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"282","title":"Agreement Lifecycle"},"283":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"283","title":"Creating Agreements"},"284":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"284","title":"Basic Agreement"},"285":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"285","title":"With Context"},"286":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"286","title":"Signing Agreements"},"287":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"287","title":"Sign as Current Agent"},"288":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"288","title":"Sign as Different Agent"},"289":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"289","title":"Sign with Response"},"29":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"29","title":"🤖 AI Content Pipeline"},"290":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"290","title":"Checking Agreement Status"},"291":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"291","title":"Check if Complete"},"292":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"292","title":"Agreement Structure"},"293":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"293","title":"Task Agreements"},"294":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"294","title":"Multi-Agent Workflow Example"},"295":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"295","title":"Agreement Hash"},"296":{"body":"","breadcrumbs":"Creating and Using Agreements » Agreement Options (v0.6.2+)","id":"296","title":"Agreement Options (v0.6.2+)"},"297":{"body":"Set a deadline after which the agreement expires: # Python\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id], timeout=\"2025-12-31T23:59:59Z\"\n) If the deadline passes before all required signatures are collected, check_agreement() returns an error.","breadcrumbs":"Creating and Using Agreements » Timeout","id":"297","title":"Timeout"},"298":{"body":"Require only a subset of agents to sign: # Only 2 of 3 agents need to sign\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id, carol.agent_id], quorum=2\n) When quorum is met, check_agreement() succeeds even if some agents haven't signed.","breadcrumbs":"Creating and Using Agreements » Quorum (M-of-N Signing)","id":"298","title":"Quorum (M-of-N Signing)"},"299":{"body":"Enforce that only specific cryptographic algorithms can be used: # Only post-quantum algorithms allowed\nagreement = client.create_agreement( document=proposal, agent_ids=agent_ids, required_algorithms=[\"pq2025\", \"pq-dilithium\"], minimum_strength=\"post-quantum\"\n) An agent using RSA-PSS or Ed25519 will be rejected when trying to sign this agreement.","breadcrumbs":"Creating and Using Agreements » Algorithm Constraints","id":"299","title":"Algorithm Constraints"},"3":{"body":"If you are choosing where to start: Which Integration? Use Cases MCP Overview A2A Interoperability Python Framework Adapters Node.js LangChain.js","breadcrumbs":"Introduction » Best Entry Points","id":"3","title":"Best Entry Points"},"30":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"30","title":"📊 Data Processing Workflow"},"300":{"body":"agreement = client.create_agreement( document={\"proposal\": \"Deploy model v2\"}, agent_ids=[alice.agent_id, bob.agent_id, mediator.agent_id], question=\"Do you approve deployment?\", timeout=\"2025-06-30T00:00:00Z\", quorum=2, minimum_strength=\"post-quantum\"\n)","breadcrumbs":"Creating and Using Agreements » Combined Options","id":"300","title":"Combined Options"},"301":{"body":"For running multiple agents in one process, use JacsClient instead of the module-level API:","breadcrumbs":"Creating and Using Agreements » Using JacsClient (Instance-Based API)","id":"301","title":"Using JacsClient (Instance-Based API)"},"302":{"body":"from jacs.client import JacsClient alice = JacsClient.ephemeral(\"ring-Ed25519\") # for testing\nbob = JacsClient.ephemeral(\"ring-Ed25519\") signed = alice.sign_message({\"action\": \"approve\"})\n# alice.agent_id, bob.agent_id are unique See the full example: examples/multi_agent_agreement.py","breadcrumbs":"Creating and Using Agreements » Python","id":"302","title":"Python"},"303":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const alice = JacsClient.ephemeral('ring-Ed25519');\nconst bob = JacsClient.ephemeral('ring-Ed25519'); const signed = alice.signMessage({ action: 'approve' }); See the full example: examples/multi_agent_agreement.ts","breadcrumbs":"Creating and Using Agreements » Node.js","id":"303","title":"Node.js"},"304":{"body":"The JACS MCP server exposes agreement tools that LLMs can use directly: Tool Description jacs_create_agreement Create agreement with quorum, timeout, algorithm constraints jacs_sign_agreement Co-sign an agreement jacs_check_agreement Check status: who signed, quorum met, expired See MCP Integration for setup.","breadcrumbs":"Creating and Using Agreements » MCP Tools for Agreements","id":"304","title":"MCP Tools for Agreements"},"305":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree Use quorum for resilience : Don't require unanimous consent unless necessary Set timeouts : Prevent agreements from hanging indefinitely Enforce post-quantum for sensitive agreements : Use minimum_strength: \"post-quantum\" for long-term security","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"305","title":"Best Practices"},"306":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security Multi-Agent Agreement Example (Python) Multi-Agent Agreement Example (Node.js)","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"306","title":"Next Steps"},"307":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"307","title":"DNS-Based Agent Verification"},"308":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"308","title":"Overview"},"309":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider DNS verification is also a practical bridge for DID-style deployments: you can publish DID metadata for discovery while using DNS TXT + JACS signature verification as the operational trust anchor. No blockchain is required for this model.","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"309","title":"Why DNS Verification?"},"31":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"31","title":"🔍 Multi-Agent Analysis"},"310":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"310","title":"Publishing Agent Identity"},"311":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"311","title":"Generate DNS Commands"},"312":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"312","title":"Provider-Specific Formats"},"313":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"313","title":"DNS Record Structure"},"314":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"314","title":"Setting Up with Route 53 (AWS)"},"315":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"315","title":"Setting Up with Cloudflare"},"316":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"316","title":"Setting Up with Azure DNS"},"317":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"317","title":"Verifying Agents with DNS"},"318":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"318","title":"Look Up Another Agent"},"319":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"319","title":"Verify Agent with DNS"},"32":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ⚠️ Schema-native (lifecycle via integrations) ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent JACS provides signed artifacts, schemas, trust primitives, and auditability. Real-time transport and task orchestration are handled by integrations (e.g., A2A, MCP, HTTP server layers).","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"32","title":"Benefits Over Alternatives"},"320":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"320","title":"DNS Validation Modes"},"321":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"321","title":"Agent Domain Configuration"},"322":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"322","title":"DNSSEC Requirements"},"323":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"323","title":"Checking DNSSEC Status"},"324":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"324","title":"Security Considerations"},"325":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"325","title":"Trust Model"},"326":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"326","title":"Best Practices"},"327":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"327","title":"Caching"},"328":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"328","title":"Troubleshooting"},"329":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"329","title":"\"DNS record not found\""},"33":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"33","title":"When to Use JACS"},"330":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"330","title":"\"DNSSEC validation failed\""},"331":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"331","title":"\"Fingerprint mismatch\""},"332":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"332","title":"Integration with CI/CD"},"333":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"333","title":"Next Steps"},"334":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"334","title":"Rust Library API"},"335":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"335","title":"Adding JACS as a Dependency"},"336":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Rust Library API » Feature Flags","id":"336","title":"Feature Flags"},"337":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"337","title":"Core Types"},"338":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"338","title":"Agent"},"339":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"339","title":"JACSDocument"},"34":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"34","title":"Next Steps"},"340":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"340","title":"Creating an Agent"},"341":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"341","title":"Minimal Agent"},"342":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"342","title":"Loading by Configuration"},"343":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"343","title":"DNS Strict Mode"},"344":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"344","title":"Working with Documents"},"345":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"345","title":"Creating Documents"},"346":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"346","title":"Creating Documents with Attachments"},"347":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"347","title":"Loading Documents"},"348":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"348","title":"Updating Documents"},"349":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"349","title":"Verifying Documents"},"35":{"body":"Choose the smallest supported integration that matches your deployment.","breadcrumbs":"Which Integration? » Which JACS Path Should I Use?","id":"35","title":"Which JACS Path Should I Use?"},"350":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"350","title":"Saving Documents"},"351":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"351","title":"Creating Tasks"},"352":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"352","title":"Signing and Verification"},"353":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"353","title":"Signing Documents"},"354":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"354","title":"Verification"},"355":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"355","title":"Custom Schema Validation"},"356":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"356","title":"Configuration"},"357":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"357","title":"Loading Configuration"},"358":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"358","title":"Accessing Configuration"},"359":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"359","title":"Observability"},"36":{"body":"If you need... Start here Why Signed tool outputs inside LangChain / LangGraph on Python Python Framework Adapters Smallest path: sign tool results without adding MCP Signed tool outputs inside LangChain.js / LangGraph on Node Node.js LangChain.js Same idea for TypeScript A ready-made local MCP server for Claude, Codex, or another MCP client MCP Overview and jacs-mcp Fastest full server path To secure your existing MCP server/client code Python MCP or Node.js MCP Use wrappers or transport proxies around code you already have Cross-organization agent discovery and signed artifact exchange A2A Interoperability MCP is not enough for this boundary Signed HTTP APIs without adopting MCP Python Framework Adapters , Express , Koa Sign requests or responses at the web layer Multi-party approval or quorum workflows Multi-Agent Agreements Agreements are the right primitive, not just one-off signatures Direct signing from scripts, jobs, or services Quick Start , Python Basic Usage , Node Basic Usage , Go Installation Start from sign/verify before adding framework layers","breadcrumbs":"Which Integration? » Start Here","id":"36","title":"Start Here"},"360":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"360","title":"Initialize Default Observability"},"361":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"361","title":"Custom Observability Configuration"},"362":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // AWS object storage\nlet storage = MultiStorage::new(\"aws\".to_string())?; For signed document CRUD/search, prefer the unified DocumentService surface: use jacs::document::service_from_agent; let docs = service_from_agent(agent_handle)?;\n// `fs` and `rusqlite` currently resolve in JACS core.","breadcrumbs":"Rust Library API » Storage Backends","id":"362","title":"Storage Backends"},"363":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"363","title":"Error Handling"},"364":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"364","title":"Thread Safety"},"365":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"365","title":"Complete Example"},"366":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"366","title":"Next Steps"},"367":{"body":"This page covers the Rust-specific observability API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig, and related types. For a cross-language guide covering structured events, OTEL collector setup, and monitoring backend integration, see the Observability & Monitoring Guide . JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your Rust applications.","breadcrumbs":"Observability (Rust API) » Observability (Rust API)","id":"367","title":"Observability (Rust API)"},"368":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability (Rust API) » Overview","id":"368","title":"Overview"},"369":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support Convenience helpers for recording operations are always available (no feature flag needed).","breadcrumbs":"Observability (Rust API) » Feature Flags","id":"369","title":"Feature Flags"},"37":{"body":"Everything stays inside one service you control and your own logs are enough You only need integrity, not signer identity or third-party verification A plain checksum or database audit log already satisfies the requirement","breadcrumbs":"Which Integration? » When You Probably Do Not Need JACS","id":"37","title":"When You Probably Do Not Need JACS"},"370":{"body":"","breadcrumbs":"Observability (Rust API) » Quick Start","id":"370","title":"Quick Start"},"371":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability (Rust API) » Default Configuration","id":"371","title":"Default Configuration"},"372":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability (Rust API) » Custom Configuration","id":"372","title":"Custom Configuration"},"373":{"body":"","breadcrumbs":"Observability (Rust API) » Logging","id":"373","title":"Logging"},"374":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability (Rust API) » Log Levels","id":"374","title":"Log Levels"},"375":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability (Rust API) » Log Destinations","id":"375","title":"Log Destinations"},"376":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability (Rust API) » Using Logs","id":"376","title":"Using Logs"},"377":{"body":"","breadcrumbs":"Observability (Rust API) » Metrics","id":"377","title":"Metrics"},"378":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Enabling Metrics","id":"378","title":"Enabling Metrics"},"379":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability (Rust API) » Metrics Destinations","id":"379","title":"Metrics Destinations"},"38":{"body":"Prototype with quickstart and simple sign/verify calls. Attach provenance at the boundary that already exists in your system: LangChain tool, FastAPI response, MCP call, or A2A artifact. Add trust policy only when other agents or organizations enter the picture. Add agreements, DNS, or attestations only if your deployment actually needs them. The mistake to avoid is starting with the broadest story. Start with the boundary you need to secure now.","breadcrumbs":"Which Integration? » Recommended Adoption Order","id":"38","title":"Recommended Adoption Order"},"380":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability (Rust API) » Recording Metrics","id":"380","title":"Recording Metrics"},"381":{"body":"JACS convenience helpers automatically record: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability (Rust API) » Built-in Metrics","id":"381","title":"Built-in Metrics"},"382":{"body":"","breadcrumbs":"Observability (Rust API) » Distributed Tracing","id":"382","title":"Distributed Tracing"},"383":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability (Rust API) » Enabling Tracing","id":"383","title":"Enabling Tracing"},"384":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Tracing Destinations","id":"384","title":"Tracing Destinations"},"385":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability (Rust API) » Sampling Configuration","id":"385","title":"Sampling Configuration"},"386":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability (Rust API) » Using Tracing Spans","id":"386","title":"Using Tracing Spans"},"387":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability (Rust API) » Configuration File","id":"387","title":"Configuration File"},"388":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability (Rust API) » OpenTelemetry Collector Setup","id":"388","title":"OpenTelemetry Collector Setup"},"389":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability (Rust API) » Reset and Cleanup","id":"389","title":"Reset and Cleanup"},"39":{"body":"This chapter stays close to current product use, not roadmap integrations.","breadcrumbs":"Use cases » Use Cases","id":"39","title":"Use Cases"},"390":{"body":"","breadcrumbs":"Observability (Rust API) » Best Practices","id":"390","title":"Best Practices"},"391":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability (Rust API) » Development","id":"391","title":"Development"},"392":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability (Rust API) » Production","id":"392","title":"Production"},"393":{"body":"","breadcrumbs":"Observability (Rust API) » Troubleshooting","id":"393","title":"Troubleshooting"},"394":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability (Rust API) » Logs Not Appearing","id":"394","title":"Logs Not Appearing"},"395":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability (Rust API) » Metrics Not Exporting","id":"395","title":"Metrics Not Exporting"},"396":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability (Rust API) » Traces Missing","id":"396","title":"Traces Missing"},"397":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability (Rust API) » Next Steps","id":"397","title":"Next Steps"},"398":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"398","title":"Node.js Installation"},"399":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"399","title":"Requirements"},"4":{"body":"","breadcrumbs":"Introduction » Implementations","id":"4","title":"Implementations"},"40":{"body":"Use this when: Claude Desktop, Codex, or another MCP client is calling tools that should not run on blind trust. Recommended JACS path: Use jacs-mcp if you want a full server immediately Use Python MCP Integration or Node.js MCP Integration if you already have server code What JACS adds: Signed JSON-RPC messages Fail-closed verification by default Agent identity and auditability for tool calls","breadcrumbs":"Use cases » 1. Secure A Local MCP Tool Server","id":"40","title":"1. Secure A Local MCP Tool Server"},"400":{"body":"","breadcrumbs":"Installation » Installation","id":"400","title":"Installation"},"401":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"401","title":"Using npm"},"402":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"402","title":"Using yarn"},"403":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"403","title":"Using pnpm"},"404":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality (async API)\ntry { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"404","title":"Verify Installation"},"405":{"body":"The @hai.ai/jacs package exposes these entry points:","breadcrumbs":"Installation » Package Structure","id":"405","title":"Package Structure"},"406":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';\nimport * as jacs from '@hai.ai/jacs/simple'; // quickstart, load, signMessage, verify, etc.","breadcrumbs":"Installation » Core and simple API","id":"406","title":"Core and simple API"},"407":{"body":"import { JacsClient } from '@hai.ai/jacs/client';","breadcrumbs":"Installation » Instance-based client (recommended for new code)","id":"407","title":"Instance-based client (recommended for new code)"},"408":{"body":"import { createJACSTransportProxy, createJACSTransportProxyAsync, registerJacsTools } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP (@hai.ai/jacs/mcp)","id":"408","title":"MCP (@hai.ai/jacs/mcp)"},"409":{"body":"import { jacsMiddleware } from '@hai.ai/jacs/express';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa';\nimport { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http'; // legacy","breadcrumbs":"Installation » HTTP / framework adapters","id":"409","title":"HTTP / framework adapters"},"41":{"body":"Use this when: your model already runs inside LangChain or LangGraph and you want signed tool outputs without introducing MCP. Recommended JACS path: Python Framework Adapters Node.js LangChain.js What JACS adds: Signed tool results Optional strict mode at the adapter boundary Minimal changes to existing framework code","breadcrumbs":"Use cases » 2. Add Provenance To LangChain Or LangGraph","id":"41","title":"2. Add Provenance To LangChain Or LangGraph"},"410":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"410","title":"TypeScript Support"},"411":{"body":"","breadcrumbs":"Installation » Configuration","id":"411","title":"Configuration"},"412":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"412","title":"Basic Configuration"},"413":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"413","title":"Configuration File"},"414":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"414","title":"Environment Variables"},"415":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"415","title":"Storage Backends"},"416":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"416","title":"File System (Default)"},"417":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"417","title":"Local Indexed SQLite"},"418":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"418","title":"AWS Storage"},"419":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"419","title":"Memory Storage (Testing)"},"42":{"body":"Use this when: one agent produces work that another organization, service, or team must verify before acting on it. Recommended JACS path: A2A Interoperability A2A Quickstart What JACS adds: Agent Cards with JACS provenance metadata Signed A2A artifacts Trust policies for admission control","breadcrumbs":"Use cases » 3. Exchange Signed Artifacts Across Organizations","id":"42","title":"3. Exchange Signed Artifacts Across Organizations"},"420":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"420","title":"Cryptographic Algorithms"},"421":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"421","title":"ring-Ed25519 (Recommended)"},"422":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"422","title":"RSA-PSS"},"423":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"423","title":"pq-dilithium (Post-Quantum)"},"424":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"424","title":"pq2025 (Post-Quantum Hybrid)"},"425":{"body":"","breadcrumbs":"Installation » Development Setup","id":"425","title":"Development Setup"},"426":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"426","title":"Project Structure"},"427":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"427","title":"Package.json Setup"},"428":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; async function main() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\" }); const signedDoc = await agent.createDocument(documentJson); console.log('Document created:', signedDoc); const isValid = await agent.verifyDocument(signedDoc); console.log('Document valid:', isValid); console.log('JACS agent ready!');\n}\nmain().catch(console.error);","breadcrumbs":"Installation » Basic Application","id":"428","title":"Basic Application"},"429":{"body":"","breadcrumbs":"Installation » Common Issues","id":"429","title":"Common Issues"},"43":{"body":"Use this when: the boundary is an API route, not an MCP transport. Recommended JACS path: Python Framework Adapters for FastAPI Express Middleware Koa Middleware What JACS adds: Signed JSON responses Verified inbound requests A clean upgrade path to A2A discovery on the same app boundary","breadcrumbs":"Use cases » 4. Sign HTTP Or API Boundaries Without MCP","id":"43","title":"4. Sign HTTP Or API Boundaries Without MCP"},"430":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"430","title":"Module Not Found"},"431":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"431","title":"Permission Errors"},"432":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"432","title":"Binary Compatibility"},"433":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"433","title":"TypeScript Issues"},"434":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"434","title":"Next Steps"},"435":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"435","title":"Examples"},"436":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"436","title":"Simplified API"},"437":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended -- does not block the event loop)\nconst signed = await jacs.signMessage({ action: 'approve' }); // Sync (blocks event loop, use in scripts or CLI tools)\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Simplified API » v0.7.0: Async-First API","id":"437","title":"v0.7.0: Async-First API"},"438":{"body":"Quickstart -- one call (with required name/domain) to start signing: const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass { algorithm: 'ring-Ed25519' } to override the default (pq2025). To load an existing agent explicitly, use load() instead: const agent = await jacs.load('./jacs.config.json');\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });","breadcrumbs":"Simplified API » Quick Start","id":"438","title":"Quick Start"},"439":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"439","title":"When to Use the Simplified API"},"44":{"body":"Use this when: multiple agents must sign off on the same document, deployment, or decision. Recommended JACS path: Multi-Agent Agreements Rust Agreements What JACS adds: M-of-N quorum Timeout and algorithm constraints Verifiable signature chain across signers","breadcrumbs":"Use cases » 5. Run Multi-Agent Approval Workflows","id":"44","title":"5. Run Multi-Agent Approval Workflows"},"440":{"body":"Every function that calls into NAPI has both async (default) and sync variants: Function Sync Variant Description quickstart(options) quickstartSync(options) Create a persistent agent with keys on disk create(options) createSync(options) Create a new agent programmatically load(configPath) loadSync(configPath) Load agent from config file verifySelf() verifySelfSync() Verify agent's own integrity updateAgent(data) updateAgentSync(data) Update agent document updateDocument(id, data) updateDocumentSync(id, data) Update existing document signMessage(data) signMessageSync(data) Sign any JSON data signFile(path, embed) signFileSync(path, embed) Sign a file verify(doc) verifySync(doc) Verify signed document verifyById(id) verifyByIdSync(id) Verify by storage ID reencryptKey(old, new) reencryptKeySync(old, new) Re-encrypt private key createAgreement(doc, ids, ...) createAgreementSync(doc, ids, ...) Create multi-party agreement signAgreement(doc) signAgreementSync(doc) Sign an agreement checkAgreement(doc) checkAgreementSync(doc) Check agreement status audit(options?) auditSync(options?) Run a security audit Pure sync functions (no NAPI call, no suffix needed): Function Description verifyStandalone(doc, opts?) Verify without loading an agent getPublicKey() Get public key isLoaded() Check if agent is loaded getDnsRecord(domain, ttl?) Get DNS TXT record getWellKnownJson() Get well-known JSON trustAgent(json) Add agent to trust store listTrustedAgents() List trusted agent IDs untrustAgent(id) Remove from trust store isTrusted(id) Check if agent is trusted getTrustedAgent(id) Get trusted agent's JSON generateVerifyLink(doc, baseUrl?) Generate verification URL","breadcrumbs":"Simplified API » API Reference","id":"440","title":"API Reference"},"441":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Node quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before signMessage() or verify(). Parameters: options (object, required fields): { name: string, domain: string, description?: string, algorithm?: string, configPath?: string }. Default algorithm: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". Returns: Promise (async) or AgentInfo (sync) const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config path: ${info.configPath}`);\nconsole.log(`Public key: ${info.publicKeyPath}`);\nconsole.log(`Private key: ${info.privateKeyPath}`); // Or with a specific algorithm\nconst info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n}); // Sync variant (blocks event loop)\nconst info = jacs.quickstartSync({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n});","breadcrumbs":"Simplified API » quickstart(options)","id":"441","title":"quickstart(options)"},"442":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(options) when you want to load a specific config file explicitly. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: Promise (async) or AgentInfo (sync) const info = await jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`); // Sync variant\nconst info = jacs.loadSync('./jacs.config.json');","breadcrumbs":"Simplified API » load(configPath?)","id":"442","title":"load(configPath?)"},"443":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { await jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"443","title":"isLoaded()"},"444":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"444","title":"getAgentInfo()"},"445":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: Promise (async) or VerificationResult (sync) Throws: Error if no agent is loaded const result = await jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"445","title":"verifySelf()"},"446":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: Promise (async) or SignedDocument (sync) Throws: Error if no agent is loaded // Async (recommended)\nconst signed = await jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); // Sync\nconst signed = jacs.signMessageSync({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"446","title":"signMessage(data)"},"447":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: Promise (async) or SignedDocument (sync) // Reference only (stores hash)\nconst signed = await jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = await jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"447","title":"signFile(filePath, embed?)"},"448":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: Promise (async) or VerificationResult (sync) const result = await jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"448","title":"verify(signedDocument)"},"449":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (always sync -- no NAPI call) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"449","title":"verifyStandalone(signedDocument, options?)"},"45":{"body":"Use this when: you need an artifact to stay verifiable after it leaves the process that created it. Recommended JACS path: Verifying Signed Documents Working with Documents Python Basic Usage Node.js Basic Usage What JACS adds: Self-contained signed envelopes Re-verification at read time Cross-language interoperability","breadcrumbs":"Use cases » 6. Keep Signed Files Or JSON As Durable Artifacts","id":"45","title":"6. Keep Signed Files Or JSON As Durable Artifacts"},"450":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Promise (async) or object (sync) See Security Model -- Security Audit for full details and options. const result = await jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"450","title":"audit(options?)"},"451":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: Promise (async) or string (sync) -- The updated and re-signed agent document const agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'hybrid';\nconst updated = await jacs.updateAgent(agentDoc);","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"451","title":"updateAgent(newAgentData)"},"452":{"body":"Update an existing document with new data and re-sign it. Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: Promise (async) or SignedDocument (sync) const original = await jacs.signMessage({ status: 'pending', amount: 100 });\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved';\nconst updated = await jacs.updateDocument(original.documentId, doc);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"452","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"453":{"body":"Export the current agent document for sharing or inspection. Returns: string -- The agent JSON document (pure sync, no suffix needed) const agentDoc = jacs.exportAgent();\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"453","title":"exportAgent()"},"454":{"body":"Return the DNS TXT record line for the loaded agent. Pure sync, no suffix needed. Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"454","title":"getDnsRecord(domain, ttl?)"},"455":{"body":"Return the well-known JSON object for the loaded agent. Pure sync, no suffix needed. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"455","title":"getWellKnownJson()"},"456":{"body":"Get the loaded agent's public key in PEM format. Pure sync, no suffix needed. Returns: string -- PEM-encoded public key const pem = jacs.getPublicKey();\nconsole.log(pem);","breadcrumbs":"Simplified API » getPublicKey()","id":"456","title":"getPublicKey()"},"457":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"457","title":"Type Definitions"},"458":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"458","title":"AgentInfo"},"459":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"459","title":"SignedDocument"},"46":{"body":"Use this when: external systems need to verify your agent identity but you do not want a shared auth server in the middle. Recommended JACS path: DNS-Based Verification DNS Trust Anchoring What JACS adds: Public key fingerprint anchoring DNS-based verification flows Local private-key custody","breadcrumbs":"Use cases » 7. Publish Public Identity Without A Central Auth Service","id":"46","title":"7. Publish Public Identity Without A Central Auth Service"},"460":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"460","title":"VerificationResult"},"461":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"461","title":"Attachment"},"462":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = await jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = await jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = await jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = await jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = await jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nconst updatedAgent = await jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"462","title":"Complete Example"},"463":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\nawait jacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = await jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"463","title":"MCP Integration"},"464":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { await jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded await jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { await jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = await jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"464","title":"Error Handling"},"465":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"465","title":"See Also"},"466":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"466","title":"Basic Usage"},"467":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"Basic Usage » v0.7.0: Async-First API","id":"467","title":"v0.7.0: Async-First API"},"468":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"468","title":"Initializing an Agent"},"469":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Or use sync variant\nagent.loadSync('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"469","title":"Create and Load Agent"},"47":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"47","title":"Core Concepts"},"470":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"470","title":"Configuration File"},"471":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"471","title":"Creating Documents"},"472":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = await agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"472","title":"Basic Document Creation"},"473":{"body":"Validate against a custom JSON Schema: const signedDocument = await agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"473","title":"With Custom Schema"},"474":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"474","title":"With Output File"},"475":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"475","title":"Without Saving"},"476":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"476","title":"With Attachments"},"477":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"477","title":"Verifying Documents"},"478":{"body":"// Verify a document's signature and hash\nconst isValid = await agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"478","title":"Verify Document Signature"},"479":{"body":"// Verify with a custom signature field\nconst isValid = await agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"479","title":"Verify Specific Signature Field"},"48":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"48","title":"Agents"},"480":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"480","title":"Updating Documents"},"481":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"481","title":"Update Existing Document"},"482":{"body":"const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"482","title":"Update with New Attachments"},"483":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"483","title":"Signing and Verification"},"484":{"body":"// Sign any string data\nconst signature = await agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"484","title":"Sign Arbitrary Data"},"485":{"body":"// Verify a signature on string data\nconst isValid = await agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"485","title":"Verify Arbitrary Data"},"486":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"486","title":"Working with Agreements"},"487":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = await agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"487","title":"Create an Agreement"},"488":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = await agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"488","title":"Sign an Agreement"},"489":{"body":"// Check which agents have signed\nconst status = await agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"489","title":"Check Agreement Status"},"49":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"49","title":"Agent Identity"},"490":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"490","title":"Agent Operations"},"491":{"body":"// Verify the loaded agent's signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent valid:', isValid);","breadcrumbs":"Basic Usage » Verify Agent","id":"491","title":"Verify Agent"},"492":{"body":"// Update agent document\nconst updatedAgentJson = await agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"492","title":"Update Agent"},"493":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = await agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"493","title":"Sign External Agent"},"494":{"body":"These methods remain synchronous (V8-thread-only, no Sync suffix):","breadcrumbs":"Basic Usage » Request/Response Signing","id":"494","title":"Request/Response Signing"},"495":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"495","title":"Sign a Request"},"496":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"496","title":"Verify a Response"},"497":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"497","title":"Utility Functions"},"498":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"498","title":"Hash String"},"499":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"499","title":"Create Configuration"},"5":{"body":"Deepest feature surface CLI plus library APIs Best fit when you want a ready-made MCP server via jacs mcp","breadcrumbs":"Introduction » Rust","id":"5","title":"Rust"},"50":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"50","title":"Agent Lifecycle"},"500":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { await agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = await agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = await agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"500","title":"Error Handling"},"501":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = await agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (await agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = await agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = await agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = await agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"501","title":"Complete Example"},"502":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"502","title":"Next Steps"},"503":{"body":"Node has two MCP stories: Wrap an MCP transport with signing and verification Register JACS operations as MCP tools on an existing server If you want a full out-of-the-box server instead, prefer the Rust jacs-mcp binary.","breadcrumbs":"MCP Integration (Node.js) » MCP Integration (Node.js)","id":"503","title":"MCP Integration (Node.js)"},"504":{"body":"npm install @hai.ai/jacs @modelcontextprotocol/sdk","breadcrumbs":"MCP Integration (Node.js) » Install","id":"504","title":"Install"},"505":{"body":"Use this when you already have an MCP server or client and want signed JSON-RPC messages.","breadcrumbs":"MCP Integration (Node.js) » 1. Wrap A Transport","id":"505","title":"1. Wrap A Transport"},"506":{"body":"import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server');","breadcrumbs":"MCP Integration (Node.js) » With a loaded client","id":"506","title":"With a loaded client"},"507":{"body":"import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); createJACSTransportProxy() does not take a config path. Use the async factory when the agent is not already loaded.","breadcrumbs":"MCP Integration (Node.js) » With only a config path","id":"507","title":"With only a config path"},"508":{"body":"Use this when the model should explicitly call JACS operations such as signing, verification, agreement creation, or trust-store inspection. import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The registered tool set includes: document signing and verification agreement helpers audit and agent-info helpers trust-store helpers setup and registry helper stubs For lower-level integration, use getJacsMcpToolDefinitions() plus handleJacsMcpToolCall().","breadcrumbs":"MCP Integration (Node.js) » 2. Register JACS Tools On Your MCP Server","id":"508","title":"2. Register JACS Tools On Your MCP Server"},"509":{"body":"The transport proxy is not permissive by default. Signing or verification failures fail closed unless you explicitly pass allowUnsignedFallback: true createJACSTransportProxy() expects a real JacsClient or JacsAgent, not an unloaded shell","breadcrumbs":"MCP Integration (Node.js) » Failure Behavior","id":"509","title":"Failure Behavior"},"51":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"51","title":"Verification: load() vs verify_standalone()"},"510":{"body":"import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const server = new McpServer({ name: 'my-server', version: '1.0.0' });\nconst transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); await server.connect(secureTransport); For stdio servers, keep logs on stderr, not stdout.","breadcrumbs":"MCP Integration (Node.js) » Common Pattern","id":"510","title":"Common Pattern"},"511":{"body":"jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js jacsnpm/examples/mcp.sse.server.js jacsnpm/examples/mcp.sse.client.js","breadcrumbs":"MCP Integration (Node.js) » Example Paths In This Repo","id":"511","title":"Example Paths In This Repo"},"512":{"body":"Choose LangChain.js Integration instead when: the model and tools already live in the same Node.js process you only need signed tool outputs, not an MCP boundary you do not need other MCP clients to connect","breadcrumbs":"MCP Integration (Node.js) » When To Use LangChain Instead","id":"512","title":"When To Use LangChain Instead"},"513":{"body":"Use the LangChain.js adapter when the model already runs inside your Node.js app and you want provenance at the tool boundary.","breadcrumbs":"LangChain.js » LangChain.js Integration","id":"513","title":"LangChain.js Integration"},"514":{"body":"","breadcrumbs":"LangChain.js » Choose The Pattern","id":"514","title":"Choose The Pattern"},"515":{"body":"Use createJacsTools() when the model should explicitly ask to sign, verify, inspect trust, or create agreements. import { JacsClient } from '@hai.ai/jacs/client';\nimport { createJacsTools } from '@hai.ai/jacs/langchain'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const jacsTools = createJacsTools({ client });\nconst llmWithTools = model.bindTools([...myTools, ...jacsTools]); The tool set includes 14 tools: jacs_sign jacs_verify jacs_create_agreement jacs_sign_agreement jacs_check_agreement jacs_verify_self jacs_trust_agent jacs_trust_agent_with_key jacs_list_trusted jacs_is_trusted jacs_share_public_key jacs_share_agent jacs_audit jacs_agent_info","breadcrumbs":"LangChain.js » Give The Agent JACS Tools","id":"515","title":"Give The Agent JACS Tools"},"516":{"body":"Use this when the model should keep using your existing tool set but every result needs a signature. Wrap one tool: import { signedTool } from '@hai.ai/jacs/langchain'; const signed = signedTool(mySearchTool, { client }); Wrap a LangGraph ToolNode: import { jacsToolNode } from '@hai.ai/jacs/langchain'; const node = jacsToolNode([tool1, tool2], { client }); For custom graph logic: import { jacsWrapToolCall } from '@hai.ai/jacs/langchain'; const wrapToolCall = jacsWrapToolCall({ client });","breadcrumbs":"LangChain.js » Auto-Sign Existing Tools","id":"516","title":"Auto-Sign Existing Tools"},"517":{"body":"npm install @hai.ai/jacs @langchain/core\nnpm install @langchain/langgraph @langchain/langgraph is only required for jacsToolNode().","breadcrumbs":"LangChain.js » Install","id":"517","title":"Install"},"518":{"body":"Pass strict: true when you want wrapper failures to throw instead of returning error-shaped output: const jacsTools = createJacsTools({ client, strict: true });","breadcrumbs":"LangChain.js » Strict Mode","id":"518","title":"Strict Mode"},"519":{"body":"jacsnpm/examples/langchain/basic-agent.ts jacsnpm/examples/langchain/signing-callback.ts","breadcrumbs":"LangChain.js » Examples In This Repo","id":"519","title":"Examples In This Repo"},"52":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"52","title":"Documents"},"520":{"body":"Choose Node.js MCP Integration instead when: the model is outside your process and connects over MCP you want a shared MCP server usable by multiple clients you need transport-level signing in addition to signed tool outputs","breadcrumbs":"LangChain.js » When To Use MCP Instead","id":"520","title":"When To Use MCP Instead"},"521":{"body":"Sign it. Prove it. -- for every AI model output. The JACS Vercel AI SDK adapter adds cryptographic provenance to AI-generated text and tool results using the LanguageModelV3Middleware pattern. Works with generateText, streamText, and any model provider (OpenAI, Anthropic, etc.).","breadcrumbs":"Vercel AI SDK » Vercel AI SDK","id":"521","title":"Vercel AI SDK"},"522":{"body":"","breadcrumbs":"Vercel AI SDK » 5-Minute Quickstart","id":"522","title":"5-Minute Quickstart"},"523":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai","breadcrumbs":"Vercel AI SDK » 1. Install","id":"523","title":"1. Install"},"524":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Vercel AI SDK » 2. Create a JACS client","id":"524","title":"2. Create a JACS client"},"525":{"body":"import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const model = withProvenance(openai('gpt-4'), { client });\nconst { text, providerMetadata } = await generateText({ model, prompt: 'Hello!' }); console.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID","breadcrumbs":"Vercel AI SDK » 3. Sign every model output","id":"525","title":"3. Sign every model output"},"526":{"body":"import { JacsClient } from '@hai.ai/jacs/client';\nimport { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst model = withProvenance(openai('gpt-4'), { client }); const { text, providerMetadata } = await generateText({ model, prompt: 'Summarize the quarterly report.',\n}); console.log(text);\nconsole.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID\nconsole.log(providerMetadata?.jacs?.text?.signed); // true Every model output is signed by your JACS agent. The provenance record is attached to providerMetadata.jacs.","breadcrumbs":"Vercel AI SDK » Quick Start","id":"526","title":"Quick Start"},"527":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai # or any provider The ai package is a peer dependency.","breadcrumbs":"Vercel AI SDK » Installation","id":"527","title":"Installation"},"528":{"body":"","breadcrumbs":"Vercel AI SDK » Two Ways to Use","id":"528","title":"Two Ways to Use"},"529":{"body":"Wraps a model with the JACS middleware in one call: import { withProvenance } from '@hai.ai/jacs/vercel-ai'; const model = withProvenance(openai('gpt-4'), { client });","breadcrumbs":"Vercel AI SDK » withProvenance (convenience)","id":"529","title":"withProvenance (convenience)"},"53":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"53","title":"Document Structure"},"530":{"body":"Returns a LanguageModelV3Middleware you can compose with other middleware: import { jacsProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { wrapLanguageModel } from 'ai'; const provenance = jacsProvenance({ client }); const model = wrapLanguageModel({ model: openai('gpt-4'), middleware: provenance,\n});","breadcrumbs":"Vercel AI SDK » jacsProvenance (composable)","id":"530","title":"jacsProvenance (composable)"},"531":{"body":"interface ProvenanceOptions { client: JacsClient; // Required: initialized JacsClient signText?: boolean; // Sign generated text (default: true) signToolResults?: boolean; // Sign tool call results (default: true) strict?: boolean; // Throw on signing failure (default: false) metadata?: Record; // Extra metadata in provenance records\n}","breadcrumbs":"Vercel AI SDK » Options","id":"531","title":"Options"},"532":{"body":"Streaming works automatically. Text chunks are accumulated and signed when the stream completes: import { streamText } from 'ai'; const result = streamText({ model: withProvenance(openai('gpt-4'), { client }), prompt: 'Write a haiku.',\n}); for await (const chunk of result.textStream) { process.stdout.write(chunk);\n} // Provenance is available after stream completes\nconst metadata = await result.providerMetadata;\nconsole.log(metadata?.jacs?.text?.signed); // true","breadcrumbs":"Vercel AI SDK » Streaming","id":"532","title":"Streaming"},"533":{"body":"When signToolResults is true (default), tool results in the prompt are signed: import { generateText, tool } from 'ai';\nimport { z } from 'zod'; const { text, providerMetadata } = await generateText({ model: withProvenance(openai('gpt-4'), { client }), tools: { getWeather: tool({ parameters: z.object({ city: z.string() }), execute: async ({ city }) => `Weather in ${city}: sunny, 72F`, }), }, prompt: 'What is the weather in Paris?',\n}); // Both text output and tool results are signed\nconsole.log(providerMetadata?.jacs?.text?.signed);\nconsole.log(providerMetadata?.jacs?.toolResults?.signed);","breadcrumbs":"Vercel AI SDK » Tool Call Signing","id":"533","title":"Tool Call Signing"},"534":{"body":"Each signed output produces a ProvenanceRecord: interface ProvenanceRecord { signed: boolean; // Whether signing succeeded documentId: string; // JACS document ID agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp error?: string; // Error message if signing failed metadata?: Record;\n} Access records from providerMetadata.jacs: const { providerMetadata } = await generateText({ model, prompt: '...' }); const textProvenance = providerMetadata?.jacs?.text;\nconst toolProvenance = providerMetadata?.jacs?.toolResults;","breadcrumbs":"Vercel AI SDK » Provenance Record","id":"534","title":"Provenance Record"},"535":{"body":"By default, signing failures are logged but do not throw. Enable strict to throw on failure: const model = withProvenance(openai('gpt-4'), { client, strict: true, // Throws if signing fails\n});","breadcrumbs":"Vercel AI SDK » Strict Mode","id":"535","title":"Strict Mode"},"536":{"body":"Express Middleware - Sign HTTP API responses MCP Integration - Secure MCP transport API Reference - Complete API documentation","breadcrumbs":"Vercel AI SDK » Next Steps","id":"536","title":"Next Steps"},"537":{"body":"Sign it. Prove it. -- in your Express app. JACS provides jacsMiddleware for Express v4/v5 that verifies incoming signed request bodies and optionally auto-signs JSON responses. No body-parser gymnastics, no monkey-patching.","breadcrumbs":"Express Middleware » Express Middleware","id":"537","title":"Express Middleware"},"538":{"body":"","breadcrumbs":"Express Middleware » 5-Minute Quickstart","id":"538","title":"5-Minute Quickstart"},"539":{"body":"npm install @hai.ai/jacs express","breadcrumbs":"Express Middleware » 1. Install","id":"539","title":"1. Install"},"54":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"54","title":"Required JACS Fields"},"540":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Express Middleware » 2. Create a JACS client","id":"540","title":"2. Create a JACS client"},"541":{"body":"import express from 'express';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const app = express();\napp.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » 3. Add signing middleware","id":"541","title":"3. Add signing middleware"},"542":{"body":"import express from 'express';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express(); app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"542","title":"Quick Start"},"543":{"body":"jacsMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign res.json() responses (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n}) If neither client nor configPath is provided, the middleware initializes a client with JacsClient.quickstart({ name: 'jacs-express', domain: 'localhost' }) on first request.","breadcrumbs":"Express Middleware » Options","id":"543","title":"Options"},"544":{"body":"Every request gets req.jacsClient -- a JacsClient instance you can use for manual signing/verification in route handlers. POST/PUT/PATCH with verify: true (default): The string body is verified as a JACS document. On success, req.jacsPayload contains the extracted payload. On failure, a 401 is returned (unless optional: true). With sign: true : res.json() is intercepted to auto-sign the response body before sending.","breadcrumbs":"Express Middleware » What the Middleware Does","id":"544","title":"What the Middleware Does"},"545":{"body":"app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client })); app.post('/api/process', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Missing payload' }); } const { action, data } = req.jacsPayload; res.json({ processed: true, action });\n}); With optional: true, unsigned requests pass through with req.jacsPayload unset: app.use(jacsMiddleware({ client, optional: true })); app.post('/api/mixed', (req, res) => { if (req.jacsPayload) { // Verified JACS request res.json({ verified: true, data: req.jacsPayload }); } else { // Unsigned request -- handle accordingly res.json({ verified: false }); }\n});","breadcrumbs":"Express Middleware » Verify Incoming Requests","id":"545","title":"Verify Incoming Requests"},"546":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Express Middleware » Auth Replay Protection (Auth Endpoints)","id":"546","title":"Auth Replay Protection (Auth Endpoints)"},"547":{"body":"Enable sign: true to intercept res.json() calls: app.use(jacsMiddleware({ client, sign: true })); app.post('/api/data', (req, res) => { // This response will be JACS-signed automatically res.json({ result: 42, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Auto-Sign Responses","id":"547","title":"Auto-Sign Responses"},"548":{"body":"Use req.jacsClient for fine-grained control: app.use(jacsMiddleware({ client })); app.post('/api/custom', async (req, res) => { const result = processData(req.jacsPayload); // Sign manually const signed = await req.jacsClient.signMessage(result); res.type('application/json').send(signed.raw);\n});","breadcrumbs":"Express Middleware » Manual Signing in Routes","id":"548","title":"Manual Signing in Routes"},"549":{"body":"Apply JACS to specific routes only: const app = express();\nconst jacs = jacsMiddleware({ client }); // Public routes -- no JACS\napp.get('/health', (req, res) => res.json({ status: 'ok' })); // Protected routes\napp.use('/api', express.text({ type: 'application/json' }), jacs); app.post('/api/secure', (req, res) => { res.json({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Per-Route Middleware","id":"549","title":"Per-Route Middleware"},"55":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"55","title":"Document Types"},"550":{"body":"Use different JacsClient instances per route group: const adminClient = await JacsClient.quickstart({ name: 'admin-agent', domain: 'admin.example.com', algorithm: 'pq2025',\n});\nconst userClient = await JacsClient.quickstart({ name: 'user-agent', domain: 'user.example.com', algorithm: 'ring-Ed25519',\n}); app.use('/admin', express.text({ type: 'application/json' }));\napp.use('/admin', jacsMiddleware({ client: adminClient })); app.use('/user', express.text({ type: 'application/json' }));\napp.use('/user', jacsMiddleware({ client: userClient }));","breadcrumbs":"Express Middleware » Multiple Agents","id":"550","title":"Multiple Agents"},"551":{"body":"The legacy JACSExpressMiddleware from @hai.ai/jacs/http still works but is deprecated. To migrate: Old New import { JACSExpressMiddleware } from '@hai.ai/jacs/http' import { jacsMiddleware } from '@hai.ai/jacs/express' JACSExpressMiddleware({ configPath: '...' }) jacsMiddleware({ configPath: '...' }) Per-request agent init Shared client, lazy-loaded once res.send() monkey-patch res.json() interception (opt-in) The new middleware is simpler, faster (no per-request init), and gives you req.jacsClient for manual operations.","breadcrumbs":"Express Middleware » Migration from JACSExpressMiddleware","id":"551","title":"Migration from JACSExpressMiddleware"},"552":{"body":"Koa Middleware - Same pattern for Koa HTTP Server - Core HTTP integration concepts Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"552","title":"Next Steps"},"553":{"body":"Sign it. Prove it. -- in your Koa app. JACS provides jacsKoaMiddleware for Koa with the same design as the Express middleware -- verify incoming signed bodies, optionally auto-sign responses.","breadcrumbs":"Koa Middleware » Koa Middleware","id":"553","title":"Koa Middleware"},"554":{"body":"import Koa from 'koa';\nimport bodyParser from 'koa-bodyparser';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = new Koa(); app.use(bodyParser({ enableTypes: ['text'] }));\napp.use(jacsKoaMiddleware({ client, verify: true })); app.use(async (ctx) => { console.log(ctx.state.jacsPayload); // verified payload ctx.body = { status: 'ok' };\n}); app.listen(3000);","breadcrumbs":"Koa Middleware » Quick Start","id":"554","title":"Quick Start"},"555":{"body":"jacsKoaMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign ctx.body after next() (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n})","breadcrumbs":"Koa Middleware » Options","id":"555","title":"Options"},"556":{"body":"Every request gets ctx.state.jacsClient for manual use. POST/PUT/PATCH with verify: true : The string body is verified. On success, ctx.state.jacsPayload is set. On failure, 401 is returned (unless optional: true). With sign: true : After downstream middleware runs, if ctx.body is a non-Buffer object, it is signed before the response is sent.","breadcrumbs":"Koa Middleware » How It Works","id":"556","title":"How It Works"},"557":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsKoaMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Koa Middleware » Auth Replay Protection (Auth Endpoints)","id":"557","title":"Auth Replay Protection (Auth Endpoints)"},"558":{"body":"app.use(jacsKoaMiddleware({ client, sign: true })); app.use(async (ctx) => { // This will be JACS-signed automatically after next() ctx.body = { result: 42, timestamp: new Date().toISOString() };\n});","breadcrumbs":"Koa Middleware » Auto-Sign Responses","id":"558","title":"Auto-Sign Responses"},"559":{"body":"app.use(jacsKoaMiddleware({ client })); app.use(async (ctx) => { const result = processData(ctx.state.jacsPayload); const signed = await ctx.state.jacsClient.signMessage(result); ctx.type = 'application/json'; ctx.body = signed.raw;\n});","breadcrumbs":"Koa Middleware » Manual Signing","id":"559","title":"Manual Signing"},"56":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"56","title":"Tasks"},"560":{"body":"Feature Express Koa Import jacsMiddleware from @hai.ai/jacs/express jacsKoaMiddleware from @hai.ai/jacs/koa Client access req.jacsClient ctx.state.jacsClient Payload req.jacsPayload ctx.state.jacsPayload Auto-sign target res.json() interception ctx.body after next()","breadcrumbs":"Koa Middleware » Comparison with Express","id":"560","title":"Comparison with Express"},"561":{"body":"Express Middleware - Express version Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Koa Middleware » Next Steps","id":"561","title":"Next Steps"},"562":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"562","title":"HTTP Server"},"563":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"563","title":"Overview"},"564":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"564","title":"Core Concepts"},"565":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"565","title":"Request/Response Flow"},"566":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"566","title":"HTTP Client"},"567":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"567","title":"Basic Client Usage"},"568":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"568","title":"Using Fetch"},"569":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"569","title":"Express Server"},"57":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"57","title":"Task Structure"},"570":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"570","title":"Using Express Middleware"},"571":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"571","title":"Middleware Configuration"},"572":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"572","title":"Manual Request/Response Handling"},"573":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"573","title":"Koa Server"},"574":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"574","title":"Using Koa Middleware"},"575":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"575","title":"API Reference"},"576":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"576","title":"jacs.signRequest(payload)"},"577":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"577","title":"jacs.verifyResponse(responseString)"},"578":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"578","title":"jacs.signResponse(payload)"},"579":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"579","title":"JACSExpressMiddleware(options)"},"58":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"58","title":"Task Lifecycle"},"580":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"580","title":"JACSKoaMiddleware(options)"},"581":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"581","title":"Complete Example"},"582":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"582","title":"Server (server.js)"},"583":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"583","title":"Client (client.js)"},"584":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"584","title":"Security Considerations"},"585":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"585","title":"Content-Type"},"586":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"586","title":"Error Handling"},"587":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"587","title":"Agent Keys"},"588":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"588","title":"Middleware Order"},"589":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"59","title":"Task Components"},"590":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"590","title":"API Reference"},"591":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"591","title":"Installation"},"592":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"API Reference » v0.7.0: Async-First API","id":"592","title":"v0.7.0: Async-First API"},"593":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"593","title":"Core Module"},"594":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"594","title":"JacsAgent Class"},"595":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() or loadSync() to initialize with a configuration. Example: const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"595","title":"Constructor"},"596":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: Promise (async) or string (sync) -- The loaded agent's JSON Example: const agent = new JacsAgent(); // Async (recommended)\nconst agentJson = await agent.load('./jacs.config.json'); // Sync\nconst agentJson = agent.loadSync('./jacs.config.json'); console.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath) / agent.loadSync(configPath)","id":"596","title":"agent.load(configPath) / agent.loadSync(configPath)"},"597":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: Promise (async) or string (sync) -- The signed document as a JSON string Example: // Basic document creation (async)\nconst doc = await agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // Without saving (sync)\nconst tempDoc = agent.createDocumentSync( JSON.stringify({ data: 'temporary' }), null, null, true\n);","breadcrumbs":"API Reference » agent.createDocument(...) / agent.createDocumentSync(...)","id":"597","title":"agent.createDocument(...) / agent.createDocumentSync(...)"},"598":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: Promise (async) or boolean (sync) -- True if the document is valid Example: const isValid = await agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n}","breadcrumbs":"API Reference » agent.verifyDocument(...) / agent.verifyDocumentSync(...)","id":"598","title":"agent.verifyDocument(...) / agent.verifyDocumentSync(...)"},"599":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifySignature(...) / agent.verifySignatureSync(...)","id":"599","title":"agent.verifySignature(...) / agent.verifySignatureSync(...)"},"6":{"body":"Best fit for LangChain, LangGraph, CrewAI, FastAPI, and local MCP/A2A helpers Strong adapter story for adding provenance inside an existing app","breadcrumbs":"Introduction » Python (jacs)","id":"6","title":"Python (jacs)"},"60":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"60","title":"Agreements"},"600":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: Promise (async) or string (sync) Example: const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`;\nconst updatedDoc = await agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title' })\n);","breadcrumbs":"API Reference » agent.updateDocument(...) / agent.updateDocumentSync(...)","id":"600","title":"agent.updateDocument(...) / agent.updateDocumentSync(...)"},"601":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.createAgreement(...) / agent.createAgreementSync(...)","id":"601","title":"agent.createAgreement(...) / agent.createAgreementSync(...)"},"602":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgreement(...) / agent.signAgreementSync(...)","id":"602","title":"agent.signAgreement(...) / agent.signAgreementSync(...)"},"603":{"body":"Check the status of an agreement. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync) -- JSON string with agreement status","breadcrumbs":"API Reference » agent.checkAgreement(...) / agent.checkAgreementSync(...)","id":"603","title":"agent.checkAgreement(...) / agent.checkAgreementSync(...)"},"604":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifactJson (string): JSON string of the artifact to sign artifactType (string): Type of artifact (e.g., \"task\", \"message\") parentSignaturesJson (string, optional): JSON string of parent signatures for chain of custody Returns: Promise (async) or string (sync) -- The signed, wrapped artifact as a JSON string Example: const signed = await agent.signArtifact( JSON.stringify({ action: 'classify', input: 'hello' }), 'task'\n);","breadcrumbs":"API Reference » agent.signArtifact(...) / agent.signArtifactSync(...)","id":"604","title":"agent.signArtifact(...) / agent.signArtifactSync(...)"},"605":{"body":"Deprecated since 0.9.0. Use signArtifact() / signArtifactSync() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to signArtifact() / signArtifactSync(). Parameters: Same as signArtifact() / signArtifactSync().","breadcrumbs":"API Reference » agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)","id":"605","title":"agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)"},"606":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: Promise (async) or string (sync) -- Base64-encoded signature","breadcrumbs":"API Reference » agent.signString(...) / agent.signStringSync(...)","id":"606","title":"agent.signString(...) / agent.signStringSync(...)"},"607":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyString(...) / agent.verifyStringSync(...)","id":"607","title":"agent.verifyString(...) / agent.verifyStringSync(...)"},"608":{"body":"Sign a request payload, wrapping it in a JACS document. This method is synchronous (no Sync suffix) because it uses V8-thread-only APIs. Parameters: params (any): The request payload object Returns: string -- JACS-signed request as a JSON string","breadcrumbs":"API Reference » agent.signRequest(params) -- V8-thread-only","id":"608","title":"agent.signRequest(params) -- V8-thread-only"},"609":{"body":"Verify a JACS-signed response and extract the payload. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object containing the verified payload","breadcrumbs":"API Reference » agent.verifyResponse(documentString) -- V8-thread-only","id":"609","title":"agent.verifyResponse(documentString) -- V8-thread-only"},"61":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"61","title":"Agreement Structure"},"610":{"body":"Verify a response and return both the payload and signer's agent ID. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object with payload and agent ID","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString) -- V8-thread-only","id":"610","title":"agent.verifyResponseWithAgentId(documentString) -- V8-thread-only"},"611":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyAgent(...) / agent.verifyAgentSync(...)","id":"611","title":"agent.verifyAgent(...) / agent.verifyAgentSync(...)"},"612":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.updateAgent(...) / agent.updateAgentSync(...)","id":"612","title":"agent.updateAgent(...) / agent.updateAgentSync(...)"},"613":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgent(...) / agent.signAgentSync(...)","id":"613","title":"agent.signAgent(...) / agent.signAgentSync(...)"},"614":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"614","title":"Utility Functions"},"615":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string -- Hexadecimal hash string import { hashString } from '@hai.ai/jacs';\nconst hash = hashString('data to hash');","breadcrumbs":"API Reference » hashString(data)","id":"615","title":"hashString(data)"},"616":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional) jacsDataDirectory (string, optional) jacsKeyDirectory (string, optional) jacsAgentPrivateKeyFilename (string, optional) jacsAgentPublicKeyFilename (string, optional) jacsAgentKeyAlgorithm (string, optional) jacsPrivateKeyPassword (string, optional) jacsAgentIdAndVersion (string, optional) jacsDefaultStorage (string, optional) Returns: string -- Configuration as JSON string","breadcrumbs":"API Reference » createConfig(options)","id":"616","title":"createConfig(options)"},"617":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"617","title":"HTTP Module"},"618":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"618","title":"JACSExpressMiddleware(options)"},"619":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"619","title":"JACSKoaMiddleware(options)"},"62":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"62","title":"Agreement Process"},"620":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"620","title":"MCP Module"},"621":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"621","title":"createJACSTransportProxy(transport, configPath, role)"},"622":{"body":"Async factory that waits for JACS to be fully loaded. Returns: Promise","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"622","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"623":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');","breadcrumbs":"API Reference » TypeScript Support","id":"623","title":"TypeScript Support"},"624":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() -> Use agent.load() / agent.loadSync() signAgent() -> Use agent.signAgent() / agent.signAgentSync() verifyString() -> Use agent.verifyString() / agent.verifyStringSync() signString() -> Use agent.signString() / agent.signStringSync() verifyAgent() -> Use agent.verifyAgent() / agent.verifyAgentSync() updateAgent() -> Use agent.updateAgent() / agent.updateAgentSync() verifyDocument() -> Use agent.verifyDocument() / agent.verifyDocumentSync() updateDocument() -> Use agent.updateDocument() / agent.updateDocumentSync() verifySignature() -> Use agent.verifySignature() / agent.verifySignatureSync() createAgreement() -> Use agent.createAgreement() / agent.createAgreementSync() signAgreement() -> Use agent.signAgreement() / agent.signAgreementSync() createDocument() -> Use agent.createDocument() / agent.createDocumentSync() checkAgreement() -> Use agent.checkAgreement() / agent.checkAgreementSync() signRequest() -> Use agent.signRequest() (V8-thread-only, sync) verifyResponse() -> Use agent.verifyResponse() (V8-thread-only, sync) verifyResponseWithAgentId() -> Use agent.verifyResponseWithAgentId() (V8-thread-only, sync) Migration Example: // Old (deprecated, v0.6.x)\nimport jacs from '@hai.ai/jacs';\njacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, async)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, sync)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"624","title":"Deprecated Functions"},"625":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const doc = await agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"625","title":"Error Handling"},"626":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"626","title":"See Also"},"627":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"627","title":"Python Installation"},"628":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"628","title":"Requirements"},"629":{"body":"","breadcrumbs":"Installation » Installation","id":"629","title":"Installation"},"63":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"63","title":"Agreement Types"},"630":{"body":"pip install jacs For framework adapters (LangChain, FastAPI, CrewAI, Anthropic, etc.) use optional extras, e.g. pip install jacs[langchain], jacs[fastapi], or jacs[all]. Optional: jacs[langgraph], jacs[ws]. See Framework Adapters and the package pyproject.toml.","breadcrumbs":"Installation » Using pip","id":"630","title":"Using pip"},"631":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"631","title":"Using conda"},"632":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"632","title":"Using poetry"},"633":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"633","title":"Development Installation"},"634":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs\nprint('JACS Python bindings loaded successfully!') # Quick check (no config file; in-memory agent)\nfrom jacs.client import JacsClient\nclient = JacsClient.ephemeral()\nsigned = client.sign_message({\"hello\": \"jacs\"})\nresult = client.verify(signed.raw_json)\nprint('Sign & verify OK:', result.valid) Or with an existing config file: import jacs\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')\nprint('Agent loaded successfully!') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"634","title":"Verify Installation"},"635":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"635","title":"Package Structure"},"636":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"636","title":"Core Module"},"637":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"637","title":"JacsAgent Methods"},"638":{"body":"","breadcrumbs":"Installation » Configuration","id":"638","title":"Configuration"},"639":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"639","title":"Configuration File"},"64":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"64","title":"Cryptographic Security"},"640":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"640","title":"Load Configuration in Python"},"641":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"641","title":"Programmatic Configuration"},"642":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"642","title":"Environment Variables"},"643":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"643","title":"Storage Backends"},"644":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"644","title":"File System (Default)"},"645":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"645","title":"Local Indexed SQLite"},"646":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"646","title":"AWS Storage"},"647":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"647","title":"Memory Storage (Testing)"},"648":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"648","title":"Cryptographic Algorithms"},"649":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"649","title":"ring-Ed25519 (Recommended)"},"65":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"65","title":"Supported Algorithms"},"650":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"650","title":"RSA-PSS"},"651":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"651","title":"pq-dilithium (Post-Quantum)"},"652":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"652","title":"pq2025 (Post-Quantum Hybrid)"},"653":{"body":"","breadcrumbs":"Installation » Development Setup","id":"653","title":"Development Setup"},"654":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"654","title":"Project Structure"},"655":{"body":"jacs>=0.9.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"655","title":"Requirements.txt Setup"},"656":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"656","title":"Basic Application"},"657":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"657","title":"Virtual Environment Setup"},"658":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"658","title":"Using venv"},"659":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"659","title":"Using conda"},"66":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"66","title":"Signature Process"},"660":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"660","title":"Using poetry"},"661":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"661","title":"Jupyter Notebook Setup"},"662":{"body":"","breadcrumbs":"Installation » Common Issues","id":"662","title":"Common Issues"},"663":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"663","title":"Module Not Found"},"664":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"664","title":"Permission Errors"},"665":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"665","title":"Binary Compatibility"},"666":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"666","title":"Windows Issues"},"667":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"667","title":"Type Hints and IDE Support"},"668":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"668","title":"Testing Setup"},"669":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"669","title":"Next Steps"},"67":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"67","title":"Key Management"},"670":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"670","title":"Examples"},"671":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"671","title":"Simplified API"},"672":{"body":"Zero-config -- one call to start signing: import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass algorithm=\"ring-Ed25519\" to override the default (pq2025). To load an existing agent explicitly, use load() instead: agent = jacs.load(\"./jacs.config.json\")\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})","breadcrumbs":"Simplified API » Quick Start","id":"672","title":"Quick Start"},"673":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"673","title":"When to Use the Simplified API"},"674":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"674","title":"API Reference"},"675":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Python quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before sign_message() or verify(). Parameters: name (str, required): Agent name used for first-time creation. domain (str, required): Agent domain used for DNS/public-key verification workflows. description (str, optional): Human-readable description. algorithm (str, optional): Signing algorithm. Default: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". config_path (str, optional): Config path (default: \"./jacs.config.json\"). Returns: AgentInfo dataclass info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config path: {info.config_path}\")\nprint(f\"Public key: {info.public_key_path}\")\nprint(f\"Private key: {info.private_key_path}\") # Or with a specific algorithm\ninfo = jacs.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", algorithm=\"ring-Ed25519\",\n)","breadcrumbs":"Simplified API » quickstart(name, domain, description=None, algorithm=None, config_path=None)","id":"675","title":"quickstart(name, domain, description=None, algorithm=None, config_path=None)"},"676":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(name=..., domain=..., ...) when you want to load a specific config file explicitly. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") strict (bool, optional): If True, verification failures raise; if None, uses JACS_STRICT_MODE env var Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None, strict=None)","id":"676","title":"load(config_path=None, strict=None)"},"677":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"677","title":"is_loaded()"},"678":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"678","title":"get_agent_info()"},"679":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"679","title":"verify_self()"},"68":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"68","title":"Versioning and Audit Trails"},"680":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"680","title":"sign_message(data)"},"681":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"681","title":"sign_file(file_path, embed=False)"},"682":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str|dict|SignedDocument): The signed document as JSON string, dict, or SignedDocument Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"682","title":"verify(signed_document)"},"683":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"683","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"684":{"body":"Verify a document by its storage ID (uuid:version) without passing the full JSON. Requires the document to be stored locally (e.g. in the agent's data directory). Parameters: document_id (str): Document ID in format \"uuid:version\" Returns: VerificationResult","breadcrumbs":"Simplified API » verify_by_id(document_id)","id":"684","title":"verify_by_id(document_id)"},"685":{"body":"Re-encrypt the loaded agent's private key with a new password. Parameters: old_password (str), new_password (str) Raises: AgentNotLoadedError if no agent loaded; JacsError if password is wrong","breadcrumbs":"Simplified API » reencrypt_key(old_password, new_password)","id":"685","title":"reencrypt_key(old_password, new_password)"},"686":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"686","title":"audit(config_path=None, recent_n=None)"},"687":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"687","title":"update_agent(new_agent_data)"},"688":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"688","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"689":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"689","title":"export_agent()"},"69":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"69","title":"Version Management"},"690":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"690","title":"get_dns_record(domain, ttl=3600)"},"691":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"691","title":"get_well_known_json()"},"692":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"692","title":"get_public_key()"},"693":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"693","title":"Type Definitions"},"694":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"694","title":"AgentInfo"},"695":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"695","title":"SignedDocument"},"696":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"696","title":"VerificationResult"},"697":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type content_hash: str # SHA-256 hash of file content content: Optional[str] = None # Base64-encoded content (if embedded) size_bytes: int = 0 # Size of the original file","breadcrumbs":"Simplified API » Attachment","id":"697","title":"Attachment"},"698":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"698","title":"Exceptions"},"699":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"699","title":"Complete Example"},"7":{"body":"Best fit for Express, Koa, Vercel AI SDK, LangChain.js, and MCP transport/tool integration Also exposes A2A helpers and Express discovery middleware","breadcrumbs":"Introduction » Node.js (@hai.ai/jacs)","id":"7","title":"Node.js (@hai.ai/jacs)"},"70":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"70","title":"Audit Trail Benefits"},"700":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"700","title":"MCP Integration"},"701":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"701","title":"Error Handling"},"702":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"702","title":"See Also"},"703":{"body":"This chapter covers fundamental JACS operations in Python. For quick signing and verification, start with the Simplified API (jacs.simple) or JacsClient ; the sections below use the JacsAgent class directly for fine-grained control.","breadcrumbs":"Basic Usage » Basic Usage","id":"703","title":"Basic Usage"},"704":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"704","title":"Initializing an Agent"},"705":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"705","title":"Create and Load Agent"},"706":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"706","title":"Configuration File"},"707":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"707","title":"Creating Documents"},"708":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"708","title":"Basic Document Creation"},"709":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"709","title":"With Custom Schema"},"71":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"71","title":"Storage and Transport"},"710":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"710","title":"With Output File"},"711":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"711","title":"Without Saving"},"712":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"712","title":"With Attachments"},"713":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"713","title":"Verifying Documents"},"714":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"714","title":"Verify Document Signature"},"715":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"715","title":"Verify Specific Signature Field"},"716":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"716","title":"Updating Documents"},"717":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"717","title":"Update Existing Document"},"718":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"718","title":"Update with New Attachments"},"719":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"719","title":"Signing and Verification"},"72":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"72","title":"Storage Options"},"720":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"720","title":"Sign Arbitrary Data"},"721":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"721","title":"Verify Arbitrary Data"},"722":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"722","title":"Working with Agreements"},"723":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"723","title":"Create an Agreement"},"724":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"724","title":"Sign an Agreement"},"725":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"725","title":"Check Agreement Status"},"726":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"726","title":"Agent Operations"},"727":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"727","title":"Verify Agent"},"728":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"728","title":"Update Agent"},"729":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"729","title":"Sign External Agent"},"73":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"73","title":"Transport Mechanisms"},"730":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"730","title":"Request/Response Signing"},"731":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"731","title":"Sign a Request"},"732":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"732","title":"Verify a Response"},"733":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"733","title":"Utility Functions"},"734":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"734","title":"Hash String"},"735":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"735","title":"Create Configuration"},"736":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"736","title":"Error Handling"},"737":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"737","title":"Complete Example"},"738":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"738","title":"Working with Document Data"},"739":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"739","title":"Parse Signed Documents"},"74":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"74","title":"Format Compatibility"},"740":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"740","title":"Document Key Format"},"741":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"741","title":"Configuration Management"},"742":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"742","title":"Load from File"},"743":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"743","title":"Environment Variables"},"744":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"744","title":"Programmatic Configuration"},"745":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"745","title":"Next Steps"},"746":{"body":"Python exposes two different MCP stories: Secure a local FastMCP transport with jacs.mcp Expose JACS operations as MCP tools with jacs.adapters.mcp Use the first when you already have an MCP server or client. Use the second when you want the model to call JACS signing, agreement, A2A, or trust helpers as normal MCP tools.","breadcrumbs":"MCP Integration (Python) » MCP Integration (Python)","id":"746","title":"MCP Integration (Python)"},"747":{"body":"Local FastMCP server wrapping with JACSMCPServer Local FastMCP client wrapping with JACSMCPClient One-line server creation with create_jacs_mcp_server() FastMCP tool registration with register_jacs_tools(), register_a2a_tools(), and register_trust_tools()","breadcrumbs":"MCP Integration (Python) » What Is Supported","id":"747","title":"What Is Supported"},"748":{"body":"JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback-only URLs Unsigned fallback is disabled by default strict=True is about config loading and failure behavior, not an opt-in to security","breadcrumbs":"MCP Integration (Python) » Important Constraints","id":"748","title":"Important Constraints"},"749":{"body":"The shortest path is the factory: from jacs.mcp import create_jacs_mcp_server mcp = create_jacs_mcp_server(\"My Server\", \"./jacs.config.json\") @mcp.tool()\ndef hello(name: str) -> str: return f\"Hello, {name}!\" If you already have a FastMCP instance: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\")","breadcrumbs":"MCP Integration (Python) » 1. Secure A FastMCP Server","id":"749","title":"1. Secure A FastMCP Server"},"75":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"75","title":"Next Steps"},"750":{"body":"from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") async with client: result = await client.call_tool(\"hello\", {\"name\": \"World\"}) To allow unsigned fallback explicitly: client = JACSMCPClient( \"http://localhost:8000/sse\", \"./jacs.config.json\", allow_unsigned_fallback=True,\n)","breadcrumbs":"MCP Integration (Python) » 2. Secure A FastMCP Client","id":"750","title":"2. Secure A FastMCP Client"},"751":{"body":"This is the better fit when the model should be able to ask for signatures, agreements, A2A cards, or trust-store operations directly. from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\") register_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client) The core tool set includes document signing, verification, agreements, audit, and agent-info helpers. The A2A and trust helpers are opt-in registrations.","breadcrumbs":"MCP Integration (Python) » 3. Register JACS As MCP Tools","id":"751","title":"3. Register JACS As MCP Tools"},"752":{"body":"From jacs.mcp: jacs_tool to sign a specific tool's response jacs_middleware() for explicit Starlette middleware jacs_call() for one-off authenticated local MCP calls","breadcrumbs":"MCP Integration (Python) » Useful Helper APIs","id":"752","title":"Useful Helper APIs"},"753":{"body":"jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacspy/examples/mcp_server.py jacspy/tests/test_adapters_mcp.py","breadcrumbs":"MCP Integration (Python) » Example Paths In This Repo","id":"753","title":"Example Paths In This Repo"},"754":{"body":"Choose Python Framework Adapters instead of MCP when: the model and tools already live in the same Python process you only need signed LangChain, LangGraph, CrewAI, or FastAPI boundaries you do not need MCP clients to connect from outside the app","breadcrumbs":"MCP Integration (Python) » When To Use Adapters Instead","id":"754","title":"When To Use Adapters Instead"},"755":{"body":"Use adapters when the model already runs inside your Python app and you want provenance at the framework boundary, not a separate MCP server.","breadcrumbs":"Framework Adapters » Framework Adapters","id":"755","title":"Framework Adapters"},"756":{"body":"If you need... API Start here Signed LangChain tool results jacs_signing_middleware, signed_tool LangChain / LangGraph section below Signed LangGraph ToolNode outputs jacs_wrap_tool_call, with_jacs_signing LangChain / LangGraph section below Signed FastAPI responses and verified inbound requests JacsMiddleware, jacs_route FastAPI section below Signed CrewAI task output jacs_guardrail, signed_task CrewAI section below Signed Anthropic tool return values jacs.adapters.anthropic.signed_tool Anthropic section below Install only the extra you need: pip install jacs[langchain]\npip install jacs[fastapi]\npip install jacs[crewai]\npip install jacs[anthropic] Optional: jacs[langgraph] (LangGraph ToolNode), jacs[ws] (WebSockets). See pyproject.toml for the full list.","breadcrumbs":"Framework Adapters » Choose The Adapter","id":"756","title":"Choose The Adapter"},"757":{"body":"This is the smallest JACS path if your model already lives in LangChain.","breadcrumbs":"Framework Adapters » LangChain / LangGraph","id":"757","title":"LangChain / LangGraph"},"758":{"body":"from langchain.agents import create_agent\nfrom jacs.client import JacsClient\nfrom jacs.adapters.langchain import jacs_signing_middleware client = JacsClient.quickstart(name=\"langchain-agent\", domain=\"langchain.local\") agent = create_agent( model=\"openai:gpt-4o\", tools=[search_tool, calc_tool], middleware=[jacs_signing_middleware(client=client)],\n)","breadcrumbs":"Framework Adapters » LangChain middleware","id":"758","title":"LangChain middleware"},"759":{"body":"from jacs.adapters.langchain import with_jacs_signing tool_node = with_jacs_signing([search_tool, calc_tool], client=client)","breadcrumbs":"Framework Adapters » LangGraph ToolNode","id":"759","title":"LangGraph ToolNode"},"76":{"body":"Get signing and verifying in under a minute. No manual setup needed.","breadcrumbs":"Quick Start » Quick Start Guide","id":"76","title":"Quick Start Guide"},"760":{"body":"from jacs.adapters.langchain import signed_tool signed_search = signed_tool(search_tool, client=client) The executable example to start from in this repo is jacspy/examples/langchain/signing_callback.py.","breadcrumbs":"Framework Adapters » Wrap one tool instead of the whole graph","id":"760","title":"Wrap one tool instead of the whole graph"},"761":{"body":"Use this when the trust boundary is an API route instead of an MCP transport. from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.adapters.fastapi import JacsMiddleware client = JacsClient.quickstart(name=\"api-agent\", domain=\"api.local\")\napp = FastAPI()\napp.add_middleware(JacsMiddleware, client=client) Useful options: strict=True to reject verification failures instead of passing through sign_responses=False or verify_requests=False to narrow the behavior a2a=True to also expose A2A discovery routes from the same FastAPI app For auth-style endpoints, replay protection is available: app.add_middleware( JacsMiddleware, client=client, strict=True, auth_replay_protection=True, auth_max_age_seconds=30, auth_clock_skew_seconds=5,\n) To sign only one route: from jacs.adapters.fastapi import jacs_route @app.get(\"/signed\")\n@jacs_route(client=client)\nasync def signed_endpoint(): return {\"ok\": True}","breadcrumbs":"Framework Adapters » FastAPI / Starlette","id":"761","title":"FastAPI / Starlette"},"762":{"body":"CrewAI support is guardrail-first: from crewai import Task\nfrom jacs.adapters.crewai import jacs_guardrail task = Task( description=\"Summarize the report\", agent=my_agent, guardrail=jacs_guardrail(client=client),\n) If you build tasks with factories, signed_task() can pre-attach the guardrail.","breadcrumbs":"Framework Adapters » CrewAI","id":"762","title":"CrewAI"},"763":{"body":"Use the Anthropic adapter when you want signed return values from normal Python tool functions: from jacs.adapters.anthropic import signed_tool @signed_tool(client=client)\ndef get_weather(location: str) -> str: return f\"Weather in {location}: sunny\"","breadcrumbs":"Framework Adapters » Anthropic / Claude SDK","id":"763","title":"Anthropic / Claude SDK"},"764":{"body":"Choose Python MCP Integration instead of adapters when: the model is outside your process and talks over MCP you want an MCP tool suite for JACS operations you need the same server to be usable by external MCP clients","breadcrumbs":"Framework Adapters » When To Use MCP Instead","id":"764","title":"When To Use MCP Instead"},"765":{"body":"Complete API documentation for the jacs Python package. For most use cases, the Simplified API (jacs.simple) and JacsClient (instance-based, multiple agents) are recommended. This page documents the lower-level JacsAgent class and module-level functions.","breadcrumbs":"API Reference » API Reference","id":"765","title":"API Reference"},"766":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"766","title":"Installation"},"767":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"767","title":"Core Module"},"768":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"768","title":"JacsAgent Class"},"769":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"769","title":"Constructor"},"77":{"body":"quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Quick Start » Zero-Config Quick Start","id":"77","title":"Zero-Config Quick Start"},"770":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"770","title":"agent.load(config_path)"},"771":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"771","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"772":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"772","title":"agent.verify_document(document_string)"},"773":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"773","title":"agent.verify_signature(document_string, signature_field=None)"},"774":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"774","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"775":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"775","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"776":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"776","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"777":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"777","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"778":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifact_json (str): JSON string of the artifact to sign artifact_type (str): Type of artifact (e.g., \"task\", \"message\") parent_signatures_json (str, optional): JSON string of parent signatures for chain of custody Returns: str - The signed, wrapped artifact as a JSON string Example: signed = agent.sign_artifact( json.dumps({\"action\": \"classify\", \"input\": \"hello\"}), \"task\"\n)","breadcrumbs":"API Reference » agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"778","title":"agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"779":{"body":"Deprecated since 0.9.0. Use sign_artifact() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to sign_artifact(). Parameters: Same as sign_artifact().","breadcrumbs":"API Reference » agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"779","title":"agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"78":{"body":"Rust CLI quickstart requires a password source. Choose one: # Option A: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations)\njacs keychain set --agent-id # prompts once, then JACS finds the password automatically # Option C: Password file (CLI convenience)\nexport JACS_PASSWORD_FILE=/secure/path/jacs-password.txt If both JACS_PRIVATE_KEY_PASSWORD and JACS_PASSWORD_FILE are set, CLI fails fast to avoid ambiguity. The OS keychain is the lowest-priority source and is only consulted when neither env var nor password file is set. Python/Node quickstart can auto-generate a secure password if JACS_PRIVATE_KEY_PASSWORD is unset. Set JACS_SAVE_PASSWORD_FILE=true if you want the generated password persisted to ./jacs_keys/.jacs_password. In production, set JACS_PRIVATE_KEY_PASSWORD explicitly. One call and you're signing. Python pip install jacs import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") Node.js npm install @hai.ai/jacs const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); Rust CLI cargo install jacs-cli # Info mode -- prints agent ID and algorithm\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json Pass algorithm=\"ring-Ed25519\" (or { algorithm: 'ring-Ed25519' } in JS, --algorithm ring-Ed25519 in CLI) to override the default (pq2025). That's it -- you're signing. For most use cases, the quick start above is all you need. Jump to Which integration should I use? to find the right framework adapter, or read on for manual agent setup.","breadcrumbs":"Quick Start » Password bootstrap","id":"78","title":"Password bootstrap"},"780":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"780","title":"agent.sign_string(data)"},"781":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"781","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"782":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"782","title":"agent.sign_request(params)"},"783":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"783","title":"agent.verify_response(document_string)"},"784":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"784","title":"agent.verify_response_with_agent_id(document_string)"},"785":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"785","title":"agent.verify_agent(agent_file=None)"},"786":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"786","title":"agent.update_agent(new_agent_string)"},"787":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"787","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"788":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"788","title":"Module-Level Functions"},"789":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"789","title":"jacs.load(config_path)"},"79":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Quick Start » macOS Homebrew install (Rust CLI)","id":"79","title":"macOS Homebrew install (Rust CLI)"},"790":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"790","title":"jacs.sign_request(data)"},"791":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"791","title":"jacs.verify_request(data)"},"792":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"792","title":"jacs.sign_response(data)"},"793":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"793","title":"jacs.verify_response(data)"},"794":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient, create_jacs_mcp_server, jacs_call Canonical MCP documentation lives at Python MCP Integration . This API section lists the MCP entry points only: JACSMCPServer(mcp_server, config_path=\"./jacs.config.json\", strict=False) - Wrap a FastMCP server with JACS request verification and response signing. JACSMCPClient(url, config_path=\"./jacs.config.json\", strict=False, **kwargs) - Create a FastMCP client with JACS signing/verification interceptors. create_jacs_mcp_server(name, config_path=None) - One-line server factory. jacs_call(server_url, method, **params) - One-shot authenticated MCP call. For examples, strict-mode behavior, and security guidance, see Python MCP Integration .","breadcrumbs":"API Reference » MCP Module","id":"794","title":"MCP Module"},"795":{"body":"","breadcrumbs":"API Reference » Configuration","id":"795","title":"Configuration"},"796":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"796","title":"Configuration File Format"},"797":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"797","title":"Configuration Options"},"798":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"798","title":"Error Handling"},"799":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"799","title":"Common Exceptions"},"8":{"body":"Good fit for services that need signing and verification without framework adapters","breadcrumbs":"Introduction » Go (jacsgo)","id":"8","title":"Go (jacsgo)"},"80":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Quick Start » MCP server (Rust CLI)","id":"80","title":"MCP server (Rust CLI)"},"800":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"800","title":"Type Hints"},"801":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"801","title":"Thread Safety"},"802":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"802","title":"See Also"},"803":{"body":"jacsgo provides Go bindings for signing and verifying JACS documents in services, APIs, and agent runtimes. Note: Go bindings are community-maintained. Python and Node.js currently have broader framework adapter coverage. For full MCP surface use the Rust jacs-mcp server; the Go MCP examples in the repo are demo code.","breadcrumbs":"Installation & Quick Start » Go (jacsgo) Installation and Quick Start","id":"803","title":"Go (jacsgo) Installation and Quick Start"},"804":{"body":"go get github.com/HumanAssisted/JACS/jacsgo","breadcrumbs":"Installation & Quick Start » Install","id":"804","title":"Install"},"805":{"body":"Create an agent first (CLI: jacs create --name my-agent, or programmatically with jacs.Create() and JACS_PRIVATE_KEY_PASSWORD). Then: package main import ( \"fmt\" \"log\" jacs \"github.com/HumanAssisted/JACS/jacsgo\"\n) func main() { // Load agent: nil = default ./jacs.config.json if err := jacs.Load(nil); err != nil { log.Fatal(\"create an agent first: jacs create --name my-agent\") } signed, err := jacs.SignMessage(map[string]interface{}{ \"event\": \"tool-result\", \"status\": \"ok\", }) if err != nil { log.Fatal(err) } result, err := jacs.Verify(signed.Raw) if err != nil { log.Fatal(err) } fmt.Printf(\"Valid: %t signer=%s\\n\", result.Valid, result.SignerID)\n}","breadcrumbs":"Installation & Quick Start » Minimal Sign + Verify","id":"805","title":"Minimal Sign + Verify"},"806":{"body":"Use jacs.Create(name, &jacs.CreateAgentOptions{...}). Password must be set in options or via JACS_PRIVATE_KEY_PASSWORD. See the jacsgo README for the full API table and options.","breadcrumbs":"Installation & Quick Start » Programmatic agent creation","id":"806","title":"Programmatic agent creation"},"807":{"body":"For multiple agents in one process, use NewJacsAgent(), then agent.Load(path) and agent methods; call agent.Close() when done. Attestation, A2A (agent cards, trust policy), and protocol helpers are available on JacsAgent and as package-level wrappers (see godoc or the jacsgo README).","breadcrumbs":"Installation & Quick Start » Concurrent use","id":"807","title":"Concurrent use"},"808":{"body":"Sign outbound API/MCP payloads before crossing trust boundaries Verify inbound signed payloads before executing sensitive actions Sign files (SignFile) for portable chain-of-custody workflows Generate DNS TXT fingerprints (GetDnsRecord) for public identity verification","breadcrumbs":"Installation & Quick Start » Common Go Use Cases","id":"808","title":"Common Go Use Cases"},"809":{"body":"The Go repository includes runnable examples for transport-level signing: jacsgo/examples/mcp/main.go for MCP-style request/response signing jacsgo/examples/http/ for signed HTTP client/server traffic","breadcrumbs":"Installation & Quick Start » MCP and HTTP Patterns","id":"809","title":"MCP and HTTP Patterns"},"81":{"body":"For full control over agent creation, you can set up an agent manually with a config file and JACS_PRIVATE_KEY_PASSWORD environment variable. This is optional since quickstart(...) already creates a persistent agent. Rust CLI","breadcrumbs":"Quick Start » Advanced: Explicit Agent Setup","id":"81","title":"Advanced: Explicit Agent Setup"},"810":{"body":"JACS agent identity is key-based (jacsId + versioned signatures) Verification behavior follows the configured key-resolution order in the runtime (for example local and remote resolution modes supported by the underlying JACS core) DID interoperability is possible at the integration layer without requiring blockchain infrastructure See DNS-Based Verification and DID Integration (No Blockchain Required) .","breadcrumbs":"Installation & Quick Start » Identity and Trust Notes","id":"810","title":"Identity and Trust Notes"},"811":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"811","title":"JSON Schemas"},"812":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"812","title":"Schema Architecture"},"813":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"813","title":"Schema Categories"},"814":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"814","title":"Configuration Schema"},"815":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"815","title":"Document Schemas"},"816":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"816","title":"Component Schemas"},"817":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"817","title":"Schema Locations"},"818":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"818","title":"Using Schemas"},"819":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"819","title":"In Documents"},"82":{"body":"cargo install jacs-cli","breadcrumbs":"Quick Start » Install","id":"82","title":"Install"},"820":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"820","title":"In Configuration Files"},"821":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"821","title":"Custom Schema Validation"},"822":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"822","title":"HAI Extensions"},"823":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"823","title":"Versioning"},"824":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"824","title":"Schema Composition"},"825":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"825","title":"Creating Custom Schemas"},"826":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"826","title":"Validation Rules"},"827":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"827","title":"Required Fields"},"828":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"828","title":"Format Validation"},"829":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"829","title":"Enum Constraints"},"83":{"body":"# Create configuration and agent in one step\njacs init # Or step by step:\n# 1. Create config\njacs config create\n# 2. Create agent with keys\njacs agent create --create-keys true\n# 3. Verify\njacs agent verify","breadcrumbs":"Quick Start » Initialize","id":"83","title":"Initialize"},"830":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"830","title":"Schema Reference"},"831":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"831","title":"See Also"},"832":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"832","title":"Agent Schema"},"833":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"833","title":"Schema Location"},"834":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"834","title":"Overview"},"835":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"835","title":"Schema Structure"},"836":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"836","title":"Agent Types"},"837":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"837","title":"Contact Requirements"},"838":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"838","title":"Agent Properties"},"839":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"839","title":"Core Fields (from Header)"},"84":{"body":"jacs document create -f mydata.json Node.js","breadcrumbs":"Quick Start » Sign a document","id":"84","title":"Sign a document"},"840":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"840","title":"Agent-Specific Fields"},"841":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"841","title":"Services"},"842":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"842","title":"Service Schema Fields"},"843":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"843","title":"PII Types"},"844":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"844","title":"Contacts"},"845":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"845","title":"Contact Schema Fields"},"846":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"846","title":"DNS Verification"},"847":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"847","title":"Complete Example"},"848":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"848","title":"AI Agent"},"849":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"849","title":"Human Agent"},"85":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install","id":"85","title":"Install"},"850":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"850","title":"Organization Agent"},"851":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"851","title":"Creating Agents"},"852":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"852","title":"Python"},"853":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"853","title":"Node.js"},"854":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"854","title":"CLI"},"855":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"855","title":"Verifying Agents"},"856":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"856","title":"See Also"},"857":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"857","title":"Document Schema"},"858":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"858","title":"Schema Location"},"859":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"859","title":"Overview"},"86":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load from config file\nawait jacs.load('./jacs.config.json'); const signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`); Python","breadcrumbs":"Quick Start » Load and use","id":"86","title":"Load and use"},"860":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"860","title":"Core Fields"},"861":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"861","title":"Identification"},"862":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"862","title":"Versioning"},"863":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"863","title":"Document Level"},"864":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"864","title":"Cryptographic Fields"},"865":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string Yes Algorithm used (ring-Ed25519, RSA-PSS, pq2025; pq-dilithium is legacy/deprecated) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"865","title":"Signature"},"866":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"866","title":"Registration"},"867":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"867","title":"Hash"},"868":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"868","title":"Agreements"},"869":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"869","title":"Agreement Schema Fields"},"87":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install","id":"87","title":"Install"},"870":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"870","title":"File Attachments"},"871":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"871","title":"File Schema Fields"},"872":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"872","title":"Vector Embeddings"},"873":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"873","title":"Embedding Schema Fields"},"874":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"874","title":"Complete Example"},"875":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"875","title":"HAI Field Categories"},"876":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"876","title":"Working with Documents"},"877":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"877","title":"Creating Documents"},"878":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"878","title":"Verifying Documents"},"879":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"879","title":"Updating Documents"},"88":{"body":"import jacs.simple as jacs # Load from config file\njacs.load(\"./jacs.config.json\") signed = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Quick Start » Load and use","id":"88","title":"Load and use"},"880":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"880","title":"Adding Attachments"},"881":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"881","title":"Version History"},"882":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"882","title":"See Also"},"883":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"883","title":"Task Schema"},"884":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"884","title":"Schema Location"},"885":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"885","title":"Overview"},"886":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"886","title":"Schema Structure"},"887":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"887","title":"Task States"},"888":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"888","title":"State Transitions"},"889":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"889","title":"Task Properties"},"89":{"body":"For scripts, CI/CD, and server environments where you need agents created programmatically with explicit parameters (without interactive prompts), use create(). For most cases, quickstart(...) above is simpler and also creates a persistent agent. Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = await jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Programmatic Agent Creation (v0.6.0+)","id":"89","title":"Programmatic Agent Creation (v0.6.0+)"},"890":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"890","title":"Core Fields (from Header)"},"891":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"891","title":"Task-Specific Fields"},"892":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"892","title":"Relationship Fields"},"893":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"893","title":"Actions"},"894":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"894","title":"Action Schema Fields"},"895":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"895","title":"Unit Schema"},"896":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"896","title":"Agreements"},"897":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"897","title":"Start Agreement"},"898":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"898","title":"End Agreement"},"899":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"899","title":"Complete Example"},"9":{"body":"","breadcrumbs":"Introduction » Quick Start","id":"9","title":"Quick Start"},"90":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"90","title":"Understanding What Happened"},"900":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"900","title":"Task Relationships"},"901":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"901","title":"Sub-Tasks"},"902":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"902","title":"Task Copies (Branching)"},"903":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"903","title":"Merged Tasks"},"904":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"904","title":"Task Workflow"},"905":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"905","title":"1. Creating a Task"},"906":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"906","title":"2. Assigning an Agent"},"907":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"907","title":"3. Signing Start Agreement"},"908":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"908","title":"4. Completing Work"},"909":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"909","title":"5. Final Completion"},"91":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"91","title":"1. Agent Creation"},"910":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"910","title":"State Machine Rules"},"911":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"911","title":"See Also"},"912":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"912","title":"Agent State Schema"},"913":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"913","title":"Schema Location"},"914":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"914","title":"Overview"},"915":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"915","title":"Schema Structure"},"916":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"916","title":"State Types"},"917":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"917","title":"Properties"},"918":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"918","title":"Required Fields"},"919":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"919","title":"Optional Fields"},"92":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"92","title":"2. Configuration Setup"},"920":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"920","title":"Origin Tracking"},"921":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"921","title":"File References"},"922":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"922","title":"Examples"},"923":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"923","title":"Minimal Agent State"},"924":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"924","title":"Memory File with Embedding"},"925":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"925","title":"Adopted Skill"},"926":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"926","title":"General-Purpose Signed Document"},"927":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"927","title":"Rust API"},"928":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"928","title":"Creating Agent State Documents"},"929":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"929","title":"Signing and Verification"},"93":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"93","title":"3. Task Creation"},"930":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document by JACS document ID (jacs_id) jacs_load_state Load an agent state document by JACS document ID (jacs_id) jacs_update_state Update and re-sign an agent state document by JACS document ID (jacs_id) jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"930","title":"MCP Tools"},"931":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"931","title":"MCP Example: Sign a Memory File"},"932":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"932","title":"MCP Example: Sign Any Document"},"933":{"body":"All agent state documents are stored within the JACS data directory for security MCP verify/load/update flows are jacs_id-based; direct path-only access is disabled Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"933","title":"Security Notes"},"934":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"934","title":"See Also"},"935":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"935","title":"Commitment Schema"},"936":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"936","title":"Schema"},"937":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"937","title":"Required Fields"},"938":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"938","title":"Status Lifecycle"},"939":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"939","title":"Optional Fields"},"94":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature (async)\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"94","title":"Verify Everything Works"},"940":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"940","title":"Cross-References"},"941":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"941","title":"Multi-Agent Agreements"},"942":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"942","title":"Example"},"943":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"943","title":"Rust API"},"944":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"944","title":"Versioning"},"945":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"945","title":"See Also"},"946":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"946","title":"Todo List Schema"},"947":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"947","title":"Schema"},"948":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"948","title":"Required Fields"},"949":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"949","title":"Optional Fields"},"95":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nawait reviewer.load('./reviewer.config.json'); // Create agreement between agents\nconst signedAgreement = await agent.createAgreement( signedTask, [agentDoc.jacsId, reviewerDoc.jacsId], 'Do you agree to collaborate on this content task?'\n); // Both agents sign the agreement\nconst signed1 = await agent.signAgreement(signedAgreement);\nconst signed2 = await reviewer.signAgreement(signed1); // Check agreement status\nconst status = await agent.checkAgreement(signed2);\nconsole.log('Agreement status:', JSON.parse(status)); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"95","title":"Next Steps: Multi-Agent Workflow"},"950":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"950","title":"Todo Items"},"951":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"951","title":"Required Item Fields"},"952":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"952","title":"Optional Item Fields"},"953":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"953","title":"Cross-References"},"954":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"954","title":"Item Hierarchy"},"955":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"955","title":"Example"},"956":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"956","title":"Rust API"},"957":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"957","title":"Versioning"},"958":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"958","title":"See Also"},"959":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"959","title":"Conversation Schema"},"96":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"96","title":"What You've Accomplished"},"960":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"960","title":"Schema"},"961":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"961","title":"Message Fields"},"962":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"962","title":"Required"},"963":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"963","title":"Optional"},"964":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"964","title":"Threading Model"},"965":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"965","title":"Immutability"},"966":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"966","title":"Example"},"967":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"967","title":"Rust API"},"968":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"968","title":"Cross-References"},"969":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"969","title":"See Also"},"97":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"97","title":"Key Takeaways"},"970":{"body":"This page documents the jacs.config.json schema fields. For a comprehensive configuration guide including observability setup, storage backends, zero-config quickstart, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Config File Schema","id":"970","title":"Config File Schema"},"971":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Config File Schema » Schema Location","id":"971","title":"Schema Location"},"972":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Config File Schema » Minimal Configuration","id":"972","title":"Minimal Configuration"},"973":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend jacs_keychain_backend string OS keychain backend: \"auto\", \"macos-keychain\", \"linux-secret-service\", \"disabled\"","breadcrumbs":"Config File Schema » Fields","id":"973","title":"Fields"},"974":{"body":"","breadcrumbs":"Config File Schema » Configuration Options","id":"974","title":"Configuration Options"},"975":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable or jacs keychain set (OS keychain) instead. See OS Keychain Configuration .","breadcrumbs":"Config File Schema » Key Configuration","id":"975","title":"Key Configuration"},"976":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Config File Schema » Storage Configuration","id":"976","title":"Storage Configuration"},"977":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Config File Schema » Agent Identity","id":"977","title":"Agent Identity"},"978":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Config File Schema » Schema Versions","id":"978","title":"Schema Versions"},"979":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Config File Schema » DNS Configuration","id":"979","title":"DNS Configuration"},"98":{"body":"Now that you have the basics working: Verify Signed Documents - Verify any document from CLI, Python, or Node.js -- no agent required A2A Quickstart - Make your agent discoverable by other A2A agents in minutes Framework Adapters - Add auto-signing to LangChain, FastAPI, CrewAI, or Anthropic SDK in 1-3 lines Multi-Agent Agreements - Cross-trust-boundary verification with quorum and timeout Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"98","title":"Where to Go Next"},"980":{"body":"jacs_keychain_backend OS keychain backend for password storage. Controls whether JACS looks up the private key password from the OS credential store. { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect platform default (macOS Keychain or Linux Secret Service) \"macos-keychain\" macOS Keychain \"linux-secret-service\" Linux D-Bus Secret Service \"disabled\" Never consult OS keychain (recommended for CI/headless) Override with env var: JACS_KEYCHAIN_BACKEND=disabled See OS Keychain Configuration for full details. jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Config File Schema » Security","id":"980","title":"Security"},"981":{"body":"The observability object supports logs, metrics, and tracing sub-objects. For full details on all destinations, sampling options, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Observability Fields","id":"981","title":"Observability Fields"},"982":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory JACS_KEYCHAIN_BACKEND jacs_keychain_backend","breadcrumbs":"Config File Schema » Environment Variables","id":"982","title":"Environment Variables"},"983":{"body":"Configuration Reference - Full configuration guide with examples JSON Schemas Overview - Schema architecture Observability (Rust API) - Rust observability API Observability & Monitoring Guide - Structured events, OTEL collector setup","breadcrumbs":"Config File Schema » See Also","id":"983","title":"See Also"},"984":{"body":"JACS occupies a unique position as an agent-layer attestation framework. This page compares JACS with related standards and explains when to use them together.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS Attestation vs. Other Standards","id":"984","title":"JACS Attestation vs. Other Standards"},"985":{"body":"Feature JACS in-toto / SLSA Sigstore / cosign SCITT IETF RATS / EAT Primary domain AI agent runtime Build provenance Artifact signing Transparency logs Hardware/platform attestation Identity model Decentralized (key pairs) Build system certs Keyless (OIDC) Issuer certs Platform certs Agent-native Yes No No No Partial Offline verification Yes Yes (with keys) No (requires Rekor) No (requires log) Depends Multi-agent quorum Yes (M-of-N) No No No No Evidence normalization Yes (A2A, email, JWT, custom) No No No Partial (EAT claims) Transform receipts Yes (derivation chains) Yes (build steps) No No No Probabilistic claims Yes (confidence + assurance) No No No No Post-quantum Yes (ML-DSA-87) No No No Depends Central infrastructure Not required Not required Required (Fulcio + Rekor) Required (transparency log) Depends Schema format JSON Schema + JCS in-toto layout Sigstore bundle SCITT receipt CBOR/COSE","breadcrumbs":"JACS Attestation vs. Other Standards » Comparison Table","id":"985","title":"Comparison Table"},"986":{"body":"Domain difference: in-toto and SLSA focus on build provenance -- proving that a software artifact was built by a specific builder from specific source code. JACS focuses on runtime agent actions -- proving that a specific agent performed a specific action with specific evidence. Interoperability: JACS exports attestations as DSSE (Dead Simple Signing Envelope) documents, the same format used by in-toto v1.0+. This means: A JACS attestation can include an in-toto predicate type URI SLSA verifiers can validate the DSSE envelope structure JACS and in-toto attestations can coexist in the same verification pipeline When to use both: If your workflow includes both software builds (use SLSA/in-toto for build provenance) and AI agent actions (use JACS for runtime attestation), you can link them via derivation chains.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. in-toto / SLSA","id":"986","title":"JACS vs. in-toto / SLSA"},"987":{"body":"Domain difference: Sigstore provides signing infrastructure (Fulcio CA, Rekor transparency log) and cosign is a tool for signing container images and artifacts. JACS provides its own signing with decentralized identity. Key difference: Sigstore's keyless signing relies on centralized OIDC identity providers and a public transparency log. JACS uses self-managed key pairs and does not require any centralized infrastructure. When to use both: Sigstore for container image signing in CI/CD pipelines. JACS for AI agent action signing at runtime. A planned Sigstore bundle verification adapter (N+2) would let JACS attestations reference Sigstore signatures as evidence.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. Sigstore / cosign","id":"987","title":"JACS vs. Sigstore / cosign"},"988":{"body":"Most overlap. SCITT (Supply Chain Integrity, Transparency and Trust) defines a centralized transparency service for recording signed statements about artifacts. Key difference: SCITT requires a transparency log (centralized notary). JACS is fully decentralized and offline-capable. JACS verification works without contacting any server. Complementary use: JACS signs and attests. SCITT logs. An organization could use JACS to create signed attestations and then submit them to a SCITT transparency log for auditability, getting the benefits of both decentralized creation and centralized discoverability.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. SCITT","id":"988","title":"JACS vs. SCITT"},"989":{"body":"Layer difference: RATS (Remote ATtestation procedureS) and EAT (Entity Attestation Token) focus on hardware and platform attestation -- proving that a device or execution environment is in a known-good state. JACS fills the software agent layer above hardware. Alignment opportunity: JACS claim names could align with IANA-registered EAT claim types where they overlap. A JACS attestation could reference a RATS attestation result as evidence, creating a trust chain from hardware to agent. IETF drafts of interest: draft-huang-rats-agentic-eat-cap-attest-00 -- Capability attestation for agents, directly aligned with JACS claims model draft-messous-eat-ai-00 -- EAT profile for AI agents draft-jiang-seat-dynamic-attestation-00 -- Dynamic attestation for runtime assertions","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. IETF RATS / EAT","id":"989","title":"JACS vs. IETF RATS / EAT"},"99":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"99","title":"Troubleshooting"},"990":{"body":"The Cloud Security Alliance's Agentic Trust Framework defines progressive trust levels that map directly to JACS's trust model: CSA Level JACS Equivalent Verification None No JACS No signing Basic Open Valid signature accepted Standard Verified Trust store + DNS verification Enhanced Strict Attestation-level evidence required","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. CSA Agentic Trust Framework","id":"990","title":"JACS vs. CSA Agentic Trust Framework"},"991":{"body":"Use JACS when you need: Agent identity that works without PKI/CA infrastructure Non-repudiable action logging for AI agent workflows Multi-agent authorization with quorum (M-of-N approval) Offline verification without centralized services Evidence-backed trust that goes beyond simple signing Post-quantum readiness for long-lived agent identities","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS","id":"991","title":"When to Use JACS"},"992":{"body":"Scenario JACS + ... CI/CD pipeline with AI agents JACS (agent actions) + SLSA (build provenance) Enterprise with compliance requirements JACS (signing) + SCITT (transparency log) IoT/edge with hardware attestation JACS (agent layer) + RATS/EAT (hardware layer) Container-based agent deployment JACS (runtime signing) + cosign (image signing)","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS Alongside Other Tools","id":"992","title":"When to Use JACS Alongside Other Tools"},"993":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"993","title":"Security Model"},"994":{"body":"Passwords : The private key password can be provided via JACS_PRIVATE_KEY_PASSWORD environment variable, JACS_PASSWORD_FILE, or the OS keychain (macOS Keychain / Linux Secret Service). It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : Registry verification requires HTTPS for JACS_REGISTRY_URL (legacy alias: HAI_API_URL). Localhost HTTP is allowed for local testing only. No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0+)","id":"994","title":"Security Model (v0.6.0+)"},"995":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"995","title":"Core Security Principles"},"996":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"996","title":"1. Cryptographic Identity"},"997":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"997","title":"2. Document Integrity"},"998":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"998","title":"3. Non-Repudiation"},"999":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"999","title":"Security Audit (audit())"}},"length":1657,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.0},"1245":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.0},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.0}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.0}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.0},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.0},"1246":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.0},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.0},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.0},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":71,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1262":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":2.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.4142135623730951},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.0},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.449489742783178},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.0},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"241":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.0},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":63,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.0},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.4142135623730951}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1046":{"tf":1.0},"1487":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":629,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":2.8284271247461903},"1009":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"110":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.0},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.449489742783178},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":1.7320508075688772},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.0},"1282":{"tf":1.7320508075688772},"1283":{"tf":2.23606797749979},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.0},"1412":{"tf":2.8284271247461903},"1413":{"tf":3.3166247903554},"1414":{"tf":2.6457513110645907},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":2.0},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"211":{"tf":2.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":2.23606797749979},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.6457513110645907},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.449489742783178},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.4142135623730951},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":1.7320508075688772},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":1.7320508075688772},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":2.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.8284271247461903},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"81":{"tf":2.0},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.0},"834":{"tf":1.7320508075688772},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"854":{"tf":2.0},"855":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.0},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"912":{"tf":2.449489742783178},"914":{"tf":1.7320508075688772},"915":{"tf":1.4142135623730951},"916":{"tf":2.449489742783178},"918":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.7320508075688772},"921":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"931":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.4142135623730951},"946":{"tf":1.0},"95":{"tf":4.242640687119285},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.4142135623730951},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.4142135623730951},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":150,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":2.0},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.449489742783178},"1219":{"tf":2.0},"1220":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.0},"1408":{"tf":2.6457513110645907},"1409":{"tf":3.605551275463989},"1410":{"tf":3.3166247903554},"1440":{"tf":1.0},"1441":{"tf":2.23606797749979},"1442":{"tf":2.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":2.23606797749979},"1465":{"tf":2.0},"1466":{"tf":1.0},"1501":{"tf":3.1622776601683795},"1565":{"tf":1.0},"1566":{"tf":2.23606797749979},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.8284271247461903},"210":{"tf":2.6457513110645907},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.7320508075688772},"306":{"tf":2.0},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"722":{"tf":1.0},"723":{"tf":1.4142135623730951},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.0},"869":{"tf":1.0},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":45,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1391":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"29":{"tf":1.0},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":104,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1111":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1121":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":2.0},"1131":{"tf":1.0},"1133":{"tf":2.23606797749979},"1136":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":2.23606797749979},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.449489742783178},"1554":{"tf":2.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.0},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.7320508075688772},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.0},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":1.7320508075688772},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"1196":{"tf":1.4142135623730951},"120":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"318":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.4142135623730951},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":103,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.0},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"184":{"tf":1.0},"301":{"tf":1.4142135623730951},"32":{"tf":1.0},"334":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.4142135623730951},"397":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.0},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"592":{"tf":1.0},"608":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"674":{"tf":1.0},"683":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.7320508075688772},"794":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1372":{"tf":1.0},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.0},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.0},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0}}}}}},"df":63,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":2.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.0},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.4142135623730951},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.449489742783178},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.0},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.4142135623730951},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":79,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.4142135623730951},"1317":{"tf":1.7320508075688772},"1318":{"tf":1.0},"132":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":2.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":2.0},"1345":{"tf":1.7320508075688772},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":2.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.7320508075688772},"1598":{"tf":2.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.8284271247461903},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1614":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951},"989":{"tf":3.0},"990":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.0}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.0},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.0},"686":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.23606797749979},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.0},"1618":{"tf":1.0},"175":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.23606797749979},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.23606797749979},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.0},"646":{"tf":2.0},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.0},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":2.449489742783178},"1571":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1636":{"tf":1.0},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":51,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.0},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":44,"docs":{"1156":{"tf":1.0},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1461":{"tf":1.0},"1503":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1611":{"tf":1.0},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.0},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.0},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.4142135623730951},"503":{"tf":1.0},"665":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":1.7320508075688772},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.0}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.0},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"130":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.0},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.4142135623730951},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":23,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.449489742783178},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":31,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.0},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.0},"875":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.0},"1071":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.0},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.0},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1249":{"tf":1.0},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.0},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.0},"332":{"tf":1.0},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":1.7320508075688772},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.4142135623730951},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1482":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1614":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"207":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.0},"1459":{"tf":1.0},"1462":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.0},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":46,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.0},"1277":{"tf":1.0},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1629":{"tf":1.0},"212":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":1.7320508075688772},"983":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":40,"docs":{"1062":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":1.7320508075688772},"1483":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":23,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.0},"943":{"tf":2.6457513110645907},"944":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"1502":{"tf":1.0},"1506":{"tf":1.0},"1523":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"380":{"tf":1.0},"429":{"tf":1.0},"436":{"tf":1.0},"510":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"671":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.0},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.0},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":26,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"874":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.0},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.0},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"125":{"tf":1.0},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.4142135623730951},"552":{"tf":1.0},"564":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":1.7320508075688772},"659":{"tf":2.0},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.0},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":109,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.0},"982":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":180,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":2.0},"1531":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1580":{"tf":1.4142135623730951},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"820":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.23606797749979},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1247":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"397":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.0},"1251":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.4142135623730951},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.0},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"767":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.0},"1229":{"tf":2.23606797749979},"1230":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":293,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":3.872983346207417},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.449489742783178},"1410":{"tf":2.449489742783178},"1412":{"tf":2.8284271247461903},"1416":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":3.872983346207417},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":3.1622776601683795},"200":{"tf":2.0},"202":{"tf":3.1622776601683795},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"304":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.0},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.0},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.0},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":102,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.0},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.4142135623730951},"648":{"tf":1.0},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.0},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":2.0},"1169":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"372":{"tf":1.0},"439":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"825":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.7320508075688772},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.0}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":15,"docs":{"1124":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.7320508075688772},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.0},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":29,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.4142135623730951},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.4142135623730951},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.0},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.0},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"653":{"tf":1.0},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.0},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":6,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":97,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":2.8284271247461903},"1199":{"tf":1.7320508075688772},"120":{"tf":2.8284271247461903},"1200":{"tf":2.449489742783178},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1203":{"tf":2.8284271247461903},"1204":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1557":{"tf":1.7320508075688772},"1558":{"tf":2.23606797749979},"1559":{"tf":2.0},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.6457513110645907},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.0},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":2.0},"309":{"tf":2.449489742783178},"311":{"tf":2.449489742783178},"312":{"tf":2.6457513110645907},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":3.3166247903554},"320":{"tf":3.4641016151377544},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":2.0},"332":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.0},"979":{"tf":2.0},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.23606797749979},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":473,"docs":{"1004":{"tf":2.0},"1005":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.0},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"1160":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.23606797749979},"121":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.0},"1218":{"tf":1.0},"122":{"tf":1.0},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":3.605551275463989},"1404":{"tf":3.3166247903554},"1405":{"tf":2.6457513110645907},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.23606797749979},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1432":{"tf":2.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":2.0},"1456":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":3.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":1.7320508075688772},"1497":{"tf":4.0},"1498":{"tf":3.0},"1499":{"tf":3.1622776601683795},"1500":{"tf":3.1622776601683795},"1501":{"tf":3.1622776601683795},"1503":{"tf":2.8284271247461903},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.0},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.4142135623730951},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":3.3166247903554},"203":{"tf":2.6457513110645907},"204":{"tf":3.1622776601683795},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.0},"278":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.4142135623730951},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.23606797749979},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":2.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":2.0},"74":{"tf":1.0},"740":{"tf":1.4142135623730951},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":2.0},"876":{"tf":1.0},"877":{"tf":2.449489742783178},"878":{"tf":1.0},"879":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":2.0},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.4142135623730951},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":57,"docs":{"1008":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1487":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.449489742783178}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.0},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.0},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1383":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.0},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.0},"452":{"tf":1.7320508075688772},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.4142135623730951},"254":{"tf":1.0},"262":{"tf":1.0},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.4142135623730951},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.4142135623730951},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":124,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":3.605551275463989},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":2.449489742783178},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.7320508075688772},"1572":{"tf":1.7320508075688772},"1573":{"tf":1.4142135623730951},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"500":{"tf":2.0},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.4142135623730951},"625":{"tf":2.23606797749979},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":2.6457513110645907},"798":{"tf":1.7320508075688772},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.0},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":2.449489742783178},"1324":{"tf":2.0},"1325":{"tf":2.449489742783178},"1326":{"tf":2.23606797749979},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.23606797749979},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":2.23606797749979},"1336":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.8284271247461903},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":112,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1082":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"146":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1478":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1536":{"tf":1.0},"155":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"185":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.0},"435":{"tf":1.7320508075688772},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"581":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":1.7320508075688772},"699":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.4142135623730951},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.4142135623730951},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.23606797749979},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":40,"docs":{"1192":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1429":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":2.23606797749979},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"539":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":2.23606797749979},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.0},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.0},"729":{"tf":1.0},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.449489742783178},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.23606797749979},"262":{"tf":2.23606797749979},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"159":{"tf":1.0},"1594":{"tf":1.0},"160":{"tf":1.0},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1210":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.4142135623730951},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.0},"1332":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.0},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.0},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.0},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":1.7320508075688772},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":2.0},"890":{"tf":1.7320508075688772},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"945":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"981":{"tf":1.0},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":204,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":2.0},"1511":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"642":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.23606797749979},"871":{"tf":2.0},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.0}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.4142135623730951},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.0},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"369":{"tf":1.4142135623730951},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1127":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.0},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.23606797749979},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1577":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.0},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":35,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.0},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1334":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.0},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.4142135623730951},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.0},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.4142135623730951},"1240":{"tf":2.6457513110645907},"1241":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.0},"515":{"tf":1.0},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.0},"1506":{"tf":1.0},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.0},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.0},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.0},"1535":{"tf":1.0},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":33,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1204":{"tf":1.0},"1260":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.0},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.0},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":1.7320508075688772},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.4142135623730951},"673":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":1.7320508075688772},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.23606797749979},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":2.6457513110645907},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.0},"800":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.4142135623730951},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.0},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":40,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.0},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.0},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.0},"1650":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"617":{"tf":1.0},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.4142135623730951},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.4142135623730951},"451":{"tf":1.0},"652":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":137,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1046":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.4142135623730951},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.0},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.0},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":13,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.0},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.0},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.0},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":80,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"165":{"tf":1.0},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.7320508075688772},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"504":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"527":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"633":{"tf":1.7320508075688772},"634":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"518":{"tf":1.0},"520":{"tf":1.4142135623730951},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.4142135623730951},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":109,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1327":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.0},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.0}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1561":{"tf":1.7320508075688772},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.0},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":2.449489742783178},"953":{"tf":1.7320508075688772},"954":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":588,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.449489742783178},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.4142135623730951},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.23606797749979},"1256":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.449489742783178},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.0},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1485":{"tf":2.449489742783178},"1486":{"tf":2.6457513110645907},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.7320508075688772},"1489":{"tf":1.7320508075688772},"149":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1493":{"tf":1.7320508075688772},"1495":{"tf":1.7320508075688772},"1496":{"tf":1.0},"1497":{"tf":3.0},"1498":{"tf":2.449489742783178},"1499":{"tf":2.23606797749979},"1500":{"tf":2.0},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1599":{"tf":1.0},"16":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.0},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.7320508075688772},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"51":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":2.449489742783178},"987":{"tf":2.23606797749979},"988":{"tf":2.23606797749979},"989":{"tf":2.23606797749979},"990":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951},"992":{"tf":2.449489742783178},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.4142135623730951},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.0},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.0},"803":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.7320508075688772}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":170,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.0},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.3166247903554},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.0},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.69041575982343},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.0},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":2.449489742783178},"1008":{"tf":3.0},"1009":{"tf":2.23606797749979},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.449489742783178},"1065":{"tf":1.0},"1066":{"tf":2.0},"1067":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":2.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":2.23606797749979},"1075":{"tf":1.7320508075688772},"1076":{"tf":1.0},"1077":{"tf":2.23606797749979},"1078":{"tf":1.7320508075688772},"1079":{"tf":3.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":2.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.4142135623730951},"1089":{"tf":2.0},"1090":{"tf":2.0},"1091":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.7320508075688772},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.0},"1127":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":1.7320508075688772},"125":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":2.0},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":1.7320508075688772},"1546":{"tf":2.449489742783178},"1547":{"tf":2.449489742783178},"1548":{"tf":1.7320508075688772},"1549":{"tf":2.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":1.7320508075688772},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"973":{"tf":1.7320508075688772},"975":{"tf":2.449489742783178},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.0},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":13,"docs":{"1393":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"554":{"tf":2.0},"560":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":2.6457513110645907},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":7,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1478":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"512":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"758":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.4142135623730951},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"1360":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":2.23606797749979},"141":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.0},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.0},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.0},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"957":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":2.0},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.4142135623730951},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.4142135623730951},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"871":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.0},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.605551275463989},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.449489742783178},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.23606797749979},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.4142135623730951},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"910":{"tf":1.0}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"69":{"tf":1.0},"737":{"tf":1.0},"741":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.0},"218":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.0},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":96,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":2.0},"1227":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":2.6457513110645907},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"1252":{"tf":2.0},"1253":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.7320508075688772},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":2.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":2.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.0},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":2.0},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.23606797749979},"749":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.23606797749979},"794":{"tf":2.449489742783178},"80":{"tf":2.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.0},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.0},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.4142135623730951},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.0},"928":{"tf":1.7320508075688772},"931":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.0},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.4142135623730951},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.0},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.1622776601683795},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.7320508075688772},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.0},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.0},"571":{"tf":1.0},"574":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":32,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.7320508075688772},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1639":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.4142135623730951},"1654":{"tf":1.0},"1655":{"tf":1.0},"551":{"tf":1.4142135623730951},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.0},"1329":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"972":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.0},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":4.0},"1227":{"tf":2.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":22,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"1000":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1371":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":45,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.0},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.0},"1470":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.0},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":1.7320508075688772},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"1435":{"tf":1.7320508075688772},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"910":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.0},"1396":{"tf":1.0},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"1450":{"tf":1.4142135623730951},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1174":{"tf":1.0},"1188":{"tf":1.0},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.0},"1640":{"tf":1.0},"177":{"tf":1.0},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.0},"1589":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1377":{"tf":1.0},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.4142135623730951},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1604":{"tf":1.0},"1606":{"tf":1.0},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"588":{"tf":1.4142135623730951},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"836":{"tf":1.0},"850":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.0},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"259":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.0},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1181":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.4142135623730951},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.4142135623730951},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":1.7320508075688772},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.47213595499958},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.0},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1270":{"tf":1.0},"1272":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.4142135623730951},"511":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1478":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.0},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.7320508075688772},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.4142135623730951},"660":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.0},"1477":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.0}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"1487":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1241":{"tf":1.0},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.0},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":1.7320508075688772},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.0},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.0},"1064":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1458":{"tf":1.0},"1469":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.4142135623730951},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.4142135623730951},"735":{"tf":1.0},"744":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.4142135623730951},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.4142135623730951},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1245":{"tf":1.0},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.4142135623730951},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.23606797749979},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.0},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"1475":{"tf":1.7320508075688772},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":2.0},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.0},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"1062":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":26,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.0},"13":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.449489742783178},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.23606797749979},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.0},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.4142135623730951},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.0},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.23606797749979},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.4142135623730951},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.4142135623730951},"1066":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.0},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":85,"docs":{"105":{"tf":1.0},"1060":{"tf":1.0},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1504":{"tf":1.0},"1512":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.0},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"751":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.0},"1260":{"tf":1.0},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.0},"900":{"tf":1.0},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.0},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.0},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.0},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.0},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.4142135623730951},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.0},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.0},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.0},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"935":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.0},"289":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":119,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.4142135623730951},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1072":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1079":{"tf":2.23606797749979},"1080":{"tf":2.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1095":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":2.0},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.0},"1144":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.4142135623730951},"183":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.0},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":61,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.7320508075688772},"34":{"tf":1.0},"367":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.0},"801":{"tf":1.0},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1487":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":149,"docs":{"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.7320508075688772},"1158":{"tf":1.0},"1159":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":2.0},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.0},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.23606797749979},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.7320508075688772},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"830":{"tf":3.0},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":2.449489742783178},"842":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":2.0},"858":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"886":{"tf":2.23606797749979},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.0},"911":{"tf":2.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":2.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.7320508075688772},"926":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"945":{"tf":1.7320508075688772},"946":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772},"970":{"tf":1.4142135623730951},"971":{"tf":1.0},"972":{"tf":1.0},"978":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.23606797749979},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.0},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.0},"1391":{"tf":1.0},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.0},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":130,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.0},"1013":{"tf":1.0},"1019":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1199":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.4142135623730951},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.0},"140":{"tf":1.7320508075688772},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"605":{"tf":1.0},"626":{"tf":1.0},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1112":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"1051":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":1.7320508075688772},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":10,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":87,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.449489742783178},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.0},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"842":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.0},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.4142135623730951},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.4142135623730951},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.0},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.0},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.0},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.449489742783178},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.0},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.7320508075688772},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.7320508075688772},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.0},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":437,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.23606797749979},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.23606797749979},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1125":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1206":{"tf":2.23606797749979},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1221":{"tf":2.23606797749979},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1316":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.0},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":2.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":2.0},"1394":{"tf":2.0},"1395":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":2.8284271247461903},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":1.7320508075688772},"1567":{"tf":2.0},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.0},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.0},"548":{"tf":1.7320508075688772},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":1.0},"724":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.23606797749979}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"1621":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.449489742783178},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.0},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.0},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.0},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.0},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.7320508075688772},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":1.4142135623730951},"990":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":55,"docs":{"1":{"tf":1.0},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"760":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.4142135623730951},"910":{"tf":1.7320508075688772},"938":{"tf":1.0},"967":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":37,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.7320508075688772},"912":{"tf":2.0},"914":{"tf":2.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"933":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.0},"163":{"tf":1.4142135623730951},"1635":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":60,"docs":{"1045":{"tf":1.0},"111":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":2.23606797749979},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.0},"1571":{"tf":2.0},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.0},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":2.8284271247461903},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.4142135623730951},"646":{"tf":1.0},"647":{"tf":1.0},"684":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.7320508075688772},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":2.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1487":{"tf":3.1622776601683795},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.0},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1389":{"tf":2.23606797749979},"1391":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":1.7320508075688772},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.0},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.0},"1039":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1126":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.0},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.0},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.0},"1419":{"tf":1.0},"1619":{"tf":1.0},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.0},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.0},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":91,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":2.6457513110645907},"1494":{"tf":1.0},"1495":{"tf":2.0},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":3.4641016151377544},"25":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":2.0},"889":{"tf":1.0},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.7320508075688772},"896":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"93":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":78,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.0},"1213":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1215":{"tf":3.3166247903554},"1216":{"tf":1.0},"1217":{"tf":2.449489742783178},"1218":{"tf":2.0},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1223":{"tf":2.23606797749979},"1224":{"tf":1.7320508075688772},"1226":{"tf":2.6457513110645907},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1233":{"tf":2.449489742783178},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1236":{"tf":3.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1239":{"tf":1.0},"1241":{"tf":1.0},"1243":{"tf":2.0},"1244":{"tf":2.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1315":{"tf":1.0},"1329":{"tf":2.0},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":2.449489742783178},"1471":{"tf":1.0},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":1.7320508075688772},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.0},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"364":{"tf":1.7320508075688772},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772},"801":{"tf":2.8284271247461903},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":1.7320508075688772},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1559":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":17,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.0},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":74,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1223":{"tf":1.0},"1240":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1347":{"tf":1.0},"1349":{"tf":1.7320508075688772},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":1.7320508075688772},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.449489742783178},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":1.7320508075688772},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.449489742783178}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.4641016151377544},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.7320508075688772},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.4142135623730951},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1227":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.0},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":1.7320508075688772},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.0},"1184":{"tf":2.23606797749979},"1185":{"tf":2.23606797749979},"1186":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1196":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1360":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"1385":{"tf":1.0},"139":{"tf":2.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.23606797749979},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.0},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1313":{"tf":1.4142135623730951},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.0},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.0},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.0},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":1.7320508075688772},"270":{"tf":1.0},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.0},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1498":{"tf":2.6457513110645907},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":2.0},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"728":{"tf":2.0},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.23606797749979},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":34,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":377,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.23606797749979},"1305":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.4142135623730951},"397":{"tf":1.0},"40":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"528":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.0},"562":{"tf":1.0},"614":{"tf":1.0},"636":{"tf":1.0},"733":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":1.7320508075688772},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.0},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.0},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"1391":{"tf":1.0},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":203,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.0},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1419":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.0},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.0},"318":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.4142135623730951},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":349,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":1.4142135623730951},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.3166247903554},"1074":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"111":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1404":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.3166247903554},"1493":{"tf":1.0},"1499":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.0},"1611":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.6457513110645907},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.0},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":1.7320508075688772},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.23606797749979},"878":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":1.7320508075688772},"1070":{"tf":2.0},"1071":{"tf":1.7320508075688772},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.0},"1084":{"tf":2.23606797749979},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.23606797749979},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.0},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.7320508075688772},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.23606797749979},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.0},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"957":{"tf":1.7320508075688772},"977":{"tf":1.0},"978":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":22,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.0},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"592":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.4142135623730951},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":1.7320508075688772},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.0},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":52,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":75,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1027":{"tf":1.0},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.0},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":20,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.0},"1329":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.4142135623730951},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.4142135623730951},"436":{"tf":1.0},"508":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.4142135623730951}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.7320508075688772}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.4142135623730951},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":90,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":2.0},"1262":{"tf":2.23606797749979},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":2.449489742783178},"1274":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.7320508075688772},"1279":{"tf":2.0},"128":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.7320508075688772},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.449489742783178},"1324":{"tf":1.0},"1353":{"tf":2.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":2.0},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"137":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":2.0},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.7320508075688772},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":2.0},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":62,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":2.23606797749979},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.0},"1329":{"tf":2.23606797749979},"1330":{"tf":2.8284271247461903},"1331":{"tf":1.0},"1332":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.7320508075688772},"755":{"tf":2.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.4142135623730951},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"241":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.4142135623730951},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.7320508075688772},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.4142135623730951},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":63,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.7320508075688772},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.7320508075688772}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1046":{"tf":1.0},"1487":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":651,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":2.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":2.8284271247461903},"1009":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":2.0},"1032":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.7320508075688772},"1046":{"tf":1.0},"105":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.4142135623730951},"1094":{"tf":1.0},"110":{"tf":1.7320508075688772},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.4142135623730951},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"1193":{"tf":2.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":2.0},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":2.0},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":2.0},"1283":{"tf":2.449489742783178},"1284":{"tf":1.7320508075688772},"1285":{"tf":2.0},"1286":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.7320508075688772},"1290":{"tf":2.449489742783178},"1291":{"tf":2.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1315":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1412":{"tf":3.0},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.4142135623730951},"1493":{"tf":2.23606797749979},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":2.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":2.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.6457513110645907},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":2.23606797749979},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":1.7320508075688772},"214":{"tf":2.23606797749979},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.449489742783178},"310":{"tf":1.4142135623730951},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"319":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951},"321":{"tf":2.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":2.6457513110645907},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.7320508075688772},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.4142135623730951},"705":{"tf":2.0},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"728":{"tf":2.23606797749979},"729":{"tf":1.4142135623730951},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.8284271247461903},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.4142135623730951},"807":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":2.0},"836":{"tf":2.0},"837":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"839":{"tf":2.0},"840":{"tf":2.23606797749979},"841":{"tf":1.7320508075688772},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":2.0},"849":{"tf":2.0},"850":{"tf":2.0},"851":{"tf":1.7320508075688772},"852":{"tf":2.0},"853":{"tf":1.4142135623730951},"854":{"tf":2.23606797749979},"855":{"tf":2.6457513110645907},"856":{"tf":1.7320508075688772},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.7320508075688772},"91":{"tf":2.0},"911":{"tf":1.4142135623730951},"912":{"tf":2.8284271247461903},"913":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.7320508075688772},"916":{"tf":2.6457513110645907},"917":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":2.0},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"95":{"tf":4.358898943540674},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.7320508075688772},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":154,"docs":{"1":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"1035":{"tf":1.7320508075688772},"1036":{"tf":1.7320508075688772},"1037":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.6457513110645907},"1219":{"tf":2.23606797749979},"1220":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.4142135623730951},"1408":{"tf":2.8284271247461903},"1409":{"tf":3.7416573867739413},"1410":{"tf":3.4641016151377544},"1440":{"tf":1.4142135623730951},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":1.4142135623730951},"1463":{"tf":1.4142135623730951},"1464":{"tf":2.449489742783178},"1465":{"tf":2.23606797749979},"1466":{"tf":1.4142135623730951},"1501":{"tf":3.3166247903554},"1565":{"tf":1.4142135623730951},"1566":{"tf":2.449489742783178},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":3.0},"210":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":2.449489742783178},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.7320508075688772},"292":{"tf":2.23606797749979},"293":{"tf":2.0},"294":{"tf":3.0},"295":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":2.449489742783178},"305":{"tf":2.0},"306":{"tf":2.23606797749979},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":2.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":2.449489742783178},"722":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"724":{"tf":2.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.23606797749979},"869":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":52,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1391":{"tf":2.0},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.449489742783178},"522":{"tf":1.0},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":2.0},"526":{"tf":2.0},"527":{"tf":2.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.7320508075688772},"531":{"tf":1.0},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":2.0}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":127,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.7320508075688772},"1043":{"tf":1.4142135623730951},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":2.0},"1098":{"tf":2.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1125":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":2.449489742783178},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.0},"1133":{"tf":2.6457513110645907},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":2.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":2.6457513110645907},"1142":{"tf":2.0},"1143":{"tf":2.0},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.6457513110645907},"1554":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":2.0},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.4142135623730951},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.7320508075688772},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.23606797749979},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":2.0},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1350":{"tf":1.7320508075688772},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":283,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"184":{"tf":1.0},"301":{"tf":1.7320508075688772},"32":{"tf":1.0},"334":{"tf":1.7320508075688772},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"436":{"tf":2.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.4142135623730951},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":1.0},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.7320508075688772},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":2.23606797749979},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":2.0},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.4142135623730951},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.7320508075688772},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951}}}}}},"df":66,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.23606797749979},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":2.23606797749979},"1300":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.6457513110645907},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.23606797749979},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.7320508075688772},"712":{"tf":1.7320508075688772},"718":{"tf":1.7320508075688772},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.7320508075688772},"880":{"tf":1.7320508075688772},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.7320508075688772},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":113,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.7320508075688772},"1311":{"tf":1.7320508075688772},"1312":{"tf":1.0},"1313":{"tf":2.23606797749979},"1314":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":2.23606797749979},"1318":{"tf":1.7320508075688772},"1319":{"tf":1.0},"132":{"tf":2.449489742783178},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1323":{"tf":2.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":2.449489742783178},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1341":{"tf":1.0},"1342":{"tf":2.23606797749979},"1343":{"tf":2.449489742783178},"1344":{"tf":1.0},"1345":{"tf":2.23606797749979},"1346":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.23606797749979},"1352":{"tf":1.7320508075688772},"1353":{"tf":2.0},"1354":{"tf":1.7320508075688772},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1360":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.4142135623730951},"1596":{"tf":2.0},"1597":{"tf":1.0},"1598":{"tf":2.449489742783178},"1599":{"tf":2.0},"1600":{"tf":1.4142135623730951},"1601":{"tf":2.0},"1602":{"tf":3.0},"1603":{"tf":2.0},"1604":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":2.8284271247461903},"1608":{"tf":1.0},"1609":{"tf":1.7320508075688772},"1610":{"tf":2.0},"1611":{"tf":2.0},"1612":{"tf":2.23606797749979},"1613":{"tf":1.0},"1614":{"tf":2.0},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"989":{"tf":3.1622776601683795},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.4142135623730951}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.7320508075688772},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"543":{"tf":1.0},"546":{"tf":2.23606797749979},"555":{"tf":1.0},"557":{"tf":2.23606797749979},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.449489742783178},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.4142135623730951},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1618":{"tf":1.0},"175":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.6457513110645907},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.449489742783178},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.23606797749979},"646":{"tf":2.23606797749979},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":37,"docs":{"1144":{"tf":1.7320508075688772},"1145":{"tf":2.23606797749979},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":2.0},"1533":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":2.6457513110645907},"1571":{"tf":1.7320508075688772},"1573":{"tf":1.0},"1636":{"tf":1.4142135623730951},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":75,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":120,"docs":{"1156":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":2.0},"1469":{"tf":1.4142135623730951},"1470":{"tf":2.0},"1611":{"tf":1.4142135623730951},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.4142135623730951},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1615":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.7320508075688772},"503":{"tf":1.0},"665":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.0},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.4142135623730951},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.4142135623730951},"130":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":2.0},"182":{"tf":2.0},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.7320508075688772},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":25,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1262":{"tf":1.0},"1264":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.6457513110645907},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":38,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"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},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.4142135623730951},"875":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.4142135623730951},"1071":{"tf":2.0},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"1294":{"tf":2.0},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1340":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.4142135623730951},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.4142135623730951},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.7320508075688772},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.4142135623730951},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":2.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.4142135623730951},"1022":{"tf":2.0},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.4142135623730951},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.7320508075688772},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.7320508075688772},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":149,"docs":{"10":{"tf":1.7320508075688772},"1008":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":2.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"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.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.1622776601683795},"1459":{"tf":1.4142135623730951},"1462":{"tf":2.449489742783178},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":2.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.23606797749979},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":89,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1539":{"tf":2.0},"1540":{"tf":2.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1612":{"tf":1.7320508075688772},"1629":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.23606797749979},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":2.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.4142135623730951},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"1062":{"tf":1.4142135623730951},"107":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1495":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":2.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":24,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.449489742783178},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"943":{"tf":2.8284271247461903},"944":{"tf":1.4142135623730951},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1523":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.4142135623730951},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"380":{"tf":1.0},"429":{"tf":1.4142135623730951},"436":{"tf":1.0},"510":{"tf":1.4142135623730951},"626":{"tf":1.0},"662":{"tf":1.4142135623730951},"671":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"808":{"tf":1.4142135623730951},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951}}}}}}},"t":{"df":32,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.7320508075688772},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"665":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.4142135623730951},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"874":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.7320508075688772},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.4142135623730951},"812":{"tf":1.0},"816":{"tf":1.4142135623730951},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.7320508075688772},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.4142135623730951},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.23606797749979},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":2.0},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":36,"docs":{"125":{"tf":1.4142135623730951},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"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.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":2.0},"659":{"tf":2.23606797749979},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":120,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":2.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":2.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.4142135623730951},"983":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":188,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1114":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.7320508075688772},"1518":{"tf":2.23606797749979},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1521":{"tf":2.449489742783178},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":2.449489742783178},"1531":{"tf":2.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1536":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"1541":{"tf":1.4142135623730951},"1542":{"tf":2.23606797749979},"1543":{"tf":2.0},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.7320508075688772},"1580":{"tf":1.7320508075688772},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.4142135623730951},"250":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.4142135623730951},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.7320508075688772},"820":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.449489742783178},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.4142135623730951},"1054":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1132":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1331":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"397":{"tf":1.0},"584":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.7320508075688772},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"2":{"tf":1.0},"299":{"tf":1.4142135623730951},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.7320508075688772},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"840":{"tf":1.0},"844":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.7320508075688772},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.4142135623730951},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":20,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.449489742783178},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"966":{"tf":1.0},"967":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":61,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":2.0},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"593":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"636":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"669":{"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.4142135623730951},"751":{"tf":1.0},"767":{"tf":1.4142135623730951},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.7320508075688772},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":2.449489742783178},"1230":{"tf":2.0},"1231":{"tf":2.23606797749979},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":332,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":4.0},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.6457513110645907},"1410":{"tf":2.449489742783178},"1412":{"tf":3.0},"1416":{"tf":2.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":2.23606797749979},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":4.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.7320508075688772},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.7320508075688772},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":2.0},"195":{"tf":3.3166247903554},"200":{"tf":2.23606797749979},"202":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"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.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":2.0},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"499":{"tf":1.7320508075688772},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"723":{"tf":1.4142135623730951},"735":{"tf":1.7320508075688772},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.7320508075688772},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.4142135623730951},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.4142135623730951},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.4142135623730951},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":2.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":140,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":2.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.7320508075688772},"648":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.4142135623730951},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":108,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1158":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":2.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":2.0},"361":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"439":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.23606797749979},"822":{"tf":1.0},"825":{"tf":1.7320508075688772},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.4142135623730951},"1647":{"tf":2.0},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":2.0},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":25,"docs":{"1124":{"tf":1.4142135623730951},"124":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.4142135623730951},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"371":{"tf":2.0},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":33,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.7320508075688772},"1628":{"tf":2.0},"1629":{"tf":1.7320508075688772},"1630":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":2.0},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.4142135623730951},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":2.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.23606797749979},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":11,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":101,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.4142135623730951},"1087":{"tf":2.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":3.0},"1199":{"tf":2.0},"120":{"tf":3.0},"1200":{"tf":2.6457513110645907},"1201":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":3.0},"1204":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"1413":{"tf":3.4641016151377544},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":2.449489742783178},"1559":{"tf":2.23606797749979},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":2.23606797749979},"309":{"tf":2.8284271247461903},"310":{"tf":1.0},"311":{"tf":2.8284271247461903},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.7320508075688772},"318":{"tf":1.7320508075688772},"319":{"tf":3.605551275463989},"320":{"tf":3.7416573867739413},"321":{"tf":1.4142135623730951},"322":{"tf":2.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.23606797749979},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":2.0},"856":{"tf":1.0},"979":{"tf":2.23606797749979},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.449489742783178},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.449489742783178},"323":{"tf":2.449489742783178},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.23606797749979},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":499,"docs":{"1004":{"tf":2.23606797749979},"1005":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.449489742783178},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.7320508075688772},"1074":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"109":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"110":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":2.0},"1110":{"tf":1.0},"1115":{"tf":1.0},"112":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.7320508075688772},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"1160":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"119":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.23606797749979},"1218":{"tf":1.0},"122":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.23606797749979},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.7416573867739413},"1404":{"tf":3.4641016151377544},"1405":{"tf":2.8284271247461903},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.449489742783178},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":2.0},"1432":{"tf":2.23606797749979},"1433":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1455":{"tf":2.23606797749979},"1456":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1468":{"tf":2.449489742783178},"1470":{"tf":3.1622776601683795},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":4.123105625617661},"1498":{"tf":3.1622776601683795},"1499":{"tf":3.3166247903554},"1500":{"tf":3.3166247903554},"1501":{"tf":3.1622776601683795},"1503":{"tf":3.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.4142135623730951},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.23606797749979},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.7320508075688772},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":3.4641016151377544},"203":{"tf":2.8284271247461903},"204":{"tf":3.3166247903554},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"247":{"tf":2.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"25":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"263":{"tf":1.7320508075688772},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.6457513110645907},"277":{"tf":2.449489742783178},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"346":{"tf":1.7320508075688772},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.7320508075688772},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.449489742783178},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":2.0},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":2.23606797749979},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":2.23606797749979},"74":{"tf":1.0},"740":{"tf":1.7320508075688772},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.449489742783178},"858":{"tf":1.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":2.23606797749979},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":2.8284271247461903},"878":{"tf":1.7320508075688772},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"881":{"tf":1.4142135623730951},"882":{"tf":2.23606797749979},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.4142135623730951},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.7320508075688772},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.7320508075688772},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":57,"docs":{"1008":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1487":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.6457513110645907}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":2.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":2.0},"1380":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1383":{"tf":1.7320508075688772},"1384":{"tf":2.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.23606797749979},"452":{"tf":2.0},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.7320508075688772},"254":{"tf":1.0},"262":{"tf":1.4142135623730951},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":2.0},"873":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.7320508075688772},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1366":{"tf":2.0},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":2.0},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.23606797749979},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":130,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1447":{"tf":3.7416573867739413},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.6457513110645907},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":2.0},"1540":{"tf":1.7320508075688772},"1541":{"tf":1.7320508075688772},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1544":{"tf":1.4142135623730951},"1545":{"tf":1.7320508075688772},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.4142135623730951},"1549":{"tf":1.4142135623730951},"1550":{"tf":1.7320508075688772},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.4142135623730951},"1555":{"tf":1.7320508075688772},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.4142135623730951},"1560":{"tf":1.7320508075688772},"1561":{"tf":1.7320508075688772},"1562":{"tf":1.4142135623730951},"1563":{"tf":1.4142135623730951},"1564":{"tf":1.4142135623730951},"1565":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.4142135623730951},"1569":{"tf":1.4142135623730951},"1570":{"tf":1.7320508075688772},"1571":{"tf":2.23606797749979},"1572":{"tf":2.23606797749979},"1573":{"tf":2.0},"1574":{"tf":1.7320508075688772},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":2.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"500":{"tf":2.23606797749979},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.7320508075688772},"625":{"tf":2.449489742783178},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":2.8284271247461903},"798":{"tf":2.0},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":2.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1370":{"tf":1.7320508075688772},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":2.6457513110645907},"1324":{"tf":2.449489742783178},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1327":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1329":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":2.449489742783178},"1336":{"tf":2.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":3.0},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":2.0},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":188,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1173":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":2.23606797749979},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1536":{"tf":1.4142135623730951},"155":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"28":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"435":{"tf":2.0},"462":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"54":{"tf":1.0},"581":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":2.0},"699":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"75":{"tf":1.0},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":1.4142135623730951},"916":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.7320508075688772},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.7320508075688772},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":24,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.4142135623730951},"503":{"tf":1.0},"516":{"tf":1.7320508075688772},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.4142135623730951},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.449489742783178},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"1366":{"tf":2.0},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.4142135623730951},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":50,"docs":{"1192":{"tf":1.7320508075688772},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.449489742783178},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.4142135623730951},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":2.0},"542":{"tf":2.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.7320508075688772},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"570":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.449489742783178},"262":{"tf":2.449489742783178},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.7320508075688772},"1556":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"1594":{"tf":1.0},"160":{"tf":1.4142135623730951},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.4142135623730951},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.7320508075688772},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1597":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.23606797749979},"1332":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.23606797749979},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.449489742783178},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.449489742783178},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":2.0},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":2.0},"840":{"tf":1.7320508075688772},"842":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":2.23606797749979},"890":{"tf":2.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"945":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"951":{"tf":1.7320508075688772},"952":{"tf":1.7320508075688772},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.7320508075688772},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":216,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":2.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":2.23606797749979},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":2.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.7320508075688772},"642":{"tf":1.0},"644":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.4142135623730951},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.449489742783178},"871":{"tf":2.23606797749979},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":2.0},"924":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.4142135623730951},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.7320508075688772},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":2.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":2.0},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.7320508075688772},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.4142135623730951},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.7320508075688772},"1235":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.4142135623730951},"348":{"tf":1.0},"369":{"tf":1.7320508075688772},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.4142135623730951},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1127":{"tf":2.0},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":2.0},"1553":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"774":{"tf":1.0},"796":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.449489742783178},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.7320508075688772},"1546":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1563":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1577":{"tf":1.0},"161":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":61,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":2.23606797749979},"1352":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.23606797749979},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1632":{"tf":1.7320508075688772},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.7320508075688772},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.4142135623730951},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.7320508075688772},"1240":{"tf":2.8284271247461903},"1241":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.4142135623730951},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.4142135623730951},"515":{"tf":1.4142135623730951},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.4142135623730951},"803":{"tf":2.23606797749979},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.4142135623730951},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.4142135623730951},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.7320508075688772},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":126,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":2.0},"1616":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"163":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1632":{"tf":1.0},"1633":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1639":{"tf":1.0},"164":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.7320508075688772},"875":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.4142135623730951},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.0},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.4142135623730951},"439":{"tf":1.0},"464":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":2.0},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.7320508075688772},"673":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"798":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":2.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.449489742783178},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":2.0},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.449489742783178},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.7320508075688772},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"171":{"tf":1.0},"186":{"tf":2.8284271247461903},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.4142135623730951},"800":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.7320508075688772},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.23606797749979},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":64,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.4142135623730951},"1436":{"tf":1.7320508075688772},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1459":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1650":{"tf":1.4142135623730951},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":2.23606797749979},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.7320508075688772},"567":{"tf":2.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"617":{"tf":1.4142135623730951},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.7320508075688772},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":2.0},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.7320508075688772},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.7320508075688772},"451":{"tf":1.0},"652":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":137,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1046":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.7320508075688772},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.4142135623730951}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.7320508075688772},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":16,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.4142135623730951},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.4142135623730951},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":157,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":2.0},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":2.0},"1649":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"504":{"tf":1.7320508075688772},"517":{"tf":2.0},"523":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"539":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.7320508075688772},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"633":{"tf":2.23606797749979},"634":{"tf":1.7320508075688772},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":1.7320508075688772},"661":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.7320508075688772},"664":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.7320508075688772},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.7320508075688772},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"764":{"tf":1.7320508075688772},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":131,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1327":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"354":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.7320508075688772},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}},"t":{"df":16,"docs":{"0":{"tf":1.0},"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},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.7320508075688772},"1561":{"tf":2.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"1653":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.6457513110645907},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":597,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.6457513110645907},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.7320508075688772},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.7320508075688772},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.449489742783178},"1256":{"tf":1.4142135623730951},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":2.6457513110645907},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.23606797749979},"1387":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.8284271247461903},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":2.0},"1485":{"tf":2.6457513110645907},"1486":{"tf":2.8284271247461903},"1487":{"tf":3.872983346207417},"1488":{"tf":2.0},"1489":{"tf":2.0},"149":{"tf":1.0},"1491":{"tf":2.0},"1493":{"tf":2.0},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":3.1622776601683795},"1498":{"tf":2.6457513110645907},"1499":{"tf":2.449489742783178},"1500":{"tf":2.23606797749979},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.4142135623730951},"16":{"tf":2.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":2.0},"1651":{"tf":2.0},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":2.0},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":2.0},"51":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.4142135623730951},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":2.23606797749979},"985":{"tf":1.4142135623730951},"986":{"tf":2.8284271247461903},"987":{"tf":2.6457513110645907},"988":{"tf":2.6457513110645907},"989":{"tf":2.6457513110645907},"990":{"tf":2.23606797749979},"991":{"tf":2.0},"992":{"tf":2.8284271247461903},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.7320508075688772},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.4142135623730951},"803":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":2.0}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":187,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.23606797749979},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.7320508075688772},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":2.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.4641016151377544},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.4142135623730951},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.795831523312719},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.1622776601683795},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":274,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1007":{"tf":2.6457513110645907},"1008":{"tf":3.1622776601683795},"1009":{"tf":2.449489742783178},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.7320508075688772},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.8284271247461903},"1065":{"tf":1.7320508075688772},"1066":{"tf":2.449489742783178},"1067":{"tf":1.4142135623730951},"1068":{"tf":2.0},"1069":{"tf":1.4142135623730951},"107":{"tf":2.0},"1070":{"tf":1.0},"1071":{"tf":2.23606797749979},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.4142135623730951},"1074":{"tf":2.6457513110645907},"1075":{"tf":2.23606797749979},"1076":{"tf":1.7320508075688772},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":3.1622776601683795},"1080":{"tf":2.23606797749979},"1081":{"tf":1.4142135623730951},"1082":{"tf":1.7320508075688772},"1083":{"tf":2.0},"1084":{"tf":2.449489742783178},"1085":{"tf":2.0},"1086":{"tf":2.0},"1087":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":2.449489742783178},"1090":{"tf":2.23606797749979},"1091":{"tf":2.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":2.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.23606797749979},"1127":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":2.0},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":2.0},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":2.0},"125":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.7320508075688772},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":2.0},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":2.0},"1546":{"tf":2.6457513110645907},"1547":{"tf":2.6457513110645907},"1548":{"tf":2.0},"1549":{"tf":2.0},"156":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1645":{"tf":2.0},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":2.0},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.1622776601683795},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":2.0},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"973":{"tf":1.7320508075688772},"975":{"tf":2.6457513110645907},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":19,"docs":{"1393":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":2.23606797749979},"554":{"tf":2.23606797749979},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.4142135623730951},"574":{"tf":2.8284271247461903},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":14,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1392":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1478":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1478":{"tf":2.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.7320508075688772},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.449489742783178},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1360":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"140":{"tf":2.449489742783178},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.7320508075688772},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.4142135623730951},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.4142135623730951},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.4142135623730951},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":48,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":3.1622776601683795},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":2.0},"343":{"tf":1.0},"347":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":2.23606797749979},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.4142135623730951},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.7320508075688772},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"845":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"884":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"971":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.4142135623730951},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.7416573867739413},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.6457513110645907},"376":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.7320508075688772},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.7320508075688772},"198":{"tf":2.449489742783178},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.4142135623730951},"1030":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"69":{"tf":1.4142135623730951},"737":{"tf":1.0},"741":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.7320508075688772},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.4142135623730951},"572":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":106,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1223":{"tf":2.23606797749979},"1227":{"tf":1.7320508075688772},"1248":{"tf":2.0},"1249":{"tf":3.0},"1250":{"tf":2.0},"1251":{"tf":1.4142135623730951},"1252":{"tf":2.449489742783178},"1253":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1256":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1258":{"tf":2.23606797749979},"1259":{"tf":1.0},"1260":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.7320508075688772},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.449489742783178},"408":{"tf":1.4142135623730951},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":2.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.7320508075688772},"520":{"tf":2.23606797749979},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.7320508075688772},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.6457513110645907},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.449489742783178},"794":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.4142135623730951},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.4142135623730951},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.449489742783178},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":2.0},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.7320508075688772},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"928":{"tf":1.7320508075688772},"931":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.23606797749979},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.7320508075688772},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1620":{"tf":1.7320508075688772},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.3166247903554},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":2.0},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":63,"docs":{"1189":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1577":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.7320508075688772},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":2.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.23606797749979},"571":{"tf":1.4142135623730951},"574":{"tf":2.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":51,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":2.0},"1180":{"tf":1.7320508075688772},"1538":{"tf":1.7320508075688772},"1615":{"tf":2.23606797749979},"1616":{"tf":1.0},"1617":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.7320508075688772},"1624":{"tf":1.7320508075688772},"1625":{"tf":1.7320508075688772},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.7320508075688772},"1632":{"tf":1.0},"1633":{"tf":1.7320508075688772},"1634":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1636":{"tf":1.7320508075688772},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.0},"1639":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"1641":{"tf":1.7320508075688772},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.7320508075688772},"1645":{"tf":1.0},"1646":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"1648":{"tf":1.7320508075688772},"1649":{"tf":1.0},"1650":{"tf":1.7320508075688772},"1651":{"tf":1.0},"1652":{"tf":1.7320508075688772},"1653":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"1656":{"tf":1.0},"551":{"tf":1.7320508075688772},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1516":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"805":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"928":{"tf":1.0},"972":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1564":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.4142135623730951},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":4.123105625617661},"1227":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":2.0},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"1000":{"tf":1.7320508075688772},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1054":{"tf":1.0},"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":2.0},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.4142135623730951},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1632":{"tf":1.7320508075688772},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"624":{"tf":1.0},"636":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":27,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":50,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.7320508075688772},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.4142135623730951},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.4142135623730951},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.23606797749979},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.23606797749979},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":2.0},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1323":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"910":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":114,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1258":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"143":{"tf":2.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1450":{"tf":1.7320508075688772},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.4142135623730951},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":2.0},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.23606797749979},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1188":{"tf":1.4142135623730951},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.0},"177":{"tf":1.4142135623730951},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.4142135623730951},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.4142135623730951}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":70,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.7320508075688772},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.4142135623730951},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"949":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"588":{"tf":1.7320508075688772},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"836":{"tf":1.0},"850":{"tf":1.4142135623730951},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.4142135623730951},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1100":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1248":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1513":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.4142135623730951},"36":{"tf":1.0},"368":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.7320508075688772},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.7320508075688772},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":2.0},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.7320508075688772},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.47213595499958},"1046":{"tf":2.0},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":3.0},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1272":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.4142135623730951},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1608":{"tf":1.4142135623730951},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":2.0},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":2.0},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.7320508075688772},"176":{"tf":2.0},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.7320508075688772},"660":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1477":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.449489742783178},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.7320508075688772},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.4142135623730951}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"1487":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.4142135623730951},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":2.0},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.4142135623730951},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.7320508075688772},"735":{"tf":1.0},"744":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.7320508075688772},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.7320508075688772},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.7320508075688772},"1008":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.6457513110645907},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.449489742783178},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.4142135623730951},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":133,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1257":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.4142135623730951},"627":{"tf":2.23606797749979},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":2.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.7320508075688772},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"1062":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.0},"189":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0}}}}}},"df":53,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.4142135623730951},"2":{"tf":1.0},"298":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.23606797749979}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.7320508075688772},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.4142135623730951},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.7320508075688772},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.449489742783178},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.7320508075688772},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.7320508075688772},"1066":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":225,"docs":{"105":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1398":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":2.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":2.0},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.4142135623730951},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.7320508075688772},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"943":{"tf":1.0},"953":{"tf":1.7320508075688772},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.7320508075688772},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.7320508075688772},"751":{"tf":1.4142135623730951},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.7320508075688772},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.605551275463989},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"562":{"tf":1.0},"565":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.4142135623730951},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.7320508075688772},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.23606797749979},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":2.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":2.0},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.7320508075688772},"1558":{"tf":1.7320508075688772},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.23606797749979},"289":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.7320508075688772},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.7320508075688772},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.4142135623730951},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":129,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.7320508075688772},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.7320508075688772},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1064":{"tf":2.0},"1065":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.7320508075688772},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.4142135623730951},"1079":{"tf":2.449489742783178},"1080":{"tf":2.449489742783178},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1093":{"tf":2.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.7320508075688772},"1096":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.7320508075688772},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.7320508075688772},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.7320508075688772},"1271":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.4142135623730951},"1629":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.23606797749979},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":122,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.7320508075688772},"1235":{"tf":1.7320508075688772},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.4142135623730951},"95":{"tf":1.0},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1487":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.23606797749979},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.7320508075688772},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1153":{"tf":2.23606797749979},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":2.0},"1158":{"tf":1.7320508075688772},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.7320508075688772},"1169":{"tf":2.449489742783178},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1177":{"tf":1.7320508075688772},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1181":{"tf":2.23606797749979},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":2.0},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.23606797749979},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":2.23606797749979},"812":{"tf":2.6457513110645907},"813":{"tf":1.7320508075688772},"814":{"tf":2.0},"815":{"tf":2.0},"816":{"tf":2.0},"817":{"tf":2.23606797749979},"818":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"821":{"tf":2.449489742783178},"822":{"tf":1.4142135623730951},"823":{"tf":2.0},"824":{"tf":2.23606797749979},"825":{"tf":2.449489742783178},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":3.3166247903554},"831":{"tf":2.0},"832":{"tf":2.0},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":2.8284271247461903},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":2.0},"857":{"tf":2.449489742783178},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"870":{"tf":1.0},"871":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.7320508075688772},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.7320508075688772},"883":{"tf":2.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.0},"886":{"tf":2.6457513110645907},"887":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"895":{"tf":2.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":2.23606797749979},"912":{"tf":2.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":2.0},"926":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.7320508075688772},"935":{"tf":1.7320508075688772},"936":{"tf":1.7320508075688772},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":2.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.7320508075688772},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":2.0},"959":{"tf":2.23606797749979},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"970":{"tf":2.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.4142135623730951},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":2.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.7320508075688772},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.449489742783178},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":168,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1025":{"tf":1.7320508075688772},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.7320508075688772},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":2.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.7320508075688772},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1049":{"tf":1.4142135623730951},"105":{"tf":1.0},"1050":{"tf":1.7320508075688772},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1054":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"273":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.7320508075688772},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.7320508075688772},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.4142135623730951},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"120":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.4142135623730951},"605":{"tf":1.0},"626":{"tf":1.4142135623730951},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.4142135623730951},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.4142135623730951},"846":{"tf":1.0},"856":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":1.7320508075688772},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.4142135623730951},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"1051":{"tf":1.0},"1220":{"tf":2.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":2.0},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":12,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":2.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":104,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":2.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":3.0},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.7320508075688772},"172":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":2.0},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.23606797749979},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":2.0},"563":{"tf":1.4142135623730951},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"569":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":2.0},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":2.0},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":2.0},"842":{"tf":2.23606797749979},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"508":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.4142135623730951},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.4142135623730951},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.7320508075688772},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.7320508075688772},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.4142135623730951},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.0},"1016":{"tf":1.7320508075688772},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.23606797749979},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.6457513110645907},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.23606797749979},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1553":{"tf":2.0},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.7320508075688772},"715":{"tf":2.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.1622776601683795},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.4142135623730951},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":467,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.449489742783178},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.6457513110645907},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.23606797749979},"1077":{"tf":1.0},"1078":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1125":{"tf":1.0},"113":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1210":{"tf":1.7320508075688772},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"122":{"tf":1.0},"1221":{"tf":2.449489742783178},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":2.0},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":2.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.0},"1293":{"tf":2.23606797749979},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1299":{"tf":2.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.0},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":2.0},"1306":{"tf":1.0},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1316":{"tf":2.23606797749979},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.449489742783178},"1379":{"tf":2.0},"1380":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":2.23606797749979},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":2.449489742783178},"1390":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1393":{"tf":2.23606797749979},"1394":{"tf":2.23606797749979},"1395":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":3.0},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.7320508075688772},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":2.0},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":2.0},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":2.0},"1567":{"tf":2.23606797749979},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.0},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":2.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":2.0},"485":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":2.0},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.23606797749979},"548":{"tf":2.0},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":2.0},"559":{"tf":1.7320508075688772},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":2.0},"721":{"tf":1.0},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"729":{"tf":1.7320508075688772},"730":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":2.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.7320508075688772},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.449489742783178}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":65,"docs":{"1621":{"tf":1.4142135623730951},"436":{"tf":2.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":2.0},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.6457513110645907},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.23606797749979},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.4142135623730951},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.4142135623730951},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.4142135623730951},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":32,"docs":{"0":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":81,"docs":{"1":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.7320508075688772},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"760":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"906":{"tf":1.0},"907":{"tf":1.7320508075688772},"91":{"tf":1.0},"910":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":48,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.4142135623730951},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":2.0},"912":{"tf":2.449489742783178},"913":{"tf":1.0},"914":{"tf":2.23606797749979},"915":{"tf":1.7320508075688772},"916":{"tf":1.7320508075688772},"917":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.23606797749979},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.23606797749979},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"323":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":2.0},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":2.0},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.7320508075688772},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1157":{"tf":2.0},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.4142135623730951},"1311":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1328":{"tf":2.0},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"1045":{"tf":1.4142135623730951},"111":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"1532":{"tf":2.449489742783178},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":2.0},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.4142135623730951},"1571":{"tf":2.23606797749979},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.4142135623730951},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":3.0},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.7320508075688772},"646":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"684":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.0},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.0},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.7320508075688772},"1032":{"tf":1.4142135623730951},"1033":{"tf":2.0},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1487":{"tf":3.1622776601683795},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1389":{"tf":2.6457513110645907},"1390":{"tf":1.0},"1391":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":2.0},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":2.0},"41":{"tf":1.0},"518":{"tf":2.0},"531":{"tf":1.0},"535":{"tf":2.0},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.4142135623730951},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"279":{"tf":1.0},"292":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.4142135623730951},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.4142135623730951},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1619":{"tf":1.4142135623730951},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.4142135623730951},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.6457513110645907},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.4142135623730951},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.0},"667":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.4142135623730951},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.4142135623730951},"1604":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.4142135623730951},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.4142135623730951},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.7320508075688772},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":103,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1416":{"tf":2.8284271247461903},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.23606797749979},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.449489742783178},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.449489742783178},"884":{"tf":1.0},"885":{"tf":1.7320508075688772},"886":{"tf":1.7320508075688772},"887":{"tf":2.449489742783178},"888":{"tf":1.0},"889":{"tf":1.7320508075688772},"890":{"tf":1.7320508075688772},"891":{"tf":2.0},"892":{"tf":2.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":2.23606797749979},"902":{"tf":2.0},"903":{"tf":2.0},"904":{"tf":1.7320508075688772},"905":{"tf":2.0},"906":{"tf":1.4142135623730951},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.7320508075688772},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":83,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.449489742783178},"1213":{"tf":1.7320508075688772},"1214":{"tf":2.23606797749979},"1215":{"tf":3.605551275463989},"1216":{"tf":1.7320508075688772},"1217":{"tf":2.8284271247461903},"1218":{"tf":2.449489742783178},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.7320508075688772},"1221":{"tf":2.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1225":{"tf":1.0},"1226":{"tf":2.8284271247461903},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.7320508075688772},"1229":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1233":{"tf":2.6457513110645907},"1234":{"tf":2.0},"1235":{"tf":2.23606797749979},"1236":{"tf":3.1622776601683795},"1237":{"tf":2.0},"1238":{"tf":2.23606797749979},"1239":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1243":{"tf":2.449489742783178},"1244":{"tf":2.449489742783178},"1245":{"tf":1.7320508075688772},"1246":{"tf":2.23606797749979},"1247":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1329":{"tf":2.23606797749979},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":2.6457513110645907},"1471":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":2.0},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.23606797749979},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"364":{"tf":2.0},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"801":{"tf":3.0},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.4142135623730951},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1559":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":22,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.4142135623730951},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":76,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":2.0},"1347":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":2.0},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.6457513110645907},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":2.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":2.0},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.6457513110645907}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.605551275463989},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":2.0},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.7320508075688772},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1227":{"tf":2.23606797749979},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":23,"docs":{"1058":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"149":{"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},"1593":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"1652":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1030":{"tf":2.0},"1031":{"tf":2.0},"1032":{"tf":1.7320508075688772},"1033":{"tf":2.0},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":2.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.449489742783178},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.449489742783178},"1185":{"tf":2.449489742783178},"1186":{"tf":2.0},"1187":{"tf":1.7320508075688772},"1188":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1196":{"tf":2.23606797749979},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1204":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":2.23606797749979},"1287":{"tf":1.0},"1288":{"tf":2.0},"1289":{"tf":2.0},"1290":{"tf":2.6457513110645907},"1291":{"tf":2.0},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"1345":{"tf":1.0},"135":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1360":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":2.23606797749979},"1385":{"tf":1.0},"139":{"tf":2.23606797749979},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.23606797749979},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.449489742783178},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":44,"docs":{"1313":{"tf":2.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.7320508075688772},"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}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.449489742783178},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":2.0},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":2.0},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"689":{"tf":1.0},"693":{"tf":1.7320508075688772},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":2.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.7320508075688772},"433":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.4142135623730951},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":2.0},"270":{"tf":1.4142135623730951},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.4142135623730951},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.449489742783178},"1433":{"tf":2.0},"1456":{"tf":2.0},"1498":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"49":{"tf":1.0},"492":{"tf":2.23606797749979},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.7320508075688772},"718":{"tf":1.4142135623730951},"728":{"tf":2.23606797749979},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.449489742783178},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.7320508075688772},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":112,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":398,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.4142135623730951},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.23606797749979},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":2.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":2.0},"397":{"tf":1.0},"40":{"tf":2.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.4142135623730951},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"528":{"tf":1.4142135623730951},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.4142135623730951},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"562":{"tf":1.0},"614":{"tf":1.4142135623730951},"636":{"tf":1.0},"733":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1164":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.23606797749979},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":2.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"828":{"tf":1.7320508075688772},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.7320508075688772},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":2.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":22,"docs":{"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":243,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.7320508075688772},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1058":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":2.0},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1555":{"tf":1.4142135623730951},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.7320508075688772},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":2.449489742783178},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.7320508075688772},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":358,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":2.0},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.605551275463989},"1074":{"tf":1.7320508075688772},"108":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"1128":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":2.0},"1404":{"tf":3.0},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.4641016151377544},"1493":{"tf":1.0},"1499":{"tf":3.1622776601683795},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":2.0},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.7320508075688772},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"196":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":2.8284271247461903},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":2.0},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":2.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"319":{"tf":2.8284271247461903},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"48":{"tf":1.0},"485":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"496":{"tf":2.0},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":2.0},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"721":{"tf":1.7320508075688772},"727":{"tf":2.0},"732":{"tf":2.0},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.4142135623730951}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":2.0},"1070":{"tf":2.23606797749979},"1071":{"tf":2.0},"1072":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.4142135623730951},"1084":{"tf":2.23606797749979},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.7320508075688772},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1178":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.7320508075688772},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":2.0},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.449489742783178},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.23606797749979},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.1622776601683795},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":2.0},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":2.0},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.4142135623730951},"947":{"tf":1.0},"957":{"tf":2.0},"977":{"tf":1.0},"978":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":42,"docs":{"1061":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.4142135623730951},"592":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.7320508075688772},"988":{"tf":1.7320508075688772},"989":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.7320508075688772},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":2.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.4142135623730951},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":52,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.4142135623730951},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.7320508075688772}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":111,"docs":{"1015":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.4142135623730951},"916":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.4142135623730951},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":26,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"672":{"tf":1.0},"77":{"tf":1.4142135623730951},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":13,"docs":{"1045":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1315":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"749":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"996":{"tf":1.0}}},"2":{"df":13,"docs":{"1046":{"tf":1.0},"1244":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"41":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"750":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"997":{"tf":1.0}}},"3":{"df":12,"docs":{"1047":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1317":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"751":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"998":{"tf":1.0}}},"4":{"df":5,"docs":{"1048":{"tf":1.0},"1246":{"tf":1.0},"1318":{"tf":1.0},"43":{"tf":1.0},"908":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":6,"docs":{"1049":{"tf":1.0},"1321":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"909":{"tf":1.0}}},"6":{"df":2,"docs":{"1322":{"tf":1.0},"45":{"tf":1.0}}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"a":{"2":{"a":{"df":10,"docs":{"1193":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"358":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1233":{"tf":1.0},"1309":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0}}}}},"d":{"df":9,"docs":{"1262":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"41":{"tf":1.0},"541":{"tf":1.0}}},"df":5,"docs":{"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"335":{"tf":1.0},"880":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"925":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1163":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"603":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"603":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"597":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"613":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"602":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"604":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"608":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"606":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"612":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"612":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"611":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"611":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"598":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"598":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"599":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"607":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"779":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"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":{},"i":{"d":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}}},"df":108,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1069":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1206":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1309":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1581":{"tf":1.0},"159":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"44":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"515":{"tf":1.0},"550":{"tf":1.0},"587":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"855":{"tf":1.0},"89":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"694":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":60,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1501":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1569":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"304":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"941":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"1309":{"tf":1.0},"1391":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"521":{"tf":1.0},"848":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"g":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":21,"docs":{"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1123":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1639":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"1630":{"tf":1.0}},"s":{"df":1,"docs":{"1628":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1307":{"tf":1.0},"1567":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1196":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1348":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":32,"docs":{"1184":{"tf":1.0},"1287":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"301":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"467":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}},"p":{"df":2,"docs":{"1282":{"tf":1.0},"1480":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1195":{"tf":1.0},"1372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"v":{"df":1,"docs":{"44":{"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":4,"docs":{"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"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":{"1278":{"tf":1.0},"130":{"tf":1.0},"812":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1605":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1253":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1166":{"tf":1.0},"1588":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":5,"docs":{"1266":{"tf":1.0},"1292":{"tf":1.0},"1298":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"906":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1287":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":16,"docs":{"1336":{"tf":1.0},"1504":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"346":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"697":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":2,"docs":{"1017":{"tf":1.0},"1200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1603":{"tf":1.0},"1611":{"tf":1.0},"984":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":5,"docs":{"1049":{"tf":1.0},"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"46":{"tf":1.0},"546":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1568":{"tf":1.0}}}}},"o":{"df":3,"docs":{"516":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1532":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1072":{"tf":1.0}}}},"df":7,"docs":{"1148":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"314":{"tf":1.0},"418":{"tf":1.0},"646":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1538":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1023":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1026":{"tf":1.0},"1237":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"21":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"407":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"1156":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1503":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"656":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1418":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1611":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1011":{"tf":1.0},"1534":{"tf":1.0},"509":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1538":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"432":{"tf":1.0},"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1270":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1353":{"tf":1.0},"1354":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1618":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1395":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"1295":{"tf":1.0},"1328":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.0},"381":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1338":{"tf":1.0},"1384":{"tf":1.0},"533":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"1193":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1244":{"tf":1.0},"39":{"tf":1.0},"808":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"813":{"tf":1.0},"875":{"tf":1.0}}}}}}}}},"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1010":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1055":{"tf":1.0},"1071":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1320":{"tf":1.0},"1340":{"tf":1.0},"1589":{"tf":1.0},"1596":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1634":{"tf":1.0},"277":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1056":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1443":{"tf":1.0},"1466":{"tf":1.0},"1580":{"tf":1.0},"1610":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":6,"docs":{"1139":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.0},"1249":{"tf":1.0},"514":{"tf":1.0},"756":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1232":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1058":{"tf":1.0},"1060":{"tf":1.0},"127":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"594":{"tf":1.0},"768":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.0},"120":{"tf":1.0},"1397":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1598":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"583":{"tf":1.0}}}},"df":12,"docs":{"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"583":{"tf":1.0},"750":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1018":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1425":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1367":{"tf":1.0},"1368":{"tf":1.0},"388":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1062":{"tf":1.0},"1079":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"141":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1653":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"429":{"tf":1.0},"510":{"tf":1.0},"662":{"tf":1.0},"799":{"tf":1.0},"808":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"15":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1131":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1023":{"tf":1.0},"142":{"tf":1.0},"1616":{"tf":1.0},"432":{"tf":1.0},"665":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"1219":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1517":{"tf":1.0},"291":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"581":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1068":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"816":{"tf":1.0}}},"s":{"df":1,"docs":{"530":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"824":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1066":{"tf":1.0},"1135":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"807":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"631":{"tf":1.0},"659":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1164":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":6,"docs":{"1491":{"tf":1.0},"1515":{"tf":1.0},"155":{"tf":1.0},"507":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":76,"docs":{"1012":{"tf":1.0},"1016":{"tf":1.0},"1028":{"tf":1.0},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1142":{"tf":1.0},"1198":{"tf":1.0},"1367":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"1634":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"744":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"92":{"tf":1.0},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"979":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1166":{"tf":1.0},"1251":{"tf":1.0},"299":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"225":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"585":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":3,"docs":{"1306":{"tf":1.0},"138":{"tf":1.0},"285":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1175":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"529":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"959":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"902":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1145":{"tf":1.0},"1263":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"337":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"767":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"987":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1228":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1150":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1155":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1403":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1497":{"tf":1.0},"1599":{"tf":1.0},"1609":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.0},"825":{"tf":1.0},"851":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"928":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"159":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1344":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1141":{"tf":1.0},"1187":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1587":{"tf":1.0},"1594":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1067":{"tf":1.0},"1097":{"tf":1.0},"1545":{"tf":1.0},"1639":{"tf":1.0},"226":{"tf":1.0},"420":{"tf":1.0},"64":{"tf":1.0},"648":{"tf":1.0},"864":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"1271":{"tf":1.0},"287":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1169":{"tf":1.0},"1324":{"tf":1.0},"1335":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0},"825":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1646":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":6,"docs":{"30":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1578":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"1124":{"tf":1.0},"1302":{"tf":1.0},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"1011":{"tf":1.0},"1334":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1165":{"tf":1.0},"219":{"tf":1.0},"457":{"tf":1.0},"693":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1626":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.0},"1320":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1373":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1011":{"tf":1.0},"1051":{"tf":1.0},"1274":{"tf":1.0},"1524":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"633":{"tf":1.0},"653":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1190":{"tf":1.0},"1271":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1111":{"tf":1.4142135623730951},"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1544":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"137":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1026":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1196":{"tf":1.0},"120":{"tf":1.0},"1413":{"tf":1.0},"1555":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"197":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1556":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":101,"docs":{"1004":{"tf":1.0},"1005":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1444":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1560":{"tf":1.0},"1563":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"84":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1535":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"321":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1322":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1195":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1099":{"tf":1.4142135623730951},"1640":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1383":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}}}},"b":{"df":3,"docs":{"253":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.0},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"924":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1595":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1338":{"tf":1.0},"1366":{"tf":1.0},"1579":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"898":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1224":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1022":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"829":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1234":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"657":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"1024":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1539":{"tf":1.0},"1541":{"tf":1.0},"1545":{"tf":1.0},"1550":{"tf":1.0},"1555":{"tf":1.0},"1560":{"tf":1.0},"1565":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1577":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"363":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"664":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"i":{"d":{"df":7,"docs":{"128":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1080":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"146":{"tf":1.0},"1476":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"365":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"581":{"tf":1.0},"670":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"753":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"698":{"tf":1.0},"799":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1292":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"481":{"tf":1.0},"516":{"tf":1.0},"717":{"tf":1.0}}}},"t":{"df":5,"docs":{"1425":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1016":{"tf":1.0}},"i":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":4,"docs":{"1264":{"tf":1.0},"1322":{"tf":1.0},"1366":{"tf":1.0},"395":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"537":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"822":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"493":{"tf":1.0},"729":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1150":{"tf":1.0},"1406":{"tf":1.0},"1500":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"1373":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"1551":{"tf":1.0},"1556":{"tf":1.0},"156":{"tf":1.0},"1562":{"tf":1.0},"157":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"330":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1205":{"tf":1.0},"1426":{"tf":1.0},"509":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1594":{"tf":1.0},"1597":{"tf":1.0}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1192":{"tf":1.0},"1282":{"tf":1.0},"1341":{"tf":1.0},"1393":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"761":{"tf":1.0}}}}},"df":1,"docs":{"1319":{"tf":1.0}},"m":{"c":{"df":0,"docs":{},"p":{"df":3,"docs":{"1461":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"568":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":34,"docs":{"1162":{"tf":1.0},"1179":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"249":{"tf":1.0},"479":{"tf":1.0},"54":{"tf":1.0},"715":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"961":{"tf":1.0},"973":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":29,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1526":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"45":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"742":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0},"970":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1146":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"909":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1400":{"tf":1.0},"1618":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1250":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"336":{"tf":1.0},"369":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1080":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"140":{"tf":1.0},"565":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"1070":{"tf":1.0},"1127":{"tf":1.0},"1509":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1644":{"tf":1.0},"312":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"796":{"tf":1.0},"828":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.0},"1382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"1544":{"tf":1.0},"1546":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1566":{"tf":1.0},"161":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"1198":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"1192":{"tf":1.0},"1332":{"tf":1.0},"1351":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"755":{"tf":1.0},"990":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1146":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1320":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1622":{"tf":1.0},"1632":{"tf":1.0},"497":{"tf":1.0},"614":{"tf":1.0},"624":{"tf":1.0},"733":{"tf":1.0},"788":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1007":{"tf":1.0},"1087":{"tf":1.0},"1126":{"tf":1.0},"311":{"tf":1.0},"926":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"515":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1483":{"tf":1.0},"1506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":5,"docs":{"13":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1162":{"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":{"1037":{"tf":1.0},"1535":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"1123":{"tf":1.0},"1137":{"tf":1.0},"1157":{"tf":1.0},"1260":{"tf":1.0},"1332":{"tf":1.0},"1361":{"tf":1.0},"1615":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":17,"docs":{"1046":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"363":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1129":{"tf":1.0},"1319":{"tf":1.0},"295":{"tf":1.0},"498":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1522":{"tf":1.0},"249":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"1489":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"954":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"667":{"tf":1.0},"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1081":{"tf":1.0},"267":{"tf":1.0},"881":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1349":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"1224":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1480":{"tf":1.0},"1650":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"562":{"tf":1.0},"566":{"tf":1.0},"617":{"tf":1.0},"809":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1310":{"tf":1.0},"222":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"1159":{"tf":1.0},"667":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.0},"1413":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"810":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"861":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"989":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"965":{"tf":1.0}}}}},"p":{"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":1,"docs":{"4":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"1013":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"545":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{"1189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1168":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1488":{"tf":1.0}},"i":{"df":5,"docs":{"188":{"tf":1.0},"360":{"tf":1.0},"468":{"tf":1.0},"704":{"tf":1.0},"83":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":26,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"766":{"tf":1.0},"79":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"301":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"760":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":19,"docs":{"1222":{"tf":1.0},"1223":{"tf":1.0},"1232":{"tf":1.0},"1277":{"tf":1.0},"1305":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1437":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"1527":{"tf":1.0},"1648":{"tf":1.0},"332":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"513":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"997":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1261":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1543":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1561":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1176":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1243":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"1059":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"1368":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"16":{"tf":1.0},"1603":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"6":{"tf":1.0},"751":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"594":{"tf":1.0},"637":{"tf":1.0},"768":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"301":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"8":{"tf":1.0},"803":{"tf":1.0}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1561":{"tf":1.0},"244":{"tf":1.0},"45":{"tf":1.0},"811":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"y":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1487":{"tf":1.0},"1530":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1089":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"122":{"tf":1.0},"1238":{"tf":1.0},"125":{"tf":1.0},"1278":{"tf":1.0},"1514":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"156":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"740":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"o":{"a":{"df":4,"docs":{"1393":{"tf":1.0},"553":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"513":{"tf":1.0}}}},"df":8,"docs":{"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"512":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"1020":{"tf":1.0},"1029":{"tf":1.0},"1060":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1198":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"788":{"tf":1.0},"863":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"101":{"tf":1.0},"1503":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"946":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"1394":{"tf":1.0}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"640":{"tf":1.0},"705":{"tf":1.0},"742":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1147":{"tf":1.0},"1319":{"tf":1.0},"1591":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"t":{"df":6,"docs":{"817":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1569":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1049":{"tf":1.0},"1309":{"tf":1.0},"1519":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"394":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"318":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1075":{"tf":1.0},"1559":{"tf":1.0},"198":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}}}}},"o":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.0},"1415":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"741":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"179":{"tf":1.0},"218":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1065":{"tf":1.0},"1194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":37,"docs":{"1191":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"620":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}},"df":1,"docs":{"298":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1149":{"tf":1.4142135623730951},"1210":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1024":{"tf":1.0},"265":{"tf":1.0},"961":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"1619":{"tf":1.0},"1620":{"tf":1.0},"1628":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"637":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"1520":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.0},"1342":{"tf":1.0},"1480":{"tf":1.0},"1577":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":21,"docs":{"1130":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1538":{"tf":1.0},"1615":{"tf":1.0},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1639":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"1277":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"972":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"522":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1549":{"tf":1.0},"1564":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1542":{"tf":1.0},"1552":{"tf":1.0},"396":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1205":{"tf":1.0},"1352":{"tf":1.0},"320":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1199":{"tf":1.0},"325":{"tf":1.0},"525":{"tf":1.0},"964":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"1621":{"tf":1.0},"1632":{"tf":1.0},"430":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"1371":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"1086":{"tf":1.0},"1311":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"210":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1423":{"tf":1.0},"1611":{"tf":1.0},"268":{"tf":1.0},"278":{"tf":1.0},"550":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1354":{"tf":1.0},"1385":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1420":{"tf":1.0},"1627":{"tf":1.0},"407":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":27,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":18,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1269":{"tf":1.0},"1358":{"tf":1.0},"1428":{"tf":1.0},"1617":{"tf":1.0},"1642":{"tf":1.0},"303":{"tf":1.0},"398":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"853":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"998":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"df":6,"docs":{"1152":{"tf":1.0},"1188":{"tf":1.0},"1625":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"933":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"401":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1596":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1587":{"tf":1.0},"1589":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"1361":{"tf":1.0},"1518":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"981":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"1384":{"tf":1.0},"1609":{"tf":1.0},"760":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"1182":{"tf":1.0},"1217":{"tf":1.0},"1256":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"239":{"tf":1.0},"490":{"tf":1.0},"726":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1321":{"tf":1.0},"1322":{"tf":1.0},"1506":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"174":{"tf":1.0},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"449":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"72":{"tf":1.0},"797":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"38":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1187":{"tf":1.0},"42":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"1530":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1366":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"1511":{"tf":1.0},"1579":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"474":{"tf":1.0},"525":{"tf":1.0},"710":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1090":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":15,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"308":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"635":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"739":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":2,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1046":{"tf":1.0},"1548":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"1178":{"tf":1.0},"1249":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1515":{"tf":1.0},"35":{"tf":1.0},"507":{"tf":1.0},"511":{"tf":1.0},"753":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1167":{"tf":1.0},"1236":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1343":{"tf":1.0},"549":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1131":{"tf":1.0},"274":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1090":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1352":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"18":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}},"p":{"df":2,"docs":{"151":{"tf":1.0},"630":{"tf":1.0}},"e":{"df":1,"docs":{"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1311":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"143":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"176":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.0},"660":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1368":{"tf":1.0},"3":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"1048":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1095":{"tf":1.0},"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1111":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1094":{"tf":1.0}},"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":{"1314":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"995":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1075":{"tf":1.0},"1241":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1546":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1655":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1003":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1418":{"tf":1.0},"1469":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1282":{"tf":1.0},"1525":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"641":{"tf":1.0},"744":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1167":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"838":{"tf":1.0},"889":{"tf":1.0},"917":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1193":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"534":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1201":{"tf":1.0},"1202":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"1191":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":2,"docs":{"1388":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1622":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"1230":{"tf":1.0},"1254":{"tf":1.0},"1257":{"tf":1.0},"1268":{"tf":1.0},"1357":{"tf":1.0},"1451":{"tf":1.0},"1642":{"tf":1.0},"302":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":1.0},"640":{"tf":1.0},"746":{"tf":1.0},"852":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"1062":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"441":{"tf":1.0}}}}}},"df":4,"docs":{"1273":{"tf":1.0},"1485":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1207":{"tf":1.0},"1373":{"tf":1.0},"298":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1235":{"tf":1.0}}}},"t":{"df":1,"docs":{"989":{"tf":1.0}}},"w":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"1176":{"tf":1.0},"1360":{"tf":1.0},"193":{"tf":1.0}},"i":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1203":{"tf":1.0},"1240":{"tf":1.0},"1384":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"38":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1086":{"tf":1.0},"1087":{"tf":1.0},"1174":{"tf":1.0},"118":{"tf":1.0},"1557":{"tf":1.0},"313":{"tf":1.0},"329":{"tf":1.0},"380":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.0},"1066":{"tf":1.0}}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1060":{"tf":1.0},"1303":{"tf":1.0},"1362":{"tf":1.0},"1398":{"tf":1.0},"1482":{"tf":1.0},"1512":{"tf":1.0},"1598":{"tf":1.0},"253":{"tf":1.0},"440":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"674":{"tf":1.0},"765":{"tf":1.0},"830":{"tf":1.0},"921":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1256":{"tf":1.0},"1330":{"tf":1.0},"508":{"tf":1.0},"751":{"tf":1.0}},"r":{"df":1,"docs":{"866":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1162":{"tf":1.0},"1260":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"892":{"tf":1.0},"900":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1619":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"1259":{"tf":1.0},"1272":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"1038":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"730":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1039":{"tf":1.0},"1575":{"tf":1.0},"495":{"tf":1.0},"545":{"tf":1.0},"731":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"1068":{"tf":1.0},"145":{"tf":1.0},"1528":{"tf":1.0},"1548":{"tf":1.0},"1558":{"tf":1.0},"165":{"tf":1.0},"249":{"tf":1.0},"322":{"tf":1.0},"399":{"tf":1.0},"54":{"tf":1.0},"628":{"tf":1.0},"827":{"tf":1.0},"837":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1074":{"tf":1.0},"122":{"tf":1.0},"1514":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":7,"docs":{"1040":{"tf":1.0},"1576":{"tf":1.0},"289":{"tf":1.0},"496":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"732":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"1386":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1099":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"1009":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1343":{"tf":1.0},"314":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"a":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1061":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":1,"docs":{"44":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1250":{"tf":1.0},"1271":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.0},"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1147":{"tf":1.0}}}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"1229":{"tf":1.0},"1235":{"tf":1.0},"166":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"5":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"3":{"df":3,"docs":{"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"364":{"tf":1.0},"801":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1275":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"385":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"350":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":54,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1158":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1505":{"tf":1.0},"1562":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"821":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"978":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"988":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1417":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1350":{"tf":1.0},"1391":{"tf":1.0},"521":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1013":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.0},"1132":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1537":{"tf":1.0},"237":{"tf":1.0},"273":{"tf":1.0},"324":{"tf":1.0},"40":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1396":{"tf":1.0},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1656":{"tf":1.0},"465":{"tf":1.0},"626":{"tf":1.0},"702":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1043":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1597":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"582":{"tf":1.0}}}},"df":18,"docs":{"1252":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"562":{"tf":1.0},"569":{"tf":1.0},"573":{"tf":1.0},"582":{"tf":1.0},"749":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"46":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1021":{"tf":1.0},"1529":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":17,"docs":{"1214":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1643":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1594":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1056":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1381":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"1003":{"tf":1.0},"1014":{"tf":1.0},"1016":{"tf":1.0},"1073":{"tf":1.0},"1078":{"tf":1.0},"1128":{"tf":1.0},"1208":{"tf":1.0},"1319":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1550":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"160":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"66":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"865":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":70,"docs":{"1004":{"tf":1.0},"1039":{"tf":1.0},"106":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1221":{"tf":1.0},"124":{"tf":1.0},"1266":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1307":{"tf":1.0},"1316":{"tf":1.0},"1346":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1442":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0},"1554":{"tf":1.0},"1567":{"tf":1.0},"1582":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"516":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"541":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"724":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"739":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"907":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"459":{"tf":1.0},"695":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"446":{"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":1,"docs":{"987":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"1621":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1533":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"479":{"tf":1.0},"715":{"tf":1.0},"840":{"tf":1.0},"891":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1370":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"1":{"tf":1.0},"1399":{"tf":1.0},"189":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0}}},"u":{"df":8,"docs":{"1083":{"tf":1.0},"1443":{"tf":1.0},"1466":{"tf":1.0},"290":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0},"938":{"tf":1.0}}}},"y":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":38,"docs":{"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1311":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1385":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1045":{"tf":1.0},"1144":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"1647":{"tf":1.0},"229":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"643":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1030":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"1180":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1389":{"tf":1.0},"532":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1391":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":5,"docs":{"1219":{"tf":1.0},"1352":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"734":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1362":{"tf":1.0},"1585":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"901":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1388":{"tf":1.0},"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1042":{"tf":1.0},"1085":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"176":{"tf":1.0},"410":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"747":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1622":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1312":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1630":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":26,"docs":{"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"891":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1228":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1329":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1471":{"tf":1.0},"1582":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"668":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1620":{"tf":1.0},"364":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"801":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1000":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1400":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1372":{"tf":1.0},"1559":{"tf":1.0},"297":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1014":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}}},"l":{"df":1,"docs":{"1010":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"946":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1189":{"tf":1.0},"1240":{"tf":1.0},"1256":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"533":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.0},"930":{"tf":1.0},"992":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1586":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"986":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1521":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0}}},"k":{"df":3,"docs":{"1376":{"tf":1.0},"277":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":1,"docs":{"1380":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1078":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1227":{"tf":1.0},"1253":{"tf":1.0},"505":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"1594":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"1002":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1267":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"325":{"tf":1.0},"810":{"tf":1.0},"990":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"454":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"1220":{"tf":1.0},"1385":{"tf":1.0},"528":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"1298":{"tf":1.0},"220":{"tf":1.0},"263":{"tf":1.0},"337":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"585":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"693":{"tf":1.0},"800":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"623":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1425":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1216":{"tf":1.0},"895":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1554":{"tf":1.0},"270":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"348":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"879":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":6,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"466":{"tf":1.0},"567":{"tf":1.0},"703":{"tf":1.0}}}},"df":50,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1195":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.0},"1339":{"tf":1.0},"1353":{"tf":1.0},"1422":{"tf":1.0},"173":{"tf":1.0},"280":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"439":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"528":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"673":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"818":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"497":{"tf":1.0},"614":{"tf":1.0},"733":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"89":{"tf":1.0},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":3,"docs":{"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1010":{"tf":1.0},"1014":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1505":{"tf":1.0},"1556":{"tf":1.0},"1562":{"tf":1.0},"1594":{"tf":1.0},"1610":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1083":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"1234":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1200":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1579":{"tf":1.0},"259":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1391":{"tf":1.0},"521":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":39,"docs":{"1019":{"tf":1.0},"1021":{"tf":1.0},"1026":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1364":{"tf":1.0},"1378":{"tf":1.0},"1414":{"tf":1.0},"1419":{"tf":1.0},"1551":{"tf":1.0},"1555":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1584":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1654":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"719":{"tf":1.0},"846":{"tf":1.0},"929":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"460":{"tf":1.0},"696":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":56,"docs":{"1005":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1266":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1318":{"tf":1.0},"1351":{"tf":1.0},"1383":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1432":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1499":{"tf":1.0},"1514":{"tf":1.0},"1581":{"tf":1.0},"1603":{"tf":1.0},"1609":{"tf":1.0},"1611":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"349":{"tf":1.0},"404":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"545":{"tf":1.0},"634":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"805":{"tf":1.0},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"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":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1327":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"445":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1081":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"145":{"tf":1.0},"1484":{"tf":1.0},"1564":{"tf":1.0},"1616":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"823":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"657":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":14,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1352":{"tf":1.0},"253":{"tf":1.0},"51":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1629":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"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":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1015":{"tf":1.0},"1027":{"tf":1.0},"1183":{"tf":1.0},"1197":{"tf":1.0},"1390":{"tf":1.0},"1504":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"344":{"tf":1.0},"486":{"tf":1.0},"556":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"908":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"1313":{"tf":1.0},"1356":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.0},"1505":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"904":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"505":{"tf":1.0},"760":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1324":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"1515":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"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/jacs/docs/jacsbook/book/searchindex.json b/jacs/docs/jacsbook/book/searchindex.json index 0848185f..a5b22096 100644 --- a/jacs/docs/jacsbook/book/searchindex.json +++ b/jacs/docs/jacsbook/book/searchindex.json @@ -1 +1 @@ -{"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#start-with-the-deployment","index.html#what-jacs-gives-you","index.html#best-entry-points","index.html#implementations","index.html#rust","index.html#python-jacs","index.html#nodejs-haiaijacs","index.html#go-jacsgo","index.html#quick-start","index.html#rust-cli","index.html#python","index.html#nodejs","index.html#go","index.html#what-this-book-does-not-claim","index.html#community","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/decision-tree.html#which-jacs-path-should-i-use","getting-started/decision-tree.html#start-here","getting-started/decision-tree.html#when-you-probably-do-not-need-jacs","getting-started/decision-tree.html#recommended-adoption-order","usecases.html#use-cases","usecases.html#1-secure-a-local-mcp-tool-server","usecases.html#2-add-provenance-to-langchain-or-langgraph","usecases.html#3-exchange-signed-artifacts-across-organizations","usecases.html#4-sign-http-or-api-boundaries-without-mcp","usecases.html#5-run-multi-agent-approval-workflows","usecases.html#6-keep-signed-files-or-json-as-durable-artifacts","usecases.html#7-publish-public-identity-without-a-central-auth-service","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#zero-config-quick-start","getting-started/quick-start.html#password-bootstrap","getting-started/quick-start.html#macos-homebrew-install-rust-cli","getting-started/quick-start.html#mcp-server-rust-cli","getting-started/quick-start.html#advanced-explicit-agent-setup","getting-started/quick-start.html#install","getting-started/quick-start.html#initialize","getting-started/quick-start.html#sign-a-document","getting-started/quick-start.html#install-1","getting-started/quick-start.html#load-and-use","getting-started/quick-start.html#install-2","getting-started/quick-start.html#load-and-use-1","getting-started/quick-start.html#programmatic-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","getting-started/multi-agent-agreement.html#multi-agent-agreements","getting-started/multi-agent-agreement.html#the-lifecycle","getting-started/multi-agent-agreement.html#python","getting-started/multi-agent-agreement.html#nodejs--typescript","getting-started/multi-agent-agreement.html#what-just-happened","getting-started/multi-agent-agreement.html#next-steps","getting-started/verification.html#verifying-signed-documents","getting-started/verification.html#cli-jacs-verify","getting-started/verification.html#python","getting-started/verification.html#with-an-agent-loaded","getting-started/verification.html#without-an-agent-standalone","getting-started/verification.html#verify-by-document-id","getting-started/verification.html#nodejs","getting-started/verification.html#with-an-agent-loaded-1","getting-started/verification.html#without-an-agent-standalone-1","getting-started/verification.html#verify-by-document-id-1","getting-started/verification.html#verification-links","getting-started/verification.html#dns-verification","getting-started/verification.html#publishing-a-dns-record","getting-started/verification.html#looking-up-an-agent-by-domain","getting-started/verification.html#cli-verification-with-dns","getting-started/verification.html#cross-language-verification","getting-started/verification.html#key-resolution-order","getting-started/attestation.html#what-is-an-attestation","getting-started/attestation.html#signing-vs-attestation","getting-started/attestation.html#key-concepts","getting-started/attestation.html#subject","getting-started/attestation.html#claims","getting-started/attestation.html#evidence","getting-started/attestation.html#derivation-chain","getting-started/attestation.html#architecture-layers","getting-started/attestation.html#quick-example","getting-started/attestation.html#attestation-vs-a2a-trust-policy","getting-started/attestation.html#when-to-use-attestations","getting-started/trust-layers.html#jacs-trust-layers","getting-started/trust-layers.html#the-three-layers","getting-started/trust-layers.html#layer-a-identity--integrity-jacs-core","getting-started/trust-layers.html#layer-b-exchange--discovery-a2a-integration","getting-started/trust-layers.html#layer-c-trust-context-attestation","getting-started/trust-layers.html#terminology-glossary","getting-started/trust-layers.html#quick-decision-flow","getting-started/trust-layers.html#common-misconceptions","getting-started/deployment.html#deployment-compatibility","getting-started/deployment.html#supported-platforms","getting-started/deployment.html#not-yet-supported","getting-started/deployment.html#version-requirements","getting-started/deployment.html#docker-example","getting-started/deployment.html#lambda-deployment","getting-started/deployment.html#building-from-source","getting-started/troubleshooting.html#troubleshooting","getting-started/troubleshooting.html#installation-issues","getting-started/troubleshooting.html#pip-install-fails","getting-started/troubleshooting.html#npm-install-fails","getting-started/troubleshooting.html#alpine-linux--musl-libc","getting-started/troubleshooting.html#configuration-issues","getting-started/troubleshooting.html#config-not-found","getting-started/troubleshooting.html#private-key-decryption-failed","getting-started/troubleshooting.html#algorithm-detection-failed","getting-started/troubleshooting.html#runtime-issues","getting-started/troubleshooting.html#agent-creation-fails","getting-started/troubleshooting.html#signature-verification-fails","getting-started/troubleshooting.html#documents-not-found","getting-started/troubleshooting.html#building-from-source","getting-started/troubleshooting.html#getting-help","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-homebrew-macos","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#mcp-server","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-tutorial","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#mcp-server","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#detailed-service-example","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#agreement-options-v062","rust/agreements.html#timeout","rust/agreements.html#quorum-m-of-n-signing","rust/agreements.html#algorithm-constraints","rust/agreements.html#combined-options","rust/agreements.html#using-jacsclient-instance-based-api","rust/agreements.html#python","rust/agreements.html#nodejs","rust/agreements.html#mcp-tools-for-agreements","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability-rust-api","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-and-simple-api","nodejs/installation.html#instance-based-client-recommended-for-new-code","nodejs/installation.html#mcp-haiaijacsmcp","nodejs/installation.html#http--framework-adapters","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#local-indexed-sqlite","nodejs/installation.html#aws-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#v070-async-first-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#quickstartoptions","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#v070-async-first-api","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#mcp-integration-nodejs","nodejs/mcp.html#install","nodejs/mcp.html#1-wrap-a-transport","nodejs/mcp.html#with-a-loaded-client","nodejs/mcp.html#with-only-a-config-path","nodejs/mcp.html#2-register-jacs-tools-on-your-mcp-server","nodejs/mcp.html#failure-behavior","nodejs/mcp.html#common-pattern","nodejs/mcp.html#example-paths-in-this-repo","nodejs/mcp.html#when-to-use-langchain-instead","nodejs/langchain.html#langchainjs-integration","nodejs/langchain.html#choose-the-pattern","nodejs/langchain.html#give-the-agent-jacs-tools","nodejs/langchain.html#auto-sign-existing-tools","nodejs/langchain.html#install","nodejs/langchain.html#strict-mode","nodejs/langchain.html#examples-in-this-repo","nodejs/langchain.html#when-to-use-mcp-instead","nodejs/vercel-ai.html#vercel-ai-sdk","nodejs/vercel-ai.html#5-minute-quickstart","nodejs/vercel-ai.html#1-install","nodejs/vercel-ai.html#2-create-a-jacs-client","nodejs/vercel-ai.html#3-sign-every-model-output","nodejs/vercel-ai.html#quick-start","nodejs/vercel-ai.html#installation","nodejs/vercel-ai.html#two-ways-to-use","nodejs/vercel-ai.html#withprovenance-convenience","nodejs/vercel-ai.html#jacsprovenance-composable","nodejs/vercel-ai.html#options","nodejs/vercel-ai.html#streaming","nodejs/vercel-ai.html#tool-call-signing","nodejs/vercel-ai.html#provenance-record","nodejs/vercel-ai.html#strict-mode","nodejs/vercel-ai.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#5-minute-quickstart","nodejs/express.html#1-install","nodejs/express.html#2-create-a-jacs-client","nodejs/express.html#3-add-signing-middleware","nodejs/express.html#quick-start","nodejs/express.html#options","nodejs/express.html#what-the-middleware-does","nodejs/express.html#verify-incoming-requests","nodejs/express.html#auth-replay-protection-auth-endpoints","nodejs/express.html#auto-sign-responses","nodejs/express.html#manual-signing-in-routes","nodejs/express.html#per-route-middleware","nodejs/express.html#multiple-agents","nodejs/express.html#migration-from-jacsexpressmiddleware","nodejs/express.html#next-steps","nodejs/koa.html#koa-middleware","nodejs/koa.html#quick-start","nodejs/koa.html#options","nodejs/koa.html#how-it-works","nodejs/koa.html#auth-replay-protection-auth-endpoints","nodejs/koa.html#auto-sign-responses","nodejs/koa.html#manual-signing","nodejs/koa.html#comparison-with-express","nodejs/koa.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#v070-async-first-api","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath--agentloadsyncconfigpath","nodejs/api.html#agentcreatedocument--agentcreatedocumentsync","nodejs/api.html#agentverifydocument--agentverifydocumentsync","nodejs/api.html#agentverifysignature--agentverifysignaturesync","nodejs/api.html#agentupdatedocument--agentupdatedocumentsync","nodejs/api.html#agentcreateagreement--agentcreateagreementsync","nodejs/api.html#agentsignagreement--agentsignagreementsync","nodejs/api.html#agentcheckagreement--agentcheckagreementsync","nodejs/api.html#agentsignartifact--agentsignartifactsync","nodejs/api.html#agentwrapa2aartifact--agentwrapa2aartifactsync","nodejs/api.html#agentsignstring--agentsignstringsync","nodejs/api.html#agentverifystring--agentverifystringsync","nodejs/api.html#agentsignrequestparams----v8-thread-only","nodejs/api.html#agentverifyresponsedocumentstring----v8-thread-only","nodejs/api.html#agentverifyresponsewithagentiddocumentstring----v8-thread-only","nodejs/api.html#agentverifyagent--agentverifyagentsync","nodejs/api.html#agentupdateagent--agentupdateagentsync","nodejs/api.html#agentsignagent--agentsignagentsync","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#local-indexed-sqlite","python/installation.html#aws-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#quickstartname-domain-descriptionnone-algorithmnone-config_pathnone","python/simple-api.html#loadconfig_pathnone-strictnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#verify_by_iddocument_id","python/simple-api.html#reencrypt_keyold_password-new_password","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration-python","python/mcp.html#what-is-supported","python/mcp.html#important-constraints","python/mcp.html#1-secure-a-fastmcp-server","python/mcp.html#2-secure-a-fastmcp-client","python/mcp.html#3-register-jacs-as-mcp-tools","python/mcp.html#useful-helper-apis","python/mcp.html#example-paths-in-this-repo","python/mcp.html#when-to-use-adapters-instead","python/adapters.html#framework-adapters","python/adapters.html#choose-the-adapter","python/adapters.html#langchain--langgraph","python/adapters.html#langchain-middleware","python/adapters.html#langgraph-toolnode","python/adapters.html#wrap-one-tool-instead-of-the-whole-graph","python/adapters.html#fastapi--starlette","python/adapters.html#crewai","python/adapters.html#anthropic--claude-sdk","python/adapters.html#when-to-use-mcp-instead","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentwrap_a2a_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","go/installation.html#go-jacsgo-installation-and-quick-start","go/installation.html#install","go/installation.html#minimal-sign--verify","go/installation.html#programmatic-agent-creation","go/installation.html#concurrent-use","go/installation.html#common-go-use-cases","go/installation.html#mcp-and-http-patterns","go/installation.html#identity-and-trust-notes","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#config-file-schema","schemas/configuration.html#schema-location","schemas/configuration.html#minimal-configuration","schemas/configuration.html#fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-fields","schemas/configuration.html#environment-variables","schemas/configuration.html#see-also","concepts/attestation-comparison.html#jacs-attestation-vs-other-standards","concepts/attestation-comparison.html#comparison-table","concepts/attestation-comparison.html#jacs-vs-in-toto--slsa","concepts/attestation-comparison.html#jacs-vs-sigstore--cosign","concepts/attestation-comparison.html#jacs-vs-scitt","concepts/attestation-comparison.html#jacs-vs-ietf-rats--eat","concepts/attestation-comparison.html#jacs-vs-csa-agentic-trust-framework","concepts/attestation-comparison.html#when-to-use-jacs","concepts/attestation-comparison.html#when-to-use-jacs-alongside-other-tools","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/algorithm-guide.html#algorithm-selection-guide","advanced/algorithm-guide.html#supported-algorithms","advanced/algorithm-guide.html#how-to-choose","advanced/algorithm-guide.html#when-to-choose-post-quantum","advanced/algorithm-guide.html#cross-algorithm-verification","advanced/algorithm-guide.html#configuration","advanced/algorithm-guide.html#current-limitations","advanced/storage.html#storage-backends","advanced/storage.html#built-in-core-backends","advanced/storage.html#filesystem-fs","advanced/storage.html#local-indexed-sqlite-rusqlite","advanced/storage.html#aws-aws","advanced/storage.html#memory-memory","advanced/storage.html#extracted-backend-crates","advanced/storage.html#choosing-a-backend","advanced/storage.html#migration-notes","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/trust-store.html#trust-store-operations","advanced/trust-store.html#how-it-works","advanced/trust-store.html#api","advanced/trust-store.html#python-example","advanced/trust-store.html#nodejs-example","advanced/trust-store.html#cross-organization-scenario","advanced/trust-store.html#security-notes","advanced/infrastructure.html#infrastructure-vs-tools-jacs-as-middleware","advanced/infrastructure.html#the-difference","advanced/infrastructure.html#transport-level-mcp-proxies","advanced/infrastructure.html#framework-level-express--fastapi-middleware","advanced/infrastructure.html#protocol-level-a2a-agent-cards","advanced/infrastructure.html#why-this-matters","advanced/infrastructure.html#when-to-use-each-approach","advanced/dns-trust.html#dns-trust-anchoring","advanced/dns-trust.html#how-it-works","advanced/dns-trust.html#four-configuration-levels","advanced/dns-trust.html#security-model-assumptions","advanced/dns-trust.html#known-attack-vectors","advanced/dns-trust.html#what-jacs-provides","advanced/dns-trust.html#what-jacs-does-not-yet-provide","advanced/dns-trust.html#recommendations","advanced/dns-trust.html#see-also","advanced/failure-modes.html#failure-modes","advanced/failure-modes.html#partial-signing-agent-crash","advanced/failure-modes.html#quorum-not-met","advanced/failure-modes.html#tampered-signature","advanced/failure-modes.html#tampered-document-body","advanced/failure-modes.html#in-memory-consistency-after-signing","advanced/failure-modes.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#mcp-overview","integrations/mcp.html#choose-the-mcp-path","integrations/mcp.html#best-fit-by-runtime","integrations/mcp.html#important-constraints","integrations/mcp.html#1-ready-made-server-jacs-mcp","integrations/mcp.html#2-transport-security-around-your-existing-mcp-code","integrations/mcp.html#python","integrations/mcp.html#nodejs","integrations/mcp.html#3-register-jacs-operations-as-mcp-tools","integrations/mcp.html#python-1","integrations/mcp.html#nodejs-1","integrations/mcp.html#example-paths-in-this-repo","integrations/mcp.html#related-guides","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds-to-a2a","integrations/a2a.html#the-core-flow","integrations/a2a.html#1-export-an-agent-card","integrations/a2a.html#2-serve-discovery-documents","integrations/a2a.html#3-sign-and-verify-artifacts","integrations/a2a.html#trust-policies","integrations/a2a.html#python","integrations/a2a.html#nodejs","integrations/a2a.html#bootstrap-patterns","integrations/a2a.html#current-runtime-differences","integrations/a2a.html#example-paths-in-this-repo","guides/a2a-quickstart.html#a2a-quickstart","guides/a2a-quickstart.html#jacs-for-a2a-developers","guides/a2a-quickstart.html#what-stays-the-same","guides/a2a-quickstart.html#what-jacs-adds","guides/a2a-quickstart.html#minimal-integration-add-jacs-to-existing-a2a-code","guides/a2a-quickstart.html#dual-key-architecture","guides/a2a-quickstart.html#troubleshooting-faq","guides/a2a-quickstart.html#next-steps","guides/a2a-serve.html#serve-your-agent-card","guides/a2a-serve.html#production-mount-into-your-own-fastapi-app","guides/a2a-serve.html#what-gets-served","guides/a2a-serve.html#next-steps","guides/a2a-discover.html#discover--trust-remote-agents","guides/a2a-discover.html#add-to-your-trust-store","guides/a2a-discover.html#async-api","guides/a2a-discover.html#add-to-your-trust-store-1","guides/a2a-discover.html#trust-policies","guides/a2a-discover.html#how-trust-flows","guides/a2a-discover.html#next-steps","guides/a2a-exchange.html#exchange-signed-artifacts","guides/a2a-exchange.html#sign-and-verify","guides/a2a-exchange.html#chain-of-custody","guides/a2a-exchange.html#build-an-audit-trail","guides/a2a-exchange.html#sign-and-verify-1","guides/a2a-exchange.html#chain-of-custody-1","guides/a2a-exchange.html#artifact-types","guides/a2a-exchange.html#what-gets-signed","guides/a2a-exchange.html#next-steps","guides/sign-vs-attest.html#sign-vs-attest-when-to-use-which","guides/sign-vs-attest.html#decision-tree","guides/sign-vs-attest.html#quick-reference","guides/sign-vs-attest.html#examples","guides/sign-vs-attest.html#just-need-integrity-use-signing","guides/sign-vs-attest.html#need-trust-context-use-attestation","guides/sign-vs-attest.html#already-signed-lift-to-attestation","guides/sign-vs-attest.html#common-patterns","guides/sign-vs-attest.html#ai-agent-action-logging","guides/sign-vs-attest.html#human-review-attestation","guides/sign-vs-attest.html#multi-step-pipeline","guides/sign-vs-attest.html#cross-system-verification","guides/attestation-tutorial.html#tutorial-add-attestations-to-your-workflow","guides/attestation-tutorial.html#prerequisites","guides/attestation-tutorial.html#step-1-create-an-agent","guides/attestation-tutorial.html#step-2-sign-a-document","guides/attestation-tutorial.html#step-3-create-an-attestation","guides/attestation-tutorial.html#step-4-verify-the-attestation","guides/attestation-tutorial.html#local-verification-fast----signature--hash-only","guides/attestation-tutorial.html#full-verification-thorough----includes-evidence--derivation-chain","guides/attestation-tutorial.html#step-5-add-evidence-optional","guides/attestation-tutorial.html#step-6-export-as-dsse-optional","guides/attestation-tutorial.html#whats-next","guides/custom-adapters.html#writing-a-custom-evidence-adapter","guides/custom-adapters.html#what-is-an-evidenceadapter","guides/custom-adapters.html#the-normalize-contract","guides/custom-adapters.html#the-verify_evidence-contract","guides/custom-adapters.html#step-by-step-building-a-jwt-adapter","guides/custom-adapters.html#testing-your-adapter","guides/custom-adapters.html#registering-your-adapter-with-the-agent","guides/custom-adapters.html#privacy-considerations","guides/framework-attestation.html#framework-adapter-attestation-guide","guides/framework-attestation.html#common-patterns","guides/framework-attestation.html#default-claims","guides/framework-attestation.html#custom-claims","guides/framework-attestation.html#evidence-attachment","guides/framework-attestation.html#langchain","guides/framework-attestation.html#enabling-attestation-on-tool-calls","guides/framework-attestation.html#using-the-signed_tool-decorator","guides/framework-attestation.html#with-langchain-chains","guides/framework-attestation.html#fastapi","guides/framework-attestation.html#attestation-middleware","guides/framework-attestation.html#per-route-attestation","guides/framework-attestation.html#crewai","guides/framework-attestation.html#attestation-guardrails","guides/framework-attestation.html#signed-tasks","guides/framework-attestation.html#jacssignedtool","guides/framework-attestation.html#anthropic","guides/framework-attestation.html#tool-hook-attestation","guides/framework-attestation.html#with-the-anthropic-sdk","guides/framework-attestation.html#verifying-framework-attestations","guides/framework-attestation.html#strict-vs-permissive-mode","guides/a2a-attestation-composition.html#a2a--attestation-using-both-together","guides/a2a-attestation-composition.html#when-you-need-both","guides/a2a-attestation-composition.html#the-composition-rule","guides/a2a-attestation-composition.html#example-workflow","guides/a2a-attestation-composition.html#python","guides/a2a-attestation-composition.html#nodejs","guides/a2a-attestation-composition.html#what-not-to-do","guides/a2a-attestation-composition.html#further-reading","guides/observability.html#observability--monitoring-guide","guides/observability.html#structured-event-reference","guides/observability.html#signing-events","guides/observability.html#verification-events","guides/observability.html#agreement-events","guides/observability.html#enabling-otel-export","guides/observability.html#otel-collector-configuration","guides/observability.html#pointing-jacs-at-the-collector","guides/observability.html#feeding-events-to-datadog","guides/observability.html#feeding-events-to-splunk","guides/observability.html#agreement-monitoring","guides/observability.html#agreements-approaching-timeout","guides/observability.html#failed-quorum-detection","guides/observability.html#signature-velocity","guides/observability.html#expiry-alerts","guides/observability.html#latency-tracking","guides/observability.html#next-steps","guides/email-signing.html#email-signing-and-verification","guides/email-signing.html#signing-an-email","guides/email-signing.html#the-emailsigner-trait","guides/email-signing.html#what-sign_email-does-internally","guides/email-signing.html#forwarding-re-signing","guides/email-signing.html#verifying-an-email","guides/email-signing.html#one-call-api-recommended","guides/email-signing.html#two-step-api-when-you-need-the-jacs-document","guides/email-signing.html#field-level-results","guides/email-signing.html#the-jacs-signature-document","guides/email-signing.html#public-api-summary","guides/streaming.html#streaming-signing","guides/streaming.html#how-it-works-by-framework","guides/streaming.html#vercel-ai-sdk-streamtext","guides/streaming.html#langchain--langgraph","guides/streaming.html#express--koa--fastapi","guides/streaming.html#raw-llm-apis-no-framework-adapter","guides/streaming.html#when-not-to-buffer","guides/streaming.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#mcp","examples/integrations.html#langchain--langgraph","examples/integrations.html#a2a","examples/integrations.html#http--app-middleware","examples/integrations.html#rule-of-thumb","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-quickstart","reference/cli-commands.html#jacs-verify","reference/cli-commands.html#jacs-keychain","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#zero-config-path","reference/configuration.html#minimal-configuration","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#os-keychain-configuration","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#documentservice-guarantees","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/attestation-errors.html#attestation-verification-results","reference/attestation-errors.html#result-structure","reference/attestation-errors.html#top-level-fields","reference/attestation-errors.html#crypto-object","reference/attestation-errors.html#evidence-array-full-tier-only","reference/attestation-errors.html#chain-object-full-tier-only","reference/attestation-errors.html#verification-tiers","reference/attestation-errors.html#local-tier-verify_attestation","reference/attestation-errors.html#full-tier-verify_attestationfulltrue","reference/attestation-errors.html#troubleshooting","reference/attestation-errors.html#valid-is-false-but-crypto-shows-all-true","reference/attestation-errors.html#evidence-is-empty","reference/attestation-errors.html#chain-is-null","reference/attestation-errors.html#signature_valid-is-false-after-serialization","reference/attest-cli.html#cli-reference-jacs-attest","reference/attest-cli.html#jacs-attest-create","reference/attest-cli.html#synopsis","reference/attest-cli.html#options","reference/attest-cli.html#examples","reference/attest-cli.html#jacs-attest-verify","reference/attest-cli.html#synopsis-1","reference/attest-cli.html#arguments","reference/attest-cli.html#options-1","reference/attest-cli.html#examples-1","reference/attest-cli.html#piping-and-scripting-patterns","reference/attest-cli.html#create-and-verify-in-one-pipeline","reference/attest-cli.html#check-validity-in-a-script","reference/attest-cli.html#batch-verify-multiple-attestations","reference/attest-cli.html#exit-codes","reference/attest-cli.html#environment-variables","reference/attest-cli.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-nodejs-from-06x-to-070","reference/migration.html#breaking-change-async-first-api","reference/migration.html#method-renaming-summary","reference/migration.html#v8-thread-only-methods-no-change","reference/migration.html#simplified-api-module-level","reference/migration.html#pure-sync-functions-no-change","reference/migration.html#migration-steps","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#deprecated-method-aliases-090","reference/migration.html#runtime-deprecation-warnings","reference/migration.html#deprecated-alias-table","reference/migration.html#migration-examples","reference/migration.html#module-level-function-deprecation-reminder","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps-1","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":18,"breadcrumbs":6,"title":5},"1":{"body":67,"breadcrumbs":3,"title":2},"10":{"body":10,"breadcrumbs":3,"title":2},"100":{"body":42,"breadcrumbs":6,"title":3},"1000":{"body":0,"breadcrumbs":4,"title":2},"1001":{"body":53,"breadcrumbs":4,"title":2},"1002":{"body":11,"breadcrumbs":4,"title":2},"1003":{"body":0,"breadcrumbs":4,"title":2},"1004":{"body":45,"breadcrumbs":4,"title":2},"1005":{"body":23,"breadcrumbs":4,"title":2},"1006":{"body":0,"breadcrumbs":4,"title":2},"1007":{"body":23,"breadcrumbs":4,"title":2},"1008":{"body":288,"breadcrumbs":4,"title":2},"1009":{"body":23,"breadcrumbs":4,"title":2},"101":{"body":11,"breadcrumbs":4,"title":1},"1010":{"body":9,"breadcrumbs":5,"title":3},"1011":{"body":21,"breadcrumbs":5,"title":3},"1012":{"body":35,"breadcrumbs":4,"title":2},"1013":{"body":34,"breadcrumbs":4,"title":2},"1014":{"body":10,"breadcrumbs":5,"title":3},"1015":{"body":37,"breadcrumbs":3,"title":1},"1016":{"body":24,"breadcrumbs":5,"title":3},"1017":{"body":41,"breadcrumbs":6,"title":4},"1018":{"body":24,"breadcrumbs":4,"title":2},"1019":{"body":11,"breadcrumbs":4,"title":2},"102":{"body":122,"breadcrumbs":4,"title":1},"1020":{"body":43,"breadcrumbs":4,"title":2},"1021":{"body":12,"breadcrumbs":5,"title":3},"1022":{"body":74,"breadcrumbs":4,"title":2},"1023":{"body":19,"breadcrumbs":4,"title":2},"1024":{"body":41,"breadcrumbs":4,"title":2},"1025":{"body":33,"breadcrumbs":4,"title":2},"1026":{"body":6,"breadcrumbs":5,"title":3},"1027":{"body":22,"breadcrumbs":3,"title":1},"1028":{"body":6,"breadcrumbs":3,"title":1},"1029":{"body":23,"breadcrumbs":4,"title":2},"103":{"body":119,"breadcrumbs":5,"title":2},"1030":{"body":8,"breadcrumbs":5,"title":3},"1031":{"body":17,"breadcrumbs":4,"title":2},"1032":{"body":20,"breadcrumbs":4,"title":2},"1033":{"body":119,"breadcrumbs":5,"title":3},"1034":{"body":31,"breadcrumbs":4,"title":2},"1035":{"body":6,"breadcrumbs":4,"title":2},"1036":{"body":23,"breadcrumbs":4,"title":2},"1037":{"body":26,"breadcrumbs":4,"title":2},"1038":{"body":3,"breadcrumbs":4,"title":2},"1039":{"body":22,"breadcrumbs":4,"title":2},"104":{"body":53,"breadcrumbs":4,"title":1},"1040":{"body":8,"breadcrumbs":4,"title":2},"1041":{"body":0,"breadcrumbs":4,"title":2},"1042":{"body":23,"breadcrumbs":4,"title":2},"1043":{"body":28,"breadcrumbs":4,"title":2},"1044":{"body":0,"breadcrumbs":5,"title":3},"1045":{"body":17,"breadcrumbs":5,"title":3},"1046":{"body":35,"breadcrumbs":5,"title":3},"1047":{"body":15,"breadcrumbs":5,"title":3},"1048":{"body":6,"breadcrumbs":5,"title":3},"1049":{"body":10,"breadcrumbs":5,"title":3},"105":{"body":22,"breadcrumbs":5,"title":2},"1050":{"body":0,"breadcrumbs":4,"title":2},"1051":{"body":14,"breadcrumbs":3,"title":1},"1052":{"body":80,"breadcrumbs":3,"title":1},"1053":{"body":15,"breadcrumbs":3,"title":1},"1054":{"body":0,"breadcrumbs":4,"title":2},"1055":{"body":11,"breadcrumbs":4,"title":2},"1056":{"body":13,"breadcrumbs":4,"title":2},"1057":{"body":12,"breadcrumbs":3,"title":1},"1058":{"body":0,"breadcrumbs":5,"title":3},"1059":{"body":168,"breadcrumbs":5,"title":3},"106":{"body":30,"breadcrumbs":6,"title":3},"1060":{"body":34,"breadcrumbs":5,"title":3},"1061":{"body":26,"breadcrumbs":6,"title":4},"1062":{"body":22,"breadcrumbs":5,"title":3},"1063":{"body":16,"breadcrumbs":3,"title":1},"1064":{"body":25,"breadcrumbs":4,"title":2},"1065":{"body":0,"breadcrumbs":5,"title":3},"1066":{"body":19,"breadcrumbs":5,"title":3},"1067":{"body":22,"breadcrumbs":4,"title":2},"1068":{"body":24,"breadcrumbs":4,"title":2},"1069":{"body":12,"breadcrumbs":4,"title":2},"107":{"body":116,"breadcrumbs":6,"title":3},"1070":{"body":52,"breadcrumbs":4,"title":2},"1071":{"body":27,"breadcrumbs":4,"title":2},"1072":{"body":12,"breadcrumbs":5,"title":3},"1073":{"body":28,"breadcrumbs":4,"title":2},"1074":{"body":42,"breadcrumbs":5,"title":3},"1075":{"body":35,"breadcrumbs":5,"title":3},"1076":{"body":0,"breadcrumbs":5,"title":3},"1077":{"body":33,"breadcrumbs":5,"title":3},"1078":{"body":24,"breadcrumbs":4,"title":2},"1079":{"body":56,"breadcrumbs":5,"title":3},"108":{"body":0,"breadcrumbs":4,"title":1},"1080":{"body":80,"breadcrumbs":5,"title":3},"1081":{"body":9,"breadcrumbs":6,"title":4},"1082":{"body":70,"breadcrumbs":4,"title":2},"1083":{"body":22,"breadcrumbs":5,"title":3},"1084":{"body":42,"breadcrumbs":5,"title":3},"1085":{"body":7,"breadcrumbs":6,"title":4},"1086":{"body":33,"breadcrumbs":6,"title":4},"1087":{"body":9,"breadcrumbs":5,"title":3},"1088":{"body":0,"breadcrumbs":4,"title":2},"1089":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":11,"breadcrumbs":5,"title":2},"1090":{"body":24,"breadcrumbs":4,"title":2},"1091":{"body":14,"breadcrumbs":4,"title":2},"1092":{"body":0,"breadcrumbs":4,"title":2},"1093":{"body":15,"breadcrumbs":4,"title":2},"1094":{"body":19,"breadcrumbs":5,"title":3},"1095":{"body":21,"breadcrumbs":5,"title":3},"1096":{"body":15,"breadcrumbs":3,"title":1},"1097":{"body":18,"breadcrumbs":4,"title":2},"1098":{"body":54,"breadcrumbs":4,"title":2},"1099":{"body":4,"breadcrumbs":5,"title":3},"11":{"body":3,"breadcrumbs":2,"title":1},"110":{"body":23,"breadcrumbs":6,"title":3},"1100":{"body":13,"breadcrumbs":3,"title":1},"1101":{"body":24,"breadcrumbs":3,"title":1},"1102":{"body":3,"breadcrumbs":3,"title":1},"1103":{"body":11,"breadcrumbs":4,"title":2},"1104":{"body":21,"breadcrumbs":3,"title":1},"1105":{"body":7,"breadcrumbs":4,"title":2},"1106":{"body":14,"breadcrumbs":3,"title":1},"1107":{"body":24,"breadcrumbs":3,"title":1},"1108":{"body":3,"breadcrumbs":3,"title":1},"1109":{"body":10,"breadcrumbs":4,"title":2},"111":{"body":9,"breadcrumbs":6,"title":3},"1110":{"body":12,"breadcrumbs":3,"title":1},"1111":{"body":7,"breadcrumbs":5,"title":3},"1112":{"body":18,"breadcrumbs":3,"title":1},"1113":{"body":27,"breadcrumbs":3,"title":1},"1114":{"body":3,"breadcrumbs":3,"title":1},"1115":{"body":14,"breadcrumbs":4,"title":2},"1116":{"body":13,"breadcrumbs":3,"title":1},"1117":{"body":8,"breadcrumbs":4,"title":2},"1118":{"body":18,"breadcrumbs":3,"title":1},"1119":{"body":20,"breadcrumbs":3,"title":1},"112":{"body":0,"breadcrumbs":4,"title":1},"1120":{"body":2,"breadcrumbs":3,"title":1},"1121":{"body":12,"breadcrumbs":4,"title":2},"1122":{"body":8,"breadcrumbs":3,"title":1},"1123":{"body":0,"breadcrumbs":5,"title":3},"1124":{"body":26,"breadcrumbs":4,"title":2},"1125":{"body":41,"breadcrumbs":4,"title":2},"1126":{"body":20,"breadcrumbs":4,"title":2},"1127":{"body":30,"breadcrumbs":4,"title":2},"1128":{"body":46,"breadcrumbs":4,"title":2},"1129":{"body":20,"breadcrumbs":3,"title":1},"113":{"body":13,"breadcrumbs":5,"title":2},"1130":{"body":56,"breadcrumbs":4,"title":2},"1131":{"body":32,"breadcrumbs":4,"title":2},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":15,"breadcrumbs":4,"title":2},"1134":{"body":13,"breadcrumbs":4,"title":2},"1135":{"body":19,"breadcrumbs":4,"title":2},"1136":{"body":14,"breadcrumbs":3,"title":1},"1137":{"body":18,"breadcrumbs":6,"title":3},"1138":{"body":53,"breadcrumbs":5,"title":2},"1139":{"body":45,"breadcrumbs":4,"title":1},"114":{"body":15,"breadcrumbs":6,"title":3},"1140":{"body":77,"breadcrumbs":6,"title":3},"1141":{"body":37,"breadcrumbs":6,"title":3},"1142":{"body":45,"breadcrumbs":4,"title":1},"1143":{"body":32,"breadcrumbs":5,"title":2},"1144":{"body":61,"breadcrumbs":4,"title":2},"1145":{"body":60,"breadcrumbs":5,"title":3},"1146":{"body":33,"breadcrumbs":4,"title":2},"1147":{"body":53,"breadcrumbs":6,"title":4},"1148":{"body":44,"breadcrumbs":4,"title":2},"1149":{"body":13,"breadcrumbs":4,"title":2},"115":{"body":6,"breadcrumbs":6,"title":3},"1150":{"body":29,"breadcrumbs":5,"title":3},"1151":{"body":26,"breadcrumbs":4,"title":2},"1152":{"body":28,"breadcrumbs":4,"title":2},"1153":{"body":18,"breadcrumbs":4,"title":2},"1154":{"body":24,"breadcrumbs":3,"title":1},"1155":{"body":0,"breadcrumbs":5,"title":3},"1156":{"body":48,"breadcrumbs":4,"title":2},"1157":{"body":161,"breadcrumbs":5,"title":3},"1158":{"body":0,"breadcrumbs":5,"title":3},"1159":{"body":7,"breadcrumbs":5,"title":3},"116":{"body":46,"breadcrumbs":5,"title":2},"1160":{"body":16,"breadcrumbs":4,"title":2},"1161":{"body":19,"breadcrumbs":5,"title":3},"1162":{"body":33,"breadcrumbs":5,"title":3},"1163":{"body":0,"breadcrumbs":5,"title":3},"1164":{"body":31,"breadcrumbs":4,"title":2},"1165":{"body":28,"breadcrumbs":4,"title":2},"1166":{"body":13,"breadcrumbs":4,"title":2},"1167":{"body":13,"breadcrumbs":4,"title":2},"1168":{"body":0,"breadcrumbs":4,"title":2},"1169":{"body":56,"breadcrumbs":5,"title":3},"117":{"body":30,"breadcrumbs":5,"title":2},"1170":{"body":0,"breadcrumbs":3,"title":1},"1171":{"body":31,"breadcrumbs":4,"title":2},"1172":{"body":42,"breadcrumbs":4,"title":2},"1173":{"body":0,"breadcrumbs":4,"title":2},"1174":{"body":58,"breadcrumbs":4,"title":2},"1175":{"body":59,"breadcrumbs":4,"title":2},"1176":{"body":54,"breadcrumbs":5,"title":3},"1177":{"body":0,"breadcrumbs":4,"title":2},"1178":{"body":2,"breadcrumbs":4,"title":2},"1179":{"body":6,"breadcrumbs":4,"title":2},"118":{"body":19,"breadcrumbs":6,"title":3},"1180":{"body":15,"breadcrumbs":4,"title":2},"1181":{"body":12,"breadcrumbs":3,"title":1},"1182":{"body":28,"breadcrumbs":5,"title":3},"1183":{"body":32,"breadcrumbs":3,"title":1},"1184":{"body":37,"breadcrumbs":3,"title":1},"1185":{"body":46,"breadcrumbs":4,"title":2},"1186":{"body":26,"breadcrumbs":4,"title":2},"1187":{"body":82,"breadcrumbs":5,"title":3},"1188":{"body":41,"breadcrumbs":4,"title":2},"1189":{"body":29,"breadcrumbs":8,"title":5},"119":{"body":16,"breadcrumbs":7,"title":4},"1190":{"body":18,"breadcrumbs":4,"title":1},"1191":{"body":41,"breadcrumbs":7,"title":4},"1192":{"body":40,"breadcrumbs":8,"title":5},"1193":{"body":24,"breadcrumbs":8,"title":5},"1194":{"body":61,"breadcrumbs":4,"title":1},"1195":{"body":49,"breadcrumbs":6,"title":3},"1196":{"body":26,"breadcrumbs":6,"title":3},"1197":{"body":45,"breadcrumbs":4,"title":1},"1198":{"body":92,"breadcrumbs":6,"title":3},"1199":{"body":52,"breadcrumbs":6,"title":3},"12":{"body":3,"breadcrumbs":2,"title":1},"120":{"body":32,"breadcrumbs":6,"title":3},"1200":{"body":56,"breadcrumbs":6,"title":3},"1201":{"body":48,"breadcrumbs":5,"title":2},"1202":{"body":40,"breadcrumbs":5,"title":2},"1203":{"body":54,"breadcrumbs":4,"title":1},"1204":{"body":20,"breadcrumbs":4,"title":1},"1205":{"body":18,"breadcrumbs":4,"title":2},"1206":{"body":46,"breadcrumbs":6,"title":4},"1207":{"body":44,"breadcrumbs":4,"title":2},"1208":{"body":59,"breadcrumbs":4,"title":2},"1209":{"body":56,"breadcrumbs":5,"title":3},"121":{"body":59,"breadcrumbs":6,"title":3},"1210":{"body":49,"breadcrumbs":5,"title":3},"1211":{"body":18,"breadcrumbs":3,"title":1},"1212":{"body":14,"breadcrumbs":2,"title":1},"1213":{"body":0,"breadcrumbs":3,"title":2},"1214":{"body":23,"breadcrumbs":4,"title":3},"1215":{"body":169,"breadcrumbs":3,"title":2},"1216":{"body":0,"breadcrumbs":3,"title":2},"1217":{"body":63,"breadcrumbs":4,"title":3},"1218":{"body":64,"breadcrumbs":3,"title":2},"1219":{"body":33,"breadcrumbs":5,"title":4},"122":{"body":35,"breadcrumbs":6,"title":3},"1220":{"body":187,"breadcrumbs":7,"title":6},"1221":{"body":28,"breadcrumbs":4,"title":3},"1222":{"body":0,"breadcrumbs":3,"title":2},"1223":{"body":125,"breadcrumbs":4,"title":3},"1224":{"body":63,"breadcrumbs":4,"title":3},"1225":{"body":0,"breadcrumbs":2,"title":1},"1226":{"body":93,"breadcrumbs":4,"title":3},"1227":{"body":27,"breadcrumbs":4,"title":3},"1228":{"body":0,"breadcrumbs":3,"title":2},"1229":{"body":96,"breadcrumbs":3,"title":2},"123":{"body":22,"breadcrumbs":2,"title":1},"1230":{"body":13,"breadcrumbs":3,"title":2},"1231":{"body":10,"breadcrumbs":3,"title":2},"1232":{"body":0,"breadcrumbs":3,"title":2},"1233":{"body":55,"breadcrumbs":3,"title":2},"1234":{"body":7,"breadcrumbs":4,"title":3},"1235":{"body":22,"breadcrumbs":5,"title":4},"1236":{"body":140,"breadcrumbs":3,"title":2},"1237":{"body":15,"breadcrumbs":4,"title":3},"1238":{"body":39,"breadcrumbs":4,"title":3},"1239":{"body":12,"breadcrumbs":2,"title":1},"124":{"body":31,"breadcrumbs":4,"title":3},"1240":{"body":22,"breadcrumbs":5,"title":4},"1241":{"body":31,"breadcrumbs":5,"title":4},"1242":{"body":0,"breadcrumbs":3,"title":2},"1243":{"body":17,"breadcrumbs":4,"title":3},"1244":{"body":33,"breadcrumbs":5,"title":4},"1245":{"body":21,"breadcrumbs":5,"title":4},"1246":{"body":20,"breadcrumbs":5,"title":4},"1247":{"body":15,"breadcrumbs":2,"title":1},"1248":{"body":16,"breadcrumbs":4,"title":2},"1249":{"body":44,"breadcrumbs":5,"title":3},"125":{"body":0,"breadcrumbs":3,"title":2},"1250":{"body":38,"breadcrumbs":5,"title":3},"1251":{"body":35,"breadcrumbs":4,"title":2},"1252":{"body":42,"breadcrumbs":8,"title":6},"1253":{"body":0,"breadcrumbs":9,"title":7},"1254":{"body":54,"breadcrumbs":3,"title":1},"1255":{"body":52,"breadcrumbs":3,"title":1},"1256":{"body":16,"breadcrumbs":8,"title":6},"1257":{"body":24,"breadcrumbs":3,"title":1},"1258":{"body":47,"breadcrumbs":3,"title":1},"1259":{"body":6,"breadcrumbs":5,"title":3},"126":{"body":16,"breadcrumbs":2,"title":1},"1260":{"body":11,"breadcrumbs":4,"title":2},"1261":{"body":17,"breadcrumbs":4,"title":2},"1262":{"body":24,"breadcrumbs":5,"title":3},"1263":{"body":0,"breadcrumbs":4,"title":2},"1264":{"body":26,"breadcrumbs":6,"title":4},"1265":{"body":63,"breadcrumbs":6,"title":4},"1266":{"body":28,"breadcrumbs":6,"title":4},"1267":{"body":55,"breadcrumbs":4,"title":2},"1268":{"body":9,"breadcrumbs":3,"title":1},"1269":{"body":11,"breadcrumbs":3,"title":1},"127":{"body":19,"breadcrumbs":2,"title":1},"1270":{"body":25,"breadcrumbs":4,"title":2},"1271":{"body":27,"breadcrumbs":5,"title":3},"1272":{"body":9,"breadcrumbs":5,"title":3},"1273":{"body":52,"breadcrumbs":4,"title":2},"1274":{"body":9,"breadcrumbs":5,"title":3},"1275":{"body":33,"breadcrumbs":4,"title":2},"1276":{"body":47,"breadcrumbs":4,"title":2},"1277":{"body":72,"breadcrumbs":9,"title":7},"1278":{"body":36,"breadcrumbs":5,"title":3},"1279":{"body":166,"breadcrumbs":4,"title":2},"128":{"body":18,"breadcrumbs":2,"title":1},"1280":{"body":51,"breadcrumbs":4,"title":2},"1281":{"body":28,"breadcrumbs":8,"title":3},"1282":{"body":50,"breadcrumbs":9,"title":4},"1283":{"body":55,"breadcrumbs":7,"title":2},"1284":{"body":21,"breadcrumbs":7,"title":2},"1285":{"body":16,"breadcrumbs":10,"title":4},"1286":{"body":40,"breadcrumbs":9,"title":3},"1287":{"body":25,"breadcrumbs":8,"title":2},"1288":{"body":34,"breadcrumbs":9,"title":3},"1289":{"body":23,"breadcrumbs":8,"title":2},"129":{"body":19,"breadcrumbs":3,"title":2},"1290":{"body":50,"breadcrumbs":8,"title":2},"1291":{"body":20,"breadcrumbs":8,"title":2},"1292":{"body":8,"breadcrumbs":8,"title":3},"1293":{"body":28,"breadcrumbs":7,"title":2},"1294":{"body":45,"breadcrumbs":7,"title":2},"1295":{"body":11,"breadcrumbs":8,"title":3},"1296":{"body":31,"breadcrumbs":7,"title":2},"1297":{"body":43,"breadcrumbs":7,"title":2},"1298":{"body":27,"breadcrumbs":7,"title":2},"1299":{"body":44,"breadcrumbs":7,"title":2},"13":{"body":18,"breadcrumbs":2,"title":1},"130":{"body":45,"breadcrumbs":3,"title":2},"1300":{"body":27,"breadcrumbs":7,"title":2},"1301":{"body":8,"breadcrumbs":9,"title":4},"1302":{"body":90,"breadcrumbs":7,"title":2},"1303":{"body":63,"breadcrumbs":7,"title":2},"1304":{"body":0,"breadcrumbs":6,"title":1},"1305":{"body":7,"breadcrumbs":9,"title":4},"1306":{"body":21,"breadcrumbs":10,"title":5},"1307":{"body":16,"breadcrumbs":9,"title":4},"1308":{"body":0,"breadcrumbs":7,"title":2},"1309":{"body":14,"breadcrumbs":9,"title":4},"131":{"body":42,"breadcrumbs":3,"title":2},"1310":{"body":14,"breadcrumbs":8,"title":3},"1311":{"body":14,"breadcrumbs":8,"title":3},"1312":{"body":13,"breadcrumbs":8,"title":3},"1313":{"body":22,"breadcrumbs":6,"title":4},"1314":{"body":11,"breadcrumbs":3,"title":1},"1315":{"body":42,"breadcrumbs":6,"title":4},"1316":{"body":32,"breadcrumbs":6,"title":4},"1317":{"body":70,"breadcrumbs":6,"title":4},"1318":{"body":0,"breadcrumbs":6,"title":4},"1319":{"body":30,"breadcrumbs":7,"title":5},"132":{"body":44,"breadcrumbs":6,"title":5},"1320":{"body":29,"breadcrumbs":9,"title":7},"1321":{"body":90,"breadcrumbs":7,"title":5},"1322":{"body":35,"breadcrumbs":7,"title":5},"1323":{"body":17,"breadcrumbs":4,"title":2},"1324":{"body":24,"breadcrumbs":8,"title":4},"1325":{"body":83,"breadcrumbs":5,"title":1},"1326":{"body":55,"breadcrumbs":6,"title":2},"1327":{"body":43,"breadcrumbs":6,"title":2},"1328":{"body":215,"breadcrumbs":9,"title":5},"1329":{"body":72,"breadcrumbs":6,"title":2},"133":{"body":40,"breadcrumbs":3,"title":2},"1330":{"body":39,"breadcrumbs":7,"title":3},"1331":{"body":41,"breadcrumbs":6,"title":2},"1332":{"body":21,"breadcrumbs":8,"title":4},"1333":{"body":5,"breadcrumbs":6,"title":2},"1334":{"body":27,"breadcrumbs":6,"title":2},"1335":{"body":17,"breadcrumbs":6,"title":2},"1336":{"body":23,"breadcrumbs":6,"title":2},"1337":{"body":0,"breadcrumbs":5,"title":1},"1338":{"body":38,"breadcrumbs":8,"title":4},"1339":{"body":21,"breadcrumbs":7,"title":3},"134":{"body":22,"breadcrumbs":5,"title":3},"1340":{"body":12,"breadcrumbs":6,"title":2},"1341":{"body":0,"breadcrumbs":5,"title":1},"1342":{"body":32,"breadcrumbs":6,"title":2},"1343":{"body":42,"breadcrumbs":7,"title":3},"1344":{"body":0,"breadcrumbs":5,"title":1},"1345":{"body":28,"breadcrumbs":6,"title":2},"1346":{"body":19,"breadcrumbs":6,"title":2},"1347":{"body":29,"breadcrumbs":5,"title":1},"1348":{"body":0,"breadcrumbs":5,"title":1},"1349":{"body":50,"breadcrumbs":7,"title":3},"135":{"body":0,"breadcrumbs":4,"title":2},"1350":{"body":30,"breadcrumbs":6,"title":2},"1351":{"body":20,"breadcrumbs":7,"title":3},"1352":{"body":36,"breadcrumbs":8,"title":4},"1353":{"body":9,"breadcrumbs":8,"title":5},"1354":{"body":46,"breadcrumbs":5,"title":2},"1355":{"body":40,"breadcrumbs":5,"title":2},"1356":{"body":26,"breadcrumbs":5,"title":2},"1357":{"body":74,"breadcrumbs":4,"title":1},"1358":{"body":66,"breadcrumbs":4,"title":1},"1359":{"body":59,"breadcrumbs":3,"title":0},"136":{"body":62,"breadcrumbs":7,"title":5},"1360":{"body":22,"breadcrumbs":5,"title":2},"1361":{"body":29,"breadcrumbs":6,"title":3},"1362":{"body":11,"breadcrumbs":6,"title":3},"1363":{"body":22,"breadcrumbs":5,"title":2},"1364":{"body":26,"breadcrumbs":5,"title":2},"1365":{"body":31,"breadcrumbs":5,"title":2},"1366":{"body":78,"breadcrumbs":6,"title":3},"1367":{"body":106,"breadcrumbs":6,"title":3},"1368":{"body":50,"breadcrumbs":6,"title":3},"1369":{"body":41,"breadcrumbs":6,"title":3},"137":{"body":67,"breadcrumbs":8,"title":6},"1370":{"body":17,"breadcrumbs":6,"title":3},"1371":{"body":14,"breadcrumbs":5,"title":2},"1372":{"body":14,"breadcrumbs":6,"title":3},"1373":{"body":9,"breadcrumbs":6,"title":3},"1374":{"body":15,"breadcrumbs":5,"title":2},"1375":{"body":15,"breadcrumbs":5,"title":2},"1376":{"body":43,"breadcrumbs":5,"title":2},"1377":{"body":23,"breadcrumbs":5,"title":2},"1378":{"body":61,"breadcrumbs":6,"title":3},"1379":{"body":32,"breadcrumbs":5,"title":2},"138":{"body":51,"breadcrumbs":7,"title":5},"1380":{"body":70,"breadcrumbs":5,"title":2},"1381":{"body":40,"breadcrumbs":5,"title":2},"1382":{"body":35,"breadcrumbs":6,"title":3},"1383":{"body":0,"breadcrumbs":5,"title":2},"1384":{"body":73,"breadcrumbs":7,"title":4},"1385":{"body":63,"breadcrumbs":9,"title":6},"1386":{"body":50,"breadcrumbs":6,"title":3},"1387":{"body":97,"breadcrumbs":6,"title":3},"1388":{"body":82,"breadcrumbs":6,"title":3},"1389":{"body":52,"breadcrumbs":4,"title":2},"139":{"body":70,"breadcrumbs":4,"title":2},"1390":{"body":0,"breadcrumbs":4,"title":2},"1391":{"body":53,"breadcrumbs":6,"title":4},"1392":{"body":46,"breadcrumbs":4,"title":2},"1393":{"body":33,"breadcrumbs":5,"title":3},"1394":{"body":71,"breadcrumbs":7,"title":5},"1395":{"body":32,"breadcrumbs":3,"title":1},"1396":{"body":9,"breadcrumbs":3,"title":1},"1397":{"body":9,"breadcrumbs":4,"title":2},"1398":{"body":31,"breadcrumbs":4,"title":2},"1399":{"body":0,"breadcrumbs":4,"title":2},"14":{"body":45,"breadcrumbs":3,"title":2},"140":{"body":48,"breadcrumbs":5,"title":3},"1400":{"body":30,"breadcrumbs":5,"title":3},"1401":{"body":29,"breadcrumbs":4,"title":2},"1402":{"body":0,"breadcrumbs":4,"title":2},"1403":{"body":118,"breadcrumbs":4,"title":2},"1404":{"body":73,"breadcrumbs":4,"title":2},"1405":{"body":69,"breadcrumbs":4,"title":2},"1406":{"body":21,"breadcrumbs":5,"title":3},"1407":{"body":0,"breadcrumbs":4,"title":2},"1408":{"body":72,"breadcrumbs":4,"title":2},"1409":{"body":65,"breadcrumbs":4,"title":2},"141":{"body":56,"breadcrumbs":4,"title":2},"1410":{"body":159,"breadcrumbs":5,"title":3},"1411":{"body":0,"breadcrumbs":4,"title":2},"1412":{"body":54,"breadcrumbs":5,"title":3},"1413":{"body":93,"breadcrumbs":5,"title":3},"1414":{"body":47,"breadcrumbs":4,"title":2},"1415":{"body":0,"breadcrumbs":4,"title":2},"1416":{"body":45,"breadcrumbs":4,"title":2},"1417":{"body":0,"breadcrumbs":4,"title":2},"1418":{"body":43,"breadcrumbs":5,"title":3},"1419":{"body":59,"breadcrumbs":4,"title":2},"142":{"body":17,"breadcrumbs":4,"title":2},"1420":{"body":52,"breadcrumbs":5,"title":3},"1421":{"body":0,"breadcrumbs":4,"title":2},"1422":{"body":36,"breadcrumbs":5,"title":3},"1423":{"body":32,"breadcrumbs":4,"title":2},"1424":{"body":0,"breadcrumbs":4,"title":2},"1425":{"body":36,"breadcrumbs":5,"title":3},"1426":{"body":56,"breadcrumbs":4,"title":2},"1427":{"body":16,"breadcrumbs":3,"title":1},"1428":{"body":8,"breadcrumbs":4,"title":2},"1429":{"body":37,"breadcrumbs":3,"title":1},"143":{"body":43,"breadcrumbs":4,"title":2},"1430":{"body":0,"breadcrumbs":5,"title":3},"1431":{"body":58,"breadcrumbs":5,"title":3},"1432":{"body":49,"breadcrumbs":4,"title":2},"1433":{"body":68,"breadcrumbs":4,"title":2},"1434":{"body":0,"breadcrumbs":5,"title":3},"1435":{"body":173,"breadcrumbs":5,"title":3},"1436":{"body":85,"breadcrumbs":4,"title":2},"1437":{"body":0,"breadcrumbs":4,"title":2},"1438":{"body":152,"breadcrumbs":4,"title":2},"1439":{"body":106,"breadcrumbs":4,"title":2},"144":{"body":39,"breadcrumbs":3,"title":1},"1440":{"body":0,"breadcrumbs":3,"title":1},"1441":{"body":91,"breadcrumbs":6,"title":4},"1442":{"body":56,"breadcrumbs":4,"title":2},"1443":{"body":45,"breadcrumbs":5,"title":3},"1444":{"body":0,"breadcrumbs":4,"title":2},"1445":{"body":152,"breadcrumbs":6,"title":4},"1446":{"body":0,"breadcrumbs":4,"title":2},"1447":{"body":130,"breadcrumbs":6,"title":4},"1448":{"body":0,"breadcrumbs":3,"title":1},"1449":{"body":137,"breadcrumbs":5,"title":3},"145":{"body":13,"breadcrumbs":4,"title":2},"1450":{"body":18,"breadcrumbs":3,"title":1},"1451":{"body":9,"breadcrumbs":4,"title":2},"1452":{"body":15,"breadcrumbs":3,"title":1},"1453":{"body":0,"breadcrumbs":5,"title":3},"1454":{"body":56,"breadcrumbs":5,"title":3},"1455":{"body":48,"breadcrumbs":4,"title":2},"1456":{"body":63,"breadcrumbs":4,"title":2},"1457":{"body":0,"breadcrumbs":5,"title":3},"1458":{"body":208,"breadcrumbs":5,"title":3},"1459":{"body":69,"breadcrumbs":4,"title":2},"146":{"body":22,"breadcrumbs":4,"title":2},"1460":{"body":0,"breadcrumbs":4,"title":2},"1461":{"body":108,"breadcrumbs":5,"title":3},"1462":{"body":58,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":3,"title":1},"1464":{"body":88,"breadcrumbs":6,"title":4},"1465":{"body":53,"breadcrumbs":4,"title":2},"1466":{"body":42,"breadcrumbs":5,"title":3},"1467":{"body":0,"breadcrumbs":4,"title":2},"1468":{"body":143,"breadcrumbs":6,"title":4},"1469":{"body":0,"breadcrumbs":4,"title":2},"147":{"body":40,"breadcrumbs":4,"title":2},"1470":{"body":163,"breadcrumbs":5,"title":3},"1471":{"body":0,"breadcrumbs":3,"title":1},"1472":{"body":142,"breadcrumbs":4,"title":2},"1473":{"body":0,"breadcrumbs":4,"title":2},"1474":{"body":145,"breadcrumbs":6,"title":4},"1475":{"body":15,"breadcrumbs":3,"title":1},"1476":{"body":20,"breadcrumbs":4,"title":2},"1477":{"body":32,"breadcrumbs":3,"title":1},"1478":{"body":26,"breadcrumbs":4,"title":2},"1479":{"body":31,"breadcrumbs":3,"title":1},"148":{"body":27,"breadcrumbs":4,"title":2},"1480":{"body":14,"breadcrumbs":5,"title":3},"1481":{"body":18,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":6,"title":3},"1483":{"body":0,"breadcrumbs":5,"title":2},"1484":{"body":8,"breadcrumbs":5,"title":2},"1485":{"body":145,"breadcrumbs":5,"title":2},"1486":{"body":141,"breadcrumbs":5,"title":2},"1487":{"body":167,"breadcrumbs":5,"title":2},"1488":{"body":14,"breadcrumbs":5,"title":2},"1489":{"body":8,"breadcrumbs":5,"title":2},"149":{"body":6,"breadcrumbs":2,"title":1},"1490":{"body":0,"breadcrumbs":5,"title":2},"1491":{"body":15,"breadcrumbs":5,"title":2},"1492":{"body":0,"breadcrumbs":5,"title":2},"1493":{"body":20,"breadcrumbs":5,"title":2},"1494":{"body":0,"breadcrumbs":5,"title":2},"1495":{"body":20,"breadcrumbs":5,"title":2},"1496":{"body":8,"breadcrumbs":5,"title":2},"1497":{"body":157,"breadcrumbs":6,"title":3},"1498":{"body":112,"breadcrumbs":6,"title":3},"1499":{"body":105,"breadcrumbs":6,"title":3},"15":{"body":4,"breadcrumbs":2,"title":1},"150":{"body":0,"breadcrumbs":3,"title":2},"1500":{"body":86,"breadcrumbs":6,"title":3},"1501":{"body":61,"breadcrumbs":5,"title":2},"1502":{"body":0,"breadcrumbs":5,"title":2},"1503":{"body":49,"breadcrumbs":6,"title":3},"1504":{"body":42,"breadcrumbs":5,"title":2},"1505":{"body":21,"breadcrumbs":6,"title":3},"1506":{"body":24,"breadcrumbs":5,"title":2},"1507":{"body":22,"breadcrumbs":5,"title":2},"1508":{"body":18,"breadcrumbs":5,"title":2},"1509":{"body":0,"breadcrumbs":5,"title":2},"151":{"body":23,"breadcrumbs":4,"title":3},"1510":{"body":27,"breadcrumbs":5,"title":2},"1511":{"body":14,"breadcrumbs":5,"title":2},"1512":{"body":20,"breadcrumbs":4,"title":2},"1513":{"body":0,"breadcrumbs":3,"title":1},"1514":{"body":55,"breadcrumbs":5,"title":3},"1515":{"body":98,"breadcrumbs":5,"title":3},"1516":{"body":25,"breadcrumbs":4,"title":2},"1517":{"body":76,"breadcrumbs":5,"title":3},"1518":{"body":15,"breadcrumbs":4,"title":2},"1519":{"body":91,"breadcrumbs":4,"title":2},"152":{"body":23,"breadcrumbs":4,"title":3},"1520":{"body":91,"breadcrumbs":4,"title":2},"1521":{"body":117,"breadcrumbs":4,"title":2},"1522":{"body":35,"breadcrumbs":4,"title":2},"1523":{"body":0,"breadcrumbs":4,"title":2},"1524":{"body":15,"breadcrumbs":4,"title":2},"1525":{"body":41,"breadcrumbs":4,"title":2},"1526":{"body":21,"breadcrumbs":5,"title":3},"1527":{"body":8,"breadcrumbs":5,"title":3},"1528":{"body":22,"breadcrumbs":5,"title":3},"1529":{"body":56,"breadcrumbs":5,"title":3},"153":{"body":19,"breadcrumbs":5,"title":4},"1530":{"body":110,"breadcrumbs":5,"title":3},"1531":{"body":15,"breadcrumbs":4,"title":2},"1532":{"body":81,"breadcrumbs":5,"title":3},"1533":{"body":117,"breadcrumbs":5,"title":3},"1534":{"body":41,"breadcrumbs":4,"title":2},"1535":{"body":36,"breadcrumbs":4,"title":2},"1536":{"body":30,"breadcrumbs":4,"title":2},"1537":{"body":37,"breadcrumbs":4,"title":2},"1538":{"body":36,"breadcrumbs":6,"title":4},"1539":{"body":8,"breadcrumbs":4,"title":2},"154":{"body":0,"breadcrumbs":3,"title":2},"1540":{"body":40,"breadcrumbs":5,"title":3},"1541":{"body":0,"breadcrumbs":4,"title":2},"1542":{"body":25,"breadcrumbs":4,"title":2},"1543":{"body":28,"breadcrumbs":4,"title":2},"1544":{"body":22,"breadcrumbs":5,"title":3},"1545":{"body":0,"breadcrumbs":4,"title":2},"1546":{"body":23,"breadcrumbs":5,"title":3},"1547":{"body":27,"breadcrumbs":5,"title":3},"1548":{"body":21,"breadcrumbs":5,"title":3},"1549":{"body":27,"breadcrumbs":4,"title":2},"155":{"body":15,"breadcrumbs":3,"title":2},"1550":{"body":0,"breadcrumbs":4,"title":2},"1551":{"body":20,"breadcrumbs":4,"title":2},"1552":{"body":20,"breadcrumbs":4,"title":2},"1553":{"body":20,"breadcrumbs":5,"title":3},"1554":{"body":22,"breadcrumbs":5,"title":3},"1555":{"body":0,"breadcrumbs":5,"title":3},"1556":{"body":35,"breadcrumbs":5,"title":3},"1557":{"body":37,"breadcrumbs":5,"title":3},"1558":{"body":30,"breadcrumbs":4,"title":2},"1559":{"body":22,"breadcrumbs":5,"title":3},"156":{"body":41,"breadcrumbs":5,"title":4},"1560":{"body":0,"breadcrumbs":4,"title":2},"1561":{"body":24,"breadcrumbs":4,"title":2},"1562":{"body":27,"breadcrumbs":5,"title":3},"1563":{"body":23,"breadcrumbs":4,"title":2},"1564":{"body":21,"breadcrumbs":4,"title":2},"1565":{"body":0,"breadcrumbs":4,"title":2},"1566":{"body":24,"breadcrumbs":4,"title":2},"1567":{"body":18,"breadcrumbs":4,"title":2},"1568":{"body":16,"breadcrumbs":3,"title":1},"1569":{"body":17,"breadcrumbs":4,"title":2},"157":{"body":15,"breadcrumbs":4,"title":3},"1570":{"body":0,"breadcrumbs":4,"title":2},"1571":{"body":23,"breadcrumbs":5,"title":3},"1572":{"body":23,"breadcrumbs":5,"title":3},"1573":{"body":22,"breadcrumbs":4,"title":2},"1574":{"body":0,"breadcrumbs":4,"title":2},"1575":{"body":24,"breadcrumbs":5,"title":3},"1576":{"body":19,"breadcrumbs":5,"title":3},"1577":{"body":18,"breadcrumbs":5,"title":3},"1578":{"body":0,"breadcrumbs":4,"title":2},"1579":{"body":13,"breadcrumbs":5,"title":3},"158":{"body":0,"breadcrumbs":3,"title":2},"1580":{"body":6,"breadcrumbs":4,"title":2},"1581":{"body":8,"breadcrumbs":4,"title":2},"1582":{"body":13,"breadcrumbs":4,"title":2},"1583":{"body":13,"breadcrumbs":3,"title":1},"1584":{"body":7,"breadcrumbs":6,"title":3},"1585":{"body":22,"breadcrumbs":5,"title":2},"1586":{"body":41,"breadcrumbs":6,"title":3},"1587":{"body":40,"breadcrumbs":5,"title":2},"1588":{"body":60,"breadcrumbs":7,"title":4},"1589":{"body":52,"breadcrumbs":7,"title":4},"159":{"body":9,"breadcrumbs":4,"title":3},"1590":{"body":0,"breadcrumbs":5,"title":2},"1591":{"body":14,"breadcrumbs":6,"title":3},"1592":{"body":26,"breadcrumbs":6,"title":3},"1593":{"body":0,"breadcrumbs":4,"title":1},"1594":{"body":18,"breadcrumbs":8,"title":5},"1595":{"body":13,"breadcrumbs":5,"title":2},"1596":{"body":12,"breadcrumbs":5,"title":2},"1597":{"body":22,"breadcrumbs":6,"title":3},"1598":{"body":19,"breadcrumbs":7,"title":4},"1599":{"body":4,"breadcrumbs":6,"title":3},"16":{"body":19,"breadcrumbs":2,"title":1},"160":{"body":16,"breadcrumbs":4,"title":3},"1600":{"body":6,"breadcrumbs":4,"title":1},"1601":{"body":66,"breadcrumbs":4,"title":1},"1602":{"body":128,"breadcrumbs":4,"title":1},"1603":{"body":3,"breadcrumbs":6,"title":3},"1604":{"body":5,"breadcrumbs":4,"title":1},"1605":{"body":10,"breadcrumbs":4,"title":1},"1606":{"body":37,"breadcrumbs":4,"title":1},"1607":{"body":104,"breadcrumbs":4,"title":1},"1608":{"body":0,"breadcrumbs":6,"title":3},"1609":{"body":27,"breadcrumbs":7,"title":4},"161":{"body":9,"breadcrumbs":3,"title":2},"1610":{"body":31,"breadcrumbs":6,"title":3},"1611":{"body":14,"breadcrumbs":7,"title":4},"1612":{"body":20,"breadcrumbs":5,"title":2},"1613":{"body":28,"breadcrumbs":5,"title":2},"1614":{"body":13,"breadcrumbs":4,"title":1},"1615":{"body":9,"breadcrumbs":4,"title":2},"1616":{"body":22,"breadcrumbs":4,"title":2},"1617":{"body":0,"breadcrumbs":6,"title":4},"1618":{"body":61,"breadcrumbs":7,"title":5},"1619":{"body":46,"breadcrumbs":5,"title":3},"162":{"body":37,"breadcrumbs":3,"title":2},"1620":{"body":18,"breadcrumbs":6,"title":4},"1621":{"body":44,"breadcrumbs":6,"title":4},"1622":{"body":23,"breadcrumbs":6,"title":4},"1623":{"body":31,"breadcrumbs":4,"title":2},"1624":{"body":0,"breadcrumbs":5,"title":3},"1625":{"body":32,"breadcrumbs":4,"title":2},"1626":{"body":9,"breadcrumbs":5,"title":3},"1627":{"body":32,"breadcrumbs":5,"title":3},"1628":{"body":19,"breadcrumbs":6,"title":4},"1629":{"body":20,"breadcrumbs":5,"title":3},"163":{"body":12,"breadcrumbs":3,"title":2},"1630":{"body":61,"breadcrumbs":5,"title":3},"1631":{"body":52,"breadcrumbs":4,"title":2},"1632":{"body":25,"breadcrumbs":7,"title":5},"1633":{"body":0,"breadcrumbs":5,"title":3},"1634":{"body":23,"breadcrumbs":4,"title":2},"1635":{"body":34,"breadcrumbs":4,"title":2},"1636":{"body":0,"breadcrumbs":5,"title":3},"1637":{"body":51,"breadcrumbs":5,"title":3},"1638":{"body":22,"breadcrumbs":5,"title":3},"1639":{"body":0,"breadcrumbs":5,"title":3},"164":{"body":7,"breadcrumbs":2,"title":1},"1640":{"body":78,"breadcrumbs":5,"title":3},"1641":{"body":0,"breadcrumbs":5,"title":3},"1642":{"body":26,"breadcrumbs":4,"title":2},"1643":{"body":21,"breadcrumbs":6,"title":4},"1644":{"body":0,"breadcrumbs":5,"title":3},"1645":{"body":38,"breadcrumbs":5,"title":3},"1646":{"body":0,"breadcrumbs":4,"title":2},"1647":{"body":98,"breadcrumbs":5,"title":3},"1648":{"body":0,"breadcrumbs":5,"title":3},"1649":{"body":51,"breadcrumbs":7,"title":5},"165":{"body":10,"breadcrumbs":2,"title":1},"1650":{"body":0,"breadcrumbs":5,"title":3},"1651":{"body":49,"breadcrumbs":7,"title":5},"1652":{"body":0,"breadcrumbs":4,"title":2},"1653":{"body":46,"breadcrumbs":4,"title":2},"1654":{"body":36,"breadcrumbs":4,"title":2},"1655":{"body":35,"breadcrumbs":4,"title":2},"1656":{"body":12,"breadcrumbs":3,"title":1},"166":{"body":12,"breadcrumbs":4,"title":3},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":4,"breadcrumbs":3,"title":2},"169":{"body":7,"breadcrumbs":3,"title":2},"17":{"body":67,"breadcrumbs":4,"title":3},"170":{"body":10,"breadcrumbs":2,"title":1},"171":{"body":2,"breadcrumbs":3,"title":2},"172":{"body":16,"breadcrumbs":3,"title":2},"173":{"body":6,"breadcrumbs":3,"title":2},"174":{"body":49,"breadcrumbs":3,"title":2},"175":{"body":55,"breadcrumbs":3,"title":2},"176":{"body":29,"breadcrumbs":3,"title":2},"177":{"body":20,"breadcrumbs":3,"title":2},"178":{"body":20,"breadcrumbs":2,"title":1},"179":{"body":19,"breadcrumbs":3,"title":2},"18":{"body":0,"breadcrumbs":4,"title":3},"180":{"body":47,"breadcrumbs":3,"title":2},"181":{"body":0,"breadcrumbs":2,"title":1},"182":{"body":34,"breadcrumbs":3,"title":2},"183":{"body":30,"breadcrumbs":3,"title":2},"184":{"body":16,"breadcrumbs":3,"title":2},"185":{"body":30,"breadcrumbs":4,"title":2},"186":{"body":16,"breadcrumbs":4,"title":2},"187":{"body":39,"breadcrumbs":4,"title":2},"188":{"body":0,"breadcrumbs":3,"title":1},"189":{"body":18,"breadcrumbs":4,"title":2},"19":{"body":31,"breadcrumbs":4,"title":3},"190":{"body":16,"breadcrumbs":4,"title":2},"191":{"body":0,"breadcrumbs":4,"title":2},"192":{"body":11,"breadcrumbs":4,"title":2},"193":{"body":13,"breadcrumbs":4,"title":2},"194":{"body":0,"breadcrumbs":4,"title":2},"195":{"body":51,"breadcrumbs":4,"title":2},"196":{"body":69,"breadcrumbs":4,"title":2},"197":{"body":76,"breadcrumbs":4,"title":2},"198":{"body":27,"breadcrumbs":4,"title":2},"199":{"body":0,"breadcrumbs":4,"title":2},"2":{"body":56,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":4,"title":3},"200":{"body":62,"breadcrumbs":4,"title":2},"201":{"body":0,"breadcrumbs":4,"title":2},"202":{"body":118,"breadcrumbs":4,"title":2},"203":{"body":65,"breadcrumbs":4,"title":2},"204":{"body":62,"breadcrumbs":4,"title":2},"205":{"body":17,"breadcrumbs":5,"title":3},"206":{"body":59,"breadcrumbs":4,"title":2},"207":{"body":29,"breadcrumbs":4,"title":2},"208":{"body":0,"breadcrumbs":4,"title":2},"209":{"body":23,"breadcrumbs":5,"title":3},"21":{"body":22,"breadcrumbs":3,"title":2},"210":{"body":46,"breadcrumbs":5,"title":3},"211":{"body":18,"breadcrumbs":5,"title":3},"212":{"body":19,"breadcrumbs":4,"title":2},"213":{"body":15,"breadcrumbs":4,"title":2},"214":{"body":15,"breadcrumbs":4,"title":2},"215":{"body":20,"breadcrumbs":3,"title":1},"216":{"body":0,"breadcrumbs":5,"title":3},"217":{"body":16,"breadcrumbs":5,"title":3},"218":{"body":17,"breadcrumbs":4,"title":2},"219":{"body":50,"breadcrumbs":5,"title":3},"22":{"body":0,"breadcrumbs":3,"title":2},"220":{"body":28,"breadcrumbs":4,"title":2},"221":{"body":26,"breadcrumbs":5,"title":3},"222":{"body":35,"breadcrumbs":5,"title":3},"223":{"body":17,"breadcrumbs":4,"title":2},"224":{"body":25,"breadcrumbs":5,"title":3},"225":{"body":18,"breadcrumbs":4,"title":2},"226":{"body":0,"breadcrumbs":4,"title":2},"227":{"body":43,"breadcrumbs":4,"title":2},"228":{"body":15,"breadcrumbs":5,"title":3},"229":{"body":16,"breadcrumbs":4,"title":2},"23":{"body":16,"breadcrumbs":2,"title":1},"230":{"body":0,"breadcrumbs":4,"title":2},"231":{"body":3,"breadcrumbs":4,"title":2},"232":{"body":4,"breadcrumbs":6,"title":4},"233":{"body":17,"breadcrumbs":4,"title":2},"234":{"body":20,"breadcrumbs":4,"title":2},"235":{"body":105,"breadcrumbs":5,"title":3},"236":{"body":0,"breadcrumbs":4,"title":2},"237":{"body":26,"breadcrumbs":3,"title":1},"238":{"body":22,"breadcrumbs":4,"title":2},"239":{"body":18,"breadcrumbs":3,"title":1},"24":{"body":21,"breadcrumbs":2,"title":1},"240":{"body":14,"breadcrumbs":4,"title":2},"241":{"body":16,"breadcrumbs":4,"title":2},"242":{"body":22,"breadcrumbs":4,"title":2},"243":{"body":0,"breadcrumbs":4,"title":2},"244":{"body":32,"breadcrumbs":4,"title":2},"245":{"body":9,"breadcrumbs":3,"title":1},"246":{"body":12,"breadcrumbs":4,"title":2},"247":{"body":29,"breadcrumbs":4,"title":2},"248":{"body":72,"breadcrumbs":4,"title":2},"249":{"body":46,"breadcrumbs":5,"title":3},"25":{"body":14,"breadcrumbs":2,"title":1},"250":{"body":32,"breadcrumbs":4,"title":2},"251":{"body":0,"breadcrumbs":4,"title":2},"252":{"body":20,"breadcrumbs":4,"title":2},"253":{"body":33,"breadcrumbs":5,"title":3},"254":{"body":17,"breadcrumbs":4,"title":2},"255":{"body":0,"breadcrumbs":4,"title":2},"256":{"body":22,"breadcrumbs":4,"title":2},"257":{"body":7,"breadcrumbs":4,"title":2},"258":{"body":5,"breadcrumbs":4,"title":2},"259":{"body":6,"breadcrumbs":4,"title":2},"26":{"body":20,"breadcrumbs":2,"title":1},"260":{"body":34,"breadcrumbs":4,"title":2},"261":{"body":10,"breadcrumbs":4,"title":2},"262":{"body":17,"breadcrumbs":5,"title":3},"263":{"body":0,"breadcrumbs":4,"title":2},"264":{"body":19,"breadcrumbs":4,"title":2},"265":{"body":16,"breadcrumbs":4,"title":2},"266":{"body":17,"breadcrumbs":4,"title":2},"267":{"body":28,"breadcrumbs":4,"title":2},"268":{"body":0,"breadcrumbs":5,"title":3},"269":{"body":10,"breadcrumbs":6,"title":4},"27":{"body":64,"breadcrumbs":3,"title":2},"270":{"body":12,"breadcrumbs":6,"title":4},"271":{"body":0,"breadcrumbs":4,"title":2},"272":{"body":23,"breadcrumbs":4,"title":2},"273":{"body":19,"breadcrumbs":3,"title":1},"274":{"body":18,"breadcrumbs":3,"title":1},"275":{"body":0,"breadcrumbs":4,"title":2},"276":{"body":23,"breadcrumbs":5,"title":3},"277":{"body":35,"breadcrumbs":5,"title":3},"278":{"body":17,"breadcrumbs":5,"title":3},"279":{"body":13,"breadcrumbs":4,"title":2},"28":{"body":0,"breadcrumbs":4,"title":3},"280":{"body":17,"breadcrumbs":6,"title":3},"281":{"body":18,"breadcrumbs":4,"title":1},"282":{"body":34,"breadcrumbs":5,"title":2},"283":{"body":0,"breadcrumbs":5,"title":2},"284":{"body":15,"breadcrumbs":5,"title":2},"285":{"body":19,"breadcrumbs":4,"title":1},"286":{"body":0,"breadcrumbs":5,"title":2},"287":{"body":7,"breadcrumbs":6,"title":3},"288":{"body":10,"breadcrumbs":6,"title":3},"289":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":17,"breadcrumbs":4,"title":3},"290":{"body":0,"breadcrumbs":6,"title":3},"291":{"body":16,"breadcrumbs":5,"title":2},"292":{"body":63,"breadcrumbs":5,"title":2},"293":{"body":31,"breadcrumbs":5,"title":2},"294":{"body":64,"breadcrumbs":7,"title":4},"295":{"body":25,"breadcrumbs":5,"title":2},"296":{"body":0,"breadcrumbs":6,"title":3},"297":{"body":22,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":7,"title":4},"299":{"body":27,"breadcrumbs":5,"title":2},"3":{"body":14,"breadcrumbs":4,"title":3},"30":{"body":17,"breadcrumbs":4,"title":3},"300":{"body":18,"breadcrumbs":5,"title":2},"301":{"body":11,"breadcrumbs":8,"title":5},"302":{"body":20,"breadcrumbs":4,"title":1},"303":{"body":20,"breadcrumbs":4,"title":1},"304":{"body":33,"breadcrumbs":6,"title":3},"305":{"body":54,"breadcrumbs":5,"title":2},"306":{"body":24,"breadcrumbs":5,"title":2},"307":{"body":22,"breadcrumbs":7,"title":4},"308":{"body":33,"breadcrumbs":4,"title":1},"309":{"body":48,"breadcrumbs":5,"title":2},"31":{"body":17,"breadcrumbs":4,"title":3},"310":{"body":0,"breadcrumbs":6,"title":3},"311":{"body":51,"breadcrumbs":6,"title":3},"312":{"body":48,"breadcrumbs":6,"title":3},"313":{"body":23,"breadcrumbs":6,"title":3},"314":{"body":51,"breadcrumbs":8,"title":5},"315":{"body":26,"breadcrumbs":6,"title":3},"316":{"body":18,"breadcrumbs":7,"title":4},"317":{"body":0,"breadcrumbs":6,"title":3},"318":{"body":25,"breadcrumbs":7,"title":4},"319":{"body":58,"breadcrumbs":6,"title":3},"32":{"body":80,"breadcrumbs":4,"title":3},"320":{"body":46,"breadcrumbs":6,"title":3},"321":{"body":23,"breadcrumbs":6,"title":3},"322":{"body":26,"breadcrumbs":5,"title":2},"323":{"body":20,"breadcrumbs":6,"title":3},"324":{"body":0,"breadcrumbs":5,"title":2},"325":{"body":22,"breadcrumbs":5,"title":2},"326":{"body":32,"breadcrumbs":5,"title":2},"327":{"body":21,"breadcrumbs":4,"title":1},"328":{"body":0,"breadcrumbs":4,"title":1},"329":{"body":20,"breadcrumbs":6,"title":3},"33":{"body":41,"breadcrumbs":3,"title":2},"330":{"body":20,"breadcrumbs":6,"title":3},"331":{"body":20,"breadcrumbs":5,"title":2},"332":{"body":51,"breadcrumbs":5,"title":2},"333":{"body":19,"breadcrumbs":5,"title":2},"334":{"body":15,"breadcrumbs":6,"title":3},"335":{"body":6,"breadcrumbs":6,"title":3},"336":{"body":54,"breadcrumbs":5,"title":2},"337":{"body":0,"breadcrumbs":5,"title":2},"338":{"body":36,"breadcrumbs":4,"title":1},"339":{"body":41,"breadcrumbs":4,"title":1},"34":{"body":19,"breadcrumbs":3,"title":2},"340":{"body":0,"breadcrumbs":5,"title":2},"341":{"body":41,"breadcrumbs":5,"title":2},"342":{"body":21,"breadcrumbs":5,"title":2},"343":{"body":19,"breadcrumbs":6,"title":3},"344":{"body":0,"breadcrumbs":5,"title":2},"345":{"body":35,"breadcrumbs":5,"title":2},"346":{"body":16,"breadcrumbs":6,"title":3},"347":{"body":20,"breadcrumbs":5,"title":2},"348":{"body":23,"breadcrumbs":5,"title":2},"349":{"body":37,"breadcrumbs":5,"title":2},"35":{"body":6,"breadcrumbs":4,"title":3},"350":{"body":18,"breadcrumbs":5,"title":2},"351":{"body":28,"breadcrumbs":5,"title":2},"352":{"body":0,"breadcrumbs":5,"title":2},"353":{"body":25,"breadcrumbs":5,"title":2},"354":{"body":35,"breadcrumbs":4,"title":1},"355":{"body":14,"breadcrumbs":6,"title":3},"356":{"body":0,"breadcrumbs":4,"title":1},"357":{"body":47,"breadcrumbs":5,"title":2},"358":{"body":13,"breadcrumbs":5,"title":2},"359":{"body":0,"breadcrumbs":4,"title":1},"36":{"body":129,"breadcrumbs":3,"title":2},"360":{"body":16,"breadcrumbs":6,"title":3},"361":{"body":47,"breadcrumbs":6,"title":3},"362":{"body":38,"breadcrumbs":5,"title":2},"363":{"body":21,"breadcrumbs":5,"title":2},"364":{"body":34,"breadcrumbs":5,"title":2},"365":{"body":70,"breadcrumbs":5,"title":2},"366":{"body":15,"breadcrumbs":5,"title":2},"367":{"body":45,"breadcrumbs":6,"title":3},"368":{"body":21,"breadcrumbs":4,"title":1},"369":{"body":39,"breadcrumbs":5,"title":2},"37":{"body":23,"breadcrumbs":4,"title":3},"370":{"body":0,"breadcrumbs":5,"title":2},"371":{"body":29,"breadcrumbs":5,"title":2},"372":{"body":43,"breadcrumbs":5,"title":2},"373":{"body":0,"breadcrumbs":4,"title":1},"374":{"body":9,"breadcrumbs":5,"title":2},"375":{"body":44,"breadcrumbs":5,"title":2},"376":{"body":22,"breadcrumbs":5,"title":2},"377":{"body":0,"breadcrumbs":4,"title":1},"378":{"body":13,"breadcrumbs":5,"title":2},"379":{"body":45,"breadcrumbs":5,"title":2},"38":{"body":43,"breadcrumbs":4,"title":3},"380":{"body":41,"breadcrumbs":5,"title":2},"381":{"body":17,"breadcrumbs":5,"title":2},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":43,"breadcrumbs":5,"title":2},"384":{"body":12,"breadcrumbs":5,"title":2},"385":{"body":23,"breadcrumbs":5,"title":2},"386":{"body":27,"breadcrumbs":6,"title":3},"387":{"body":52,"breadcrumbs":5,"title":2},"388":{"body":51,"breadcrumbs":6,"title":3},"389":{"body":19,"breadcrumbs":5,"title":2},"39":{"body":8,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":5,"title":2},"391":{"body":24,"breadcrumbs":4,"title":1},"392":{"body":62,"breadcrumbs":4,"title":1},"393":{"body":0,"breadcrumbs":4,"title":1},"394":{"body":16,"breadcrumbs":5,"title":2},"395":{"body":13,"breadcrumbs":5,"title":2},"396":{"body":15,"breadcrumbs":5,"title":2},"397":{"body":15,"breadcrumbs":5,"title":2},"398":{"body":19,"breadcrumbs":3,"title":2},"399":{"body":14,"breadcrumbs":2,"title":1},"4":{"body":0,"breadcrumbs":2,"title":1},"40":{"body":47,"breadcrumbs":8,"title":6},"400":{"body":0,"breadcrumbs":2,"title":1},"401":{"body":3,"breadcrumbs":3,"title":2},"402":{"body":3,"breadcrumbs":3,"title":2},"403":{"body":3,"breadcrumbs":3,"title":2},"404":{"body":40,"breadcrumbs":3,"title":2},"405":{"body":5,"breadcrumbs":3,"title":2},"406":{"body":13,"breadcrumbs":4,"title":3},"407":{"body":3,"breadcrumbs":7,"title":6},"408":{"body":5,"breadcrumbs":3,"title":2},"409":{"body":11,"breadcrumbs":4,"title":3},"41":{"body":37,"breadcrumbs":7,"title":5},"410":{"body":58,"breadcrumbs":3,"title":2},"411":{"body":0,"breadcrumbs":2,"title":1},"412":{"body":32,"breadcrumbs":3,"title":2},"413":{"body":24,"breadcrumbs":3,"title":2},"414":{"body":17,"breadcrumbs":3,"title":2},"415":{"body":3,"breadcrumbs":3,"title":2},"416":{"body":6,"breadcrumbs":4,"title":3},"417":{"body":14,"breadcrumbs":4,"title":3},"418":{"body":9,"breadcrumbs":3,"title":2},"419":{"body":2,"breadcrumbs":4,"title":3},"42":{"body":33,"breadcrumbs":7,"title":5},"420":{"body":0,"breadcrumbs":3,"title":2},"421":{"body":13,"breadcrumbs":4,"title":3},"422":{"body":12,"breadcrumbs":3,"title":2},"423":{"body":10,"breadcrumbs":5,"title":4},"424":{"body":14,"breadcrumbs":5,"title":4},"425":{"body":0,"breadcrumbs":3,"title":2},"426":{"body":15,"breadcrumbs":3,"title":2},"427":{"body":22,"breadcrumbs":3,"title":2},"428":{"body":40,"breadcrumbs":3,"title":2},"429":{"body":0,"breadcrumbs":3,"title":2},"43":{"body":33,"breadcrumbs":9,"title":7},"430":{"body":19,"breadcrumbs":3,"title":2},"431":{"body":20,"breadcrumbs":3,"title":2},"432":{"body":15,"breadcrumbs":3,"title":2},"433":{"body":12,"breadcrumbs":3,"title":2},"434":{"body":31,"breadcrumbs":3,"title":2},"435":{"body":17,"breadcrumbs":2,"title":1},"436":{"body":18,"breadcrumbs":4,"title":2},"437":{"body":42,"breadcrumbs":6,"title":4},"438":{"body":119,"breadcrumbs":4,"title":2},"439":{"body":29,"breadcrumbs":5,"title":3},"44":{"body":28,"breadcrumbs":8,"title":6},"440":{"body":157,"breadcrumbs":4,"title":2},"441":{"body":109,"breadcrumbs":3,"title":1},"442":{"body":39,"breadcrumbs":3,"title":1},"443":{"body":9,"breadcrumbs":3,"title":1},"444":{"body":15,"breadcrumbs":3,"title":1},"445":{"body":25,"breadcrumbs":3,"title":1},"446":{"body":51,"breadcrumbs":3,"title":1},"447":{"body":44,"breadcrumbs":4,"title":2},"448":{"body":28,"breadcrumbs":3,"title":1},"449":{"body":43,"breadcrumbs":4,"title":2},"45":{"body":35,"breadcrumbs":9,"title":7},"450":{"body":44,"breadcrumbs":3,"title":1},"451":{"body":49,"breadcrumbs":3,"title":1},"452":{"body":58,"breadcrumbs":6,"title":4},"453":{"body":24,"breadcrumbs":3,"title":1},"454":{"body":21,"breadcrumbs":4,"title":2},"455":{"body":13,"breadcrumbs":3,"title":1},"456":{"body":20,"breadcrumbs":3,"title":1},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":22,"breadcrumbs":3,"title":1},"459":{"body":23,"breadcrumbs":3,"title":1},"46":{"body":35,"breadcrumbs":10,"title":8},"460":{"body":27,"breadcrumbs":3,"title":1},"461":{"body":25,"breadcrumbs":3,"title":1},"462":{"body":105,"breadcrumbs":4,"title":2},"463":{"body":48,"breadcrumbs":4,"title":2},"464":{"body":47,"breadcrumbs":4,"title":2},"465":{"body":15,"breadcrumbs":3,"title":1},"466":{"body":13,"breadcrumbs":4,"title":2},"467":{"body":34,"breadcrumbs":6,"title":4},"468":{"body":0,"breadcrumbs":4,"title":2},"469":{"body":21,"breadcrumbs":5,"title":3},"47":{"body":16,"breadcrumbs":4,"title":2},"470":{"body":17,"breadcrumbs":4,"title":2},"471":{"body":0,"breadcrumbs":4,"title":2},"472":{"body":30,"breadcrumbs":5,"title":3},"473":{"body":14,"breadcrumbs":4,"title":2},"474":{"body":11,"breadcrumbs":4,"title":2},"475":{"body":14,"breadcrumbs":4,"title":2},"476":{"body":20,"breadcrumbs":3,"title":1},"477":{"body":0,"breadcrumbs":4,"title":2},"478":{"body":11,"breadcrumbs":5,"title":3},"479":{"body":13,"breadcrumbs":6,"title":4},"48":{"body":10,"breadcrumbs":3,"title":1},"480":{"body":0,"breadcrumbs":4,"title":2},"481":{"body":39,"breadcrumbs":5,"title":3},"482":{"body":13,"breadcrumbs":5,"title":3},"483":{"body":0,"breadcrumbs":4,"title":2},"484":{"body":11,"breadcrumbs":5,"title":3},"485":{"body":23,"breadcrumbs":5,"title":3},"486":{"body":0,"breadcrumbs":4,"title":2},"487":{"body":28,"breadcrumbs":4,"title":2},"488":{"body":13,"breadcrumbs":4,"title":2},"489":{"body":12,"breadcrumbs":5,"title":3},"49":{"body":50,"breadcrumbs":4,"title":2},"490":{"body":0,"breadcrumbs":4,"title":2},"491":{"body":11,"breadcrumbs":4,"title":2},"492":{"body":20,"breadcrumbs":4,"title":2},"493":{"body":14,"breadcrumbs":5,"title":3},"494":{"body":7,"breadcrumbs":4,"title":2},"495":{"body":17,"breadcrumbs":4,"title":2},"496":{"body":19,"breadcrumbs":4,"title":2},"497":{"body":0,"breadcrumbs":4,"title":2},"498":{"body":13,"breadcrumbs":4,"title":2},"499":{"body":42,"breadcrumbs":4,"title":2},"5":{"body":17,"breadcrumbs":2,"title":1},"50":{"body":24,"breadcrumbs":4,"title":2},"500":{"body":41,"breadcrumbs":4,"title":2},"501":{"body":91,"breadcrumbs":4,"title":2},"502":{"body":20,"breadcrumbs":4,"title":2},"503":{"body":27,"breadcrumbs":6,"title":3},"504":{"body":4,"breadcrumbs":4,"title":1},"505":{"body":10,"breadcrumbs":6,"title":3},"506":{"body":27,"breadcrumbs":5,"title":2},"507":{"body":20,"breadcrumbs":5,"title":2},"508":{"body":72,"breadcrumbs":9,"title":6},"509":{"body":21,"breadcrumbs":5,"title":2},"51":{"body":73,"breadcrumbs":6,"title":4},"510":{"body":45,"breadcrumbs":5,"title":2},"511":{"body":4,"breadcrumbs":6,"title":3},"512":{"body":21,"breadcrumbs":6,"title":3},"513":{"body":13,"breadcrumbs":3,"title":2},"514":{"body":0,"breadcrumbs":3,"title":2},"515":{"body":52,"breadcrumbs":5,"title":4},"516":{"body":41,"breadcrumbs":5,"title":4},"517":{"body":10,"breadcrumbs":2,"title":1},"518":{"body":18,"breadcrumbs":3,"title":2},"519":{"body":4,"breadcrumbs":3,"title":2},"52":{"body":10,"breadcrumbs":3,"title":1},"520":{"body":26,"breadcrumbs":4,"title":3},"521":{"body":29,"breadcrumbs":6,"title":3},"522":{"body":0,"breadcrumbs":6,"title":3},"523":{"body":6,"breadcrumbs":5,"title":2},"524":{"body":11,"breadcrumbs":7,"title":4},"525":{"body":28,"breadcrumbs":7,"title":4},"526":{"body":53,"breadcrumbs":5,"title":2},"527":{"body":11,"breadcrumbs":4,"title":1},"528":{"body":0,"breadcrumbs":6,"title":3},"529":{"body":15,"breadcrumbs":5,"title":2},"53":{"body":58,"breadcrumbs":4,"title":2},"530":{"body":23,"breadcrumbs":5,"title":2},"531":{"body":36,"breadcrumbs":4,"title":1},"532":{"body":37,"breadcrumbs":4,"title":1},"533":{"body":48,"breadcrumbs":6,"title":3},"534":{"body":51,"breadcrumbs":5,"title":2},"535":{"body":19,"breadcrumbs":5,"title":2},"536":{"body":16,"breadcrumbs":5,"title":2},"537":{"body":24,"breadcrumbs":4,"title":2},"538":{"body":0,"breadcrumbs":5,"title":3},"539":{"body":4,"breadcrumbs":4,"title":2},"54":{"body":75,"breadcrumbs":5,"title":3},"540":{"body":11,"breadcrumbs":6,"title":4},"541":{"body":26,"breadcrumbs":6,"title":4},"542":{"body":37,"breadcrumbs":4,"title":2},"543":{"body":74,"breadcrumbs":3,"title":1},"544":{"body":40,"breadcrumbs":3,"title":1},"545":{"body":53,"breadcrumbs":5,"title":3},"546":{"body":54,"breadcrumbs":7,"title":5},"547":{"body":23,"breadcrumbs":5,"title":3},"548":{"body":21,"breadcrumbs":5,"title":3},"549":{"body":33,"breadcrumbs":5,"title":3},"55":{"body":51,"breadcrumbs":4,"title":2},"550":{"body":46,"breadcrumbs":4,"title":2},"551":{"body":45,"breadcrumbs":4,"title":2},"552":{"body":23,"breadcrumbs":4,"title":2},"553":{"body":20,"breadcrumbs":4,"title":2},"554":{"body":41,"breadcrumbs":4,"title":2},"555":{"body":60,"breadcrumbs":3,"title":1},"556":{"body":33,"breadcrumbs":3,"title":1},"557":{"body":54,"breadcrumbs":7,"title":5},"558":{"body":16,"breadcrumbs":5,"title":3},"559":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":8,"breadcrumbs":3,"title":1},"560":{"body":22,"breadcrumbs":4,"title":2},"561":{"body":16,"breadcrumbs":4,"title":2},"562":{"body":18,"breadcrumbs":4,"title":2},"563":{"body":41,"breadcrumbs":3,"title":1},"564":{"body":0,"breadcrumbs":4,"title":2},"565":{"body":24,"breadcrumbs":4,"title":2},"566":{"body":0,"breadcrumbs":4,"title":2},"567":{"body":105,"breadcrumbs":5,"title":3},"568":{"body":56,"breadcrumbs":4,"title":2},"569":{"body":0,"breadcrumbs":4,"title":2},"57":{"body":40,"breadcrumbs":4,"title":2},"570":{"body":96,"breadcrumbs":5,"title":3},"571":{"body":7,"breadcrumbs":4,"title":2},"572":{"body":66,"breadcrumbs":5,"title":3},"573":{"body":0,"breadcrumbs":4,"title":2},"574":{"body":86,"breadcrumbs":5,"title":3},"575":{"body":0,"breadcrumbs":4,"title":2},"576":{"body":18,"breadcrumbs":3,"title":1},"577":{"body":16,"breadcrumbs":3,"title":1},"578":{"body":18,"breadcrumbs":3,"title":1},"579":{"body":40,"breadcrumbs":3,"title":1},"58":{"body":32,"breadcrumbs":4,"title":2},"580":{"body":36,"breadcrumbs":3,"title":1},"581":{"body":0,"breadcrumbs":4,"title":2},"582":{"body":81,"breadcrumbs":4,"title":2},"583":{"body":67,"breadcrumbs":4,"title":2},"584":{"body":0,"breadcrumbs":4,"title":2},"585":{"body":11,"breadcrumbs":4,"title":2},"586":{"body":21,"breadcrumbs":4,"title":2},"587":{"body":16,"breadcrumbs":4,"title":2},"588":{"body":27,"breadcrumbs":4,"title":2},"589":{"body":17,"breadcrumbs":4,"title":2},"59":{"body":37,"breadcrumbs":4,"title":2},"590":{"body":6,"breadcrumbs":4,"title":2},"591":{"body":3,"breadcrumbs":3,"title":1},"592":{"body":34,"breadcrumbs":6,"title":4},"593":{"body":5,"breadcrumbs":4,"title":2},"594":{"body":17,"breadcrumbs":4,"title":2},"595":{"body":19,"breadcrumbs":3,"title":1},"596":{"body":38,"breadcrumbs":4,"title":2},"597":{"body":83,"breadcrumbs":4,"title":2},"598":{"body":29,"breadcrumbs":4,"title":2},"599":{"body":27,"breadcrumbs":4,"title":2},"6":{"body":17,"breadcrumbs":3,"title":2},"60":{"body":8,"breadcrumbs":3,"title":1},"600":{"body":54,"breadcrumbs":4,"title":2},"601":{"body":42,"breadcrumbs":4,"title":2},"602":{"body":23,"breadcrumbs":4,"title":2},"603":{"body":26,"breadcrumbs":4,"title":2},"604":{"body":52,"breadcrumbs":4,"title":2},"605":{"body":31,"breadcrumbs":4,"title":2},"606":{"body":20,"breadcrumbs":4,"title":2},"607":{"body":32,"breadcrumbs":4,"title":2},"608":{"body":26,"breadcrumbs":5,"title":3},"609":{"body":19,"breadcrumbs":5,"title":3},"61":{"body":67,"breadcrumbs":4,"title":2},"610":{"body":21,"breadcrumbs":5,"title":3},"611":{"body":21,"breadcrumbs":4,"title":2},"612":{"body":18,"breadcrumbs":4,"title":2},"613":{"body":26,"breadcrumbs":4,"title":2},"614":{"body":0,"breadcrumbs":4,"title":2},"615":{"body":22,"breadcrumbs":3,"title":1},"616":{"body":39,"breadcrumbs":3,"title":1},"617":{"body":4,"breadcrumbs":4,"title":2},"618":{"body":16,"breadcrumbs":3,"title":1},"619":{"body":16,"breadcrumbs":3,"title":1},"62":{"body":33,"breadcrumbs":4,"title":2},"620":{"body":5,"breadcrumbs":4,"title":2},"621":{"body":23,"breadcrumbs":5,"title":3},"622":{"body":8,"breadcrumbs":5,"title":3},"623":{"body":22,"breadcrumbs":4,"title":2},"624":{"body":129,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":4,"title":2},"626":{"body":21,"breadcrumbs":3,"title":1},"627":{"body":21,"breadcrumbs":3,"title":2},"628":{"body":16,"breadcrumbs":2,"title":1},"629":{"body":0,"breadcrumbs":2,"title":1},"63":{"body":26,"breadcrumbs":4,"title":2},"630":{"body":27,"breadcrumbs":3,"title":2},"631":{"body":6,"breadcrumbs":3,"title":2},"632":{"body":3,"breadcrumbs":3,"title":2},"633":{"body":24,"breadcrumbs":3,"title":2},"634":{"body":49,"breadcrumbs":3,"title":2},"635":{"body":8,"breadcrumbs":3,"title":2},"636":{"body":19,"breadcrumbs":3,"title":2},"637":{"body":20,"breadcrumbs":3,"title":2},"638":{"body":0,"breadcrumbs":2,"title":1},"639":{"body":18,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":4,"title":2},"640":{"body":9,"breadcrumbs":4,"title":3},"641":{"body":14,"breadcrumbs":3,"title":2},"642":{"body":17,"breadcrumbs":3,"title":2},"643":{"body":3,"breadcrumbs":3,"title":2},"644":{"body":6,"breadcrumbs":4,"title":3},"645":{"body":14,"breadcrumbs":4,"title":3},"646":{"body":9,"breadcrumbs":3,"title":2},"647":{"body":2,"breadcrumbs":4,"title":3},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":13,"breadcrumbs":4,"title":3},"65":{"body":28,"breadcrumbs":4,"title":2},"650":{"body":12,"breadcrumbs":3,"title":2},"651":{"body":10,"breadcrumbs":5,"title":4},"652":{"body":14,"breadcrumbs":5,"title":4},"653":{"body":0,"breadcrumbs":3,"title":2},"654":{"body":17,"breadcrumbs":3,"title":2},"655":{"body":10,"breadcrumbs":3,"title":2},"656":{"body":42,"breadcrumbs":3,"title":2},"657":{"body":0,"breadcrumbs":4,"title":3},"658":{"body":22,"breadcrumbs":3,"title":2},"659":{"body":20,"breadcrumbs":3,"title":2},"66":{"body":27,"breadcrumbs":4,"title":2},"660":{"body":19,"breadcrumbs":3,"title":2},"661":{"body":42,"breadcrumbs":4,"title":3},"662":{"body":0,"breadcrumbs":3,"title":2},"663":{"body":25,"breadcrumbs":3,"title":2},"664":{"body":20,"breadcrumbs":3,"title":2},"665":{"body":18,"breadcrumbs":3,"title":2},"666":{"body":20,"breadcrumbs":3,"title":2},"667":{"body":28,"breadcrumbs":5,"title":4},"668":{"body":62,"breadcrumbs":3,"title":2},"669":{"body":27,"breadcrumbs":3,"title":2},"67":{"body":30,"breadcrumbs":4,"title":2},"670":{"body":20,"breadcrumbs":2,"title":1},"671":{"body":18,"breadcrumbs":4,"title":2},"672":{"body":104,"breadcrumbs":4,"title":2},"673":{"body":29,"breadcrumbs":5,"title":3},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":108,"breadcrumbs":7,"title":5},"676":{"body":50,"breadcrumbs":4,"title":2},"677":{"body":8,"breadcrumbs":3,"title":1},"678":{"body":14,"breadcrumbs":3,"title":1},"679":{"body":20,"breadcrumbs":3,"title":1},"68":{"body":7,"breadcrumbs":5,"title":3},"680":{"body":40,"breadcrumbs":3,"title":1},"681":{"body":43,"breadcrumbs":4,"title":2},"682":{"body":29,"breadcrumbs":3,"title":1},"683":{"body":25,"breadcrumbs":6,"title":4},"684":{"body":26,"breadcrumbs":3,"title":1},"685":{"body":20,"breadcrumbs":4,"title":2},"686":{"body":31,"breadcrumbs":4,"title":2},"687":{"body":85,"breadcrumbs":3,"title":1},"688":{"body":82,"breadcrumbs":6,"title":4},"689":{"body":25,"breadcrumbs":3,"title":1},"69":{"body":22,"breadcrumbs":4,"title":2},"690":{"body":17,"breadcrumbs":4,"title":2},"691":{"body":18,"breadcrumbs":3,"title":1},"692":{"body":27,"breadcrumbs":3,"title":1},"693":{"body":5,"breadcrumbs":4,"title":2},"694":{"body":19,"breadcrumbs":3,"title":1},"695":{"body":24,"breadcrumbs":3,"title":1},"696":{"body":24,"breadcrumbs":3,"title":1},"697":{"body":31,"breadcrumbs":3,"title":1},"698":{"body":15,"breadcrumbs":3,"title":1},"699":{"body":105,"breadcrumbs":4,"title":2},"7":{"body":17,"breadcrumbs":3,"title":2},"70":{"body":20,"breadcrumbs":5,"title":3},"700":{"body":58,"breadcrumbs":4,"title":2},"701":{"body":48,"breadcrumbs":4,"title":2},"702":{"body":15,"breadcrumbs":3,"title":1},"703":{"body":23,"breadcrumbs":4,"title":2},"704":{"body":0,"breadcrumbs":4,"title":2},"705":{"body":12,"breadcrumbs":5,"title":3},"706":{"body":17,"breadcrumbs":4,"title":2},"707":{"body":0,"breadcrumbs":4,"title":2},"708":{"body":25,"breadcrumbs":5,"title":3},"709":{"body":12,"breadcrumbs":4,"title":2},"71":{"body":6,"breadcrumbs":4,"title":2},"710":{"body":9,"breadcrumbs":4,"title":2},"711":{"body":12,"breadcrumbs":4,"title":2},"712":{"body":18,"breadcrumbs":3,"title":1},"713":{"body":0,"breadcrumbs":4,"title":2},"714":{"body":9,"breadcrumbs":5,"title":3},"715":{"body":11,"breadcrumbs":6,"title":4},"716":{"body":0,"breadcrumbs":4,"title":2},"717":{"body":38,"breadcrumbs":5,"title":3},"718":{"body":11,"breadcrumbs":5,"title":3},"719":{"body":0,"breadcrumbs":4,"title":2},"72":{"body":23,"breadcrumbs":4,"title":2},"720":{"body":9,"breadcrumbs":5,"title":3},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":0,"breadcrumbs":4,"title":2},"723":{"body":26,"breadcrumbs":4,"title":2},"724":{"body":11,"breadcrumbs":4,"title":2},"725":{"body":10,"breadcrumbs":5,"title":3},"726":{"body":0,"breadcrumbs":4,"title":2},"727":{"body":16,"breadcrumbs":4,"title":2},"728":{"body":18,"breadcrumbs":4,"title":2},"729":{"body":12,"breadcrumbs":5,"title":3},"73":{"body":19,"breadcrumbs":4,"title":2},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":15,"breadcrumbs":4,"title":2},"732":{"body":17,"breadcrumbs":4,"title":2},"733":{"body":0,"breadcrumbs":4,"title":2},"734":{"body":11,"breadcrumbs":4,"title":2},"735":{"body":16,"breadcrumbs":4,"title":2},"736":{"body":35,"breadcrumbs":4,"title":2},"737":{"body":78,"breadcrumbs":4,"title":2},"738":{"body":0,"breadcrumbs":5,"title":3},"739":{"body":29,"breadcrumbs":5,"title":3},"74":{"body":19,"breadcrumbs":4,"title":2},"740":{"body":21,"breadcrumbs":5,"title":3},"741":{"body":0,"breadcrumbs":4,"title":2},"742":{"body":5,"breadcrumbs":4,"title":2},"743":{"body":17,"breadcrumbs":4,"title":2},"744":{"body":26,"breadcrumbs":4,"title":2},"745":{"body":17,"breadcrumbs":4,"title":2},"746":{"body":37,"breadcrumbs":6,"title":3},"747":{"body":21,"breadcrumbs":4,"title":1},"748":{"body":17,"breadcrumbs":5,"title":2},"749":{"body":31,"breadcrumbs":7,"title":4},"75":{"body":28,"breadcrumbs":4,"title":2},"750":{"body":22,"breadcrumbs":7,"title":4},"751":{"body":53,"breadcrumbs":8,"title":5},"752":{"body":16,"breadcrumbs":6,"title":3},"753":{"body":4,"breadcrumbs":6,"title":3},"754":{"body":26,"breadcrumbs":6,"title":3},"755":{"body":15,"breadcrumbs":4,"title":2},"756":{"body":78,"breadcrumbs":4,"title":2},"757":{"body":7,"breadcrumbs":4,"title":2},"758":{"body":20,"breadcrumbs":4,"title":2},"759":{"body":7,"breadcrumbs":4,"title":2},"76":{"body":7,"breadcrumbs":5,"title":3},"760":{"body":11,"breadcrumbs":8,"title":6},"761":{"body":73,"breadcrumbs":4,"title":2},"762":{"body":23,"breadcrumbs":3,"title":1},"763":{"body":23,"breadcrumbs":5,"title":3},"764":{"body":25,"breadcrumbs":5,"title":3},"765":{"body":26,"breadcrumbs":4,"title":2},"766":{"body":3,"breadcrumbs":3,"title":1},"767":{"body":5,"breadcrumbs":4,"title":2},"768":{"body":17,"breadcrumbs":4,"title":2},"769":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":56,"breadcrumbs":6,"title":4},"770":{"body":25,"breadcrumbs":3,"title":1},"771":{"body":89,"breadcrumbs":8,"title":6},"772":{"body":27,"breadcrumbs":3,"title":1},"773":{"body":41,"breadcrumbs":4,"title":2},"774":{"body":60,"breadcrumbs":6,"title":4},"775":{"body":66,"breadcrumbs":7,"title":5},"776":{"body":30,"breadcrumbs":4,"title":2},"777":{"body":39,"breadcrumbs":4,"title":2},"778":{"body":46,"breadcrumbs":5,"title":3},"779":{"body":28,"breadcrumbs":5,"title":3},"78":{"body":221,"breadcrumbs":4,"title":2},"780":{"body":23,"breadcrumbs":3,"title":1},"781":{"body":41,"breadcrumbs":6,"title":4},"782":{"body":30,"breadcrumbs":3,"title":1},"783":{"body":26,"breadcrumbs":3,"title":1},"784":{"body":28,"breadcrumbs":3,"title":1},"785":{"body":34,"breadcrumbs":3,"title":1},"786":{"body":27,"breadcrumbs":3,"title":1},"787":{"body":33,"breadcrumbs":5,"title":3},"788":{"body":14,"breadcrumbs":5,"title":3},"789":{"body":8,"breadcrumbs":3,"title":1},"79":{"body":7,"breadcrumbs":7,"title":5},"790":{"body":9,"breadcrumbs":3,"title":1},"791":{"body":8,"breadcrumbs":3,"title":1},"792":{"body":8,"breadcrumbs":3,"title":1},"793":{"body":10,"breadcrumbs":3,"title":1},"794":{"body":64,"breadcrumbs":4,"title":2},"795":{"body":0,"breadcrumbs":3,"title":1},"796":{"body":21,"breadcrumbs":5,"title":3},"797":{"body":48,"breadcrumbs":4,"title":2},"798":{"body":33,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":4,"title":2},"8":{"body":9,"breadcrumbs":3,"title":2},"80":{"body":16,"breadcrumbs":6,"title":4},"800":{"body":43,"breadcrumbs":4,"title":2},"801":{"body":42,"breadcrumbs":4,"title":2},"802":{"body":17,"breadcrumbs":3,"title":1},"803":{"body":38,"breadcrumbs":8,"title":5},"804":{"body":2,"breadcrumbs":4,"title":1},"805":{"body":58,"breadcrumbs":6,"title":3},"806":{"body":15,"breadcrumbs":6,"title":3},"807":{"body":29,"breadcrumbs":5,"title":2},"808":{"body":31,"breadcrumbs":7,"title":4},"809":{"body":18,"breadcrumbs":6,"title":3},"81":{"body":22,"breadcrumbs":6,"title":4},"810":{"body":40,"breadcrumbs":6,"title":3},"811":{"body":22,"breadcrumbs":4,"title":2},"812":{"body":27,"breadcrumbs":4,"title":2},"813":{"body":0,"breadcrumbs":4,"title":2},"814":{"body":7,"breadcrumbs":4,"title":2},"815":{"body":55,"breadcrumbs":4,"title":2},"816":{"body":36,"breadcrumbs":4,"title":2},"817":{"body":15,"breadcrumbs":4,"title":2},"818":{"body":0,"breadcrumbs":4,"title":2},"819":{"body":21,"breadcrumbs":3,"title":1},"82":{"body":4,"breadcrumbs":3,"title":1},"820":{"body":11,"breadcrumbs":4,"title":2},"821":{"body":46,"breadcrumbs":5,"title":3},"822":{"body":36,"breadcrumbs":4,"title":2},"823":{"body":28,"breadcrumbs":3,"title":1},"824":{"body":35,"breadcrumbs":4,"title":2},"825":{"body":71,"breadcrumbs":5,"title":3},"826":{"body":0,"breadcrumbs":4,"title":2},"827":{"body":43,"breadcrumbs":4,"title":2},"828":{"body":21,"breadcrumbs":4,"title":2},"829":{"body":27,"breadcrumbs":4,"title":2},"83":{"body":30,"breadcrumbs":3,"title":1},"830":{"body":49,"breadcrumbs":4,"title":2},"831":{"body":16,"breadcrumbs":3,"title":1},"832":{"body":17,"breadcrumbs":4,"title":2},"833":{"body":1,"breadcrumbs":4,"title":2},"834":{"body":27,"breadcrumbs":3,"title":1},"835":{"body":30,"breadcrumbs":4,"title":2},"836":{"body":35,"breadcrumbs":4,"title":2},"837":{"body":15,"breadcrumbs":4,"title":2},"838":{"body":0,"breadcrumbs":4,"title":2},"839":{"body":61,"breadcrumbs":5,"title":3},"84":{"body":6,"breadcrumbs":4,"title":2},"840":{"body":27,"breadcrumbs":5,"title":3},"841":{"body":45,"breadcrumbs":3,"title":1},"842":{"body":70,"breadcrumbs":5,"title":3},"843":{"body":62,"breadcrumbs":4,"title":2},"844":{"body":28,"breadcrumbs":3,"title":1},"845":{"body":52,"breadcrumbs":5,"title":3},"846":{"body":24,"breadcrumbs":4,"title":2},"847":{"body":0,"breadcrumbs":4,"title":2},"848":{"body":93,"breadcrumbs":4,"title":2},"849":{"body":62,"breadcrumbs":4,"title":2},"85":{"body":3,"breadcrumbs":3,"title":1},"850":{"body":81,"breadcrumbs":4,"title":2},"851":{"body":0,"breadcrumbs":4,"title":2},"852":{"body":26,"breadcrumbs":3,"title":1},"853":{"body":19,"breadcrumbs":3,"title":1},"854":{"body":12,"breadcrumbs":3,"title":1},"855":{"body":26,"breadcrumbs":4,"title":2},"856":{"body":21,"breadcrumbs":3,"title":1},"857":{"body":18,"breadcrumbs":4,"title":2},"858":{"body":1,"breadcrumbs":4,"title":2},"859":{"body":39,"breadcrumbs":3,"title":1},"86":{"body":23,"breadcrumbs":4,"title":2},"860":{"body":0,"breadcrumbs":4,"title":2},"861":{"body":35,"breadcrumbs":3,"title":1},"862":{"body":73,"breadcrumbs":3,"title":1},"863":{"body":24,"breadcrumbs":4,"title":2},"864":{"body":0,"breadcrumbs":4,"title":2},"865":{"body":111,"breadcrumbs":3,"title":1},"866":{"body":31,"breadcrumbs":3,"title":1},"867":{"body":12,"breadcrumbs":3,"title":1},"868":{"body":43,"breadcrumbs":3,"title":1},"869":{"body":21,"breadcrumbs":5,"title":3},"87":{"body":3,"breadcrumbs":3,"title":1},"870":{"body":32,"breadcrumbs":4,"title":2},"871":{"body":34,"breadcrumbs":5,"title":3},"872":{"body":17,"breadcrumbs":4,"title":2},"873":{"body":15,"breadcrumbs":5,"title":3},"874":{"body":81,"breadcrumbs":4,"title":2},"875":{"body":35,"breadcrumbs":5,"title":3},"876":{"body":0,"breadcrumbs":4,"title":2},"877":{"body":35,"breadcrumbs":4,"title":2},"878":{"body":5,"breadcrumbs":4,"title":2},"879":{"body":25,"breadcrumbs":4,"title":2},"88":{"body":16,"breadcrumbs":4,"title":2},"880":{"body":22,"breadcrumbs":4,"title":2},"881":{"body":26,"breadcrumbs":4,"title":2},"882":{"body":19,"breadcrumbs":3,"title":1},"883":{"body":17,"breadcrumbs":4,"title":2},"884":{"body":1,"breadcrumbs":4,"title":2},"885":{"body":30,"breadcrumbs":3,"title":1},"886":{"body":25,"breadcrumbs":4,"title":2},"887":{"body":37,"breadcrumbs":4,"title":2},"888":{"body":11,"breadcrumbs":4,"title":2},"889":{"body":0,"breadcrumbs":4,"title":2},"89":{"body":102,"breadcrumbs":6,"title":4},"890":{"body":9,"breadcrumbs":5,"title":3},"891":{"body":59,"breadcrumbs":5,"title":3},"892":{"body":19,"breadcrumbs":4,"title":2},"893":{"body":28,"breadcrumbs":3,"title":1},"894":{"body":30,"breadcrumbs":5,"title":3},"895":{"body":15,"breadcrumbs":4,"title":2},"896":{"body":5,"breadcrumbs":3,"title":1},"897":{"body":21,"breadcrumbs":4,"title":2},"898":{"body":20,"breadcrumbs":4,"title":2},"899":{"body":211,"breadcrumbs":4,"title":2},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":7,"breadcrumbs":4,"title":2},"900":{"body":0,"breadcrumbs":4,"title":2},"901":{"body":9,"breadcrumbs":4,"title":2},"902":{"body":7,"breadcrumbs":5,"title":3},"903":{"body":10,"breadcrumbs":4,"title":2},"904":{"body":0,"breadcrumbs":4,"title":2},"905":{"body":28,"breadcrumbs":5,"title":3},"906":{"body":9,"breadcrumbs":5,"title":3},"907":{"body":8,"breadcrumbs":6,"title":4},"908":{"body":8,"breadcrumbs":5,"title":3},"909":{"body":7,"breadcrumbs":5,"title":3},"91":{"body":19,"breadcrumbs":5,"title":3},"910":{"body":23,"breadcrumbs":5,"title":3},"911":{"body":17,"breadcrumbs":3,"title":1},"912":{"body":28,"breadcrumbs":6,"title":3},"913":{"body":1,"breadcrumbs":5,"title":2},"914":{"body":62,"breadcrumbs":4,"title":1},"915":{"body":35,"breadcrumbs":5,"title":2},"916":{"body":50,"breadcrumbs":5,"title":2},"917":{"body":0,"breadcrumbs":4,"title":1},"918":{"body":21,"breadcrumbs":5,"title":2},"919":{"body":53,"breadcrumbs":5,"title":2},"92":{"body":10,"breadcrumbs":5,"title":3},"920":{"body":25,"breadcrumbs":5,"title":2},"921":{"body":41,"breadcrumbs":5,"title":2},"922":{"body":0,"breadcrumbs":4,"title":1},"923":{"body":11,"breadcrumbs":6,"title":3},"924":{"body":39,"breadcrumbs":6,"title":3},"925":{"body":19,"breadcrumbs":5,"title":2},"926":{"body":27,"breadcrumbs":7,"title":4},"927":{"body":0,"breadcrumbs":5,"title":2},"928":{"body":62,"breadcrumbs":7,"title":4},"929":{"body":14,"breadcrumbs":5,"title":2},"93":{"body":20,"breadcrumbs":5,"title":3},"930":{"body":58,"breadcrumbs":5,"title":2},"931":{"body":21,"breadcrumbs":8,"title":5},"932":{"body":14,"breadcrumbs":7,"title":4},"933":{"body":48,"breadcrumbs":5,"title":2},"934":{"body":19,"breadcrumbs":4,"title":1},"935":{"body":30,"breadcrumbs":4,"title":2},"936":{"body":14,"breadcrumbs":3,"title":1},"937":{"body":13,"breadcrumbs":4,"title":2},"938":{"body":34,"breadcrumbs":4,"title":2},"939":{"body":79,"breadcrumbs":4,"title":2},"94":{"body":86,"breadcrumbs":5,"title":3},"940":{"body":28,"breadcrumbs":4,"title":2},"941":{"body":16,"breadcrumbs":5,"title":3},"942":{"body":32,"breadcrumbs":3,"title":1},"943":{"body":38,"breadcrumbs":4,"title":2},"944":{"body":21,"breadcrumbs":3,"title":1},"945":{"body":15,"breadcrumbs":3,"title":1},"946":{"body":18,"breadcrumbs":6,"title":3},"947":{"body":18,"breadcrumbs":4,"title":1},"948":{"body":14,"breadcrumbs":5,"title":2},"949":{"body":9,"breadcrumbs":5,"title":2},"95":{"body":211,"breadcrumbs":7,"title":5},"950":{"body":7,"breadcrumbs":5,"title":2},"951":{"body":29,"breadcrumbs":6,"title":3},"952":{"body":41,"breadcrumbs":6,"title":3},"953":{"body":32,"breadcrumbs":5,"title":2},"954":{"body":29,"breadcrumbs":5,"title":2},"955":{"body":57,"breadcrumbs":4,"title":1},"956":{"body":55,"breadcrumbs":5,"title":2},"957":{"body":25,"breadcrumbs":4,"title":1},"958":{"body":13,"breadcrumbs":4,"title":1},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":27,"breadcrumbs":4,"title":2},"960":{"body":15,"breadcrumbs":3,"title":1},"961":{"body":0,"breadcrumbs":4,"title":2},"962":{"body":18,"breadcrumbs":3,"title":1},"963":{"body":18,"breadcrumbs":3,"title":1},"964":{"body":43,"breadcrumbs":4,"title":2},"965":{"body":20,"breadcrumbs":3,"title":1},"966":{"body":32,"breadcrumbs":3,"title":1},"967":{"body":44,"breadcrumbs":4,"title":2},"968":{"body":23,"breadcrumbs":4,"title":2},"969":{"body":16,"breadcrumbs":3,"title":1},"97":{"body":29,"breadcrumbs":4,"title":2},"970":{"body":21,"breadcrumbs":6,"title":3},"971":{"body":1,"breadcrumbs":5,"title":2},"972":{"body":17,"breadcrumbs":5,"title":2},"973":{"body":45,"breadcrumbs":4,"title":1},"974":{"body":0,"breadcrumbs":5,"title":2},"975":{"body":78,"breadcrumbs":5,"title":2},"976":{"body":26,"breadcrumbs":5,"title":2},"977":{"body":16,"breadcrumbs":5,"title":2},"978":{"body":10,"breadcrumbs":5,"title":2},"979":{"body":35,"breadcrumbs":5,"title":2},"98":{"body":73,"breadcrumbs":4,"title":2},"980":{"body":71,"breadcrumbs":4,"title":1},"981":{"body":18,"breadcrumbs":5,"title":2},"982":{"body":15,"breadcrumbs":5,"title":2},"983":{"body":25,"breadcrumbs":4,"title":1},"984":{"body":16,"breadcrumbs":8,"title":4},"985":{"body":110,"breadcrumbs":6,"title":2},"986":{"body":88,"breadcrumbs":8,"title":4},"987":{"body":70,"breadcrumbs":8,"title":4},"988":{"body":59,"breadcrumbs":7,"title":3},"989":{"body":90,"breadcrumbs":9,"title":5},"99":{"body":42,"breadcrumbs":3,"title":1},"990":{"body":40,"breadcrumbs":10,"title":6},"991":{"body":42,"breadcrumbs":6,"title":2},"992":{"body":39,"breadcrumbs":8,"title":4},"993":{"body":14,"breadcrumbs":4,"title":2},"994":{"body":165,"breadcrumbs":5,"title":3},"995":{"body":0,"breadcrumbs":5,"title":3},"996":{"body":42,"breadcrumbs":5,"title":3},"997":{"body":21,"breadcrumbs":5,"title":3},"998":{"body":17,"breadcrumbs":5,"title":3},"999":{"body":112,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"JACS is a cryptographic provenance layer for agent systems. Use it when an output, tool call, or agent handoff crosses a trust boundary and logs alone are not enough.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"Most teams adopt JACS in one of four ways: LangChain / LangGraph / CrewAI / FastAPI : add signing at tool or API boundaries without changing the rest of the app MCP : secure a local tool server or expose JACS itself as an MCP tool suite A2A : publish an Agent Card, exchange signed artifacts, and apply trust policy across organizations Core signing : sign JSON, files, or agreements directly from Rust, Python, Node.js, or Go The book now focuses on those supported workflows first. Older roadmap-style integration chapters have been reduced or removed from navigation.","breadcrumbs":"Introduction » Start With The Deployment","id":"1","title":"Start With The Deployment"},"10":{"body":"cargo install jacs-cli\njacs quickstart --name my-agent --domain my-agent.example.com","breadcrumbs":"Introduction » Rust CLI","id":"10","title":"Rust CLI"},"100":{"body":"Three agents from different organizations sign an agreement with 2-of-3 quorum. Imagine three departments -- Finance, Compliance, and Legal -- must approve a production deployment. Requiring all three creates bottlenecks. With JACS quorum agreements, any two of three is sufficient: cryptographically signed, independently verifiable, with a full audit trail. No central authority. No shared database. Every signature is independently verifiable.","breadcrumbs":"Multi-Agent Agreements » Multi-Agent Agreements","id":"100","title":"Multi-Agent Agreements"},"1000":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"1000","title":"Threat Model"},"1001":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"1001","title":"Protected Against"},"1002":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"1002","title":"Trust Assumptions"},"1003":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"1003","title":"Signature Process"},"1004":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"1004","title":"Signing a Document"},"1005":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"1005","title":"Verifying a Document"},"1006":{"body":"","breadcrumbs":"Security Model » Key Management","id":"1006","title":"Key Management"},"1007":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"1007","title":"Key Generation"},"1008":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Option 1: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" # Option 2: OS keychain (recommended for developer workstations)\njacs keychain set Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain. OS Keychain Integration : On macOS and Linux desktops, JACS can store and retrieve the private key password from the OS credential store, eliminating the need for environment variables or plaintext password files during day-to-day development: macOS : Uses Security.framework (Keychain Access) Linux : Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC) Store your password once with jacs keychain set, and all subsequent JACS operations will find it automatically. The password resolution order is: JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain (lowest priority among explicit sources) To disable keychain lookups (recommended for CI and headless environments): export JACS_KEYCHAIN_BACKEND=disabled Or in jacs.config.json: { \"jacs_keychain_backend\": \"disabled\"\n} The keychain stores the password under service name jacs-private-key with user default. Multiple agents on one machine can use agent-specific passwords via the *_for_agent() API variants. Security note : The OS keychain is encrypted at rest by the OS and unlocked by the user's login session. It is the same mechanism used by git, ssh-agent, docker, and other CLI tools. The keychain feature is optional and not compiled into the jacs core crate by default -- it is enabled by default only in jacs-cli. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"1008","title":"Key Protection"},"1009":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"1009","title":"Key Rotation"},"101":{"body":"Create Agreement --> Agent A Signs --> Agent B Signs --> Quorum Met (2/3) --> Verified","breadcrumbs":"Multi-Agent Agreements » The Lifecycle","id":"101","title":"The Lifecycle"},"1010":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"1010","title":"TLS Certificate Validation"},"1011":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"1011","title":"Default Behavior (Development)"},"1012":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"1012","title":"Production Configuration"},"1013":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For registry verification endpoints, JACS_REGISTRY_URL (legacy HAI_API_URL) must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"1013","title":"Security Implications"},"1014":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"1014","title":"Signature Timestamp Validation"},"1015":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"1015","title":"How It Works"},"1016":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"1016","title":"Configuring Signature Expiration"},"1017":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"1017","title":"Protection Against Replay Attacks"},"1018":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"1018","title":"Clock Synchronization"},"1019":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"1019","title":"Verification Claims"},"102":{"body":"from jacs.client import JacsClient # Step 1: Create three agents (one per organization)\nfinance = JacsClient.quickstart( name=\"finance\", domain=\"finance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./finance.config.json\",\n)\ncompliance = JacsClient.quickstart( name=\"compliance\", domain=\"compliance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./compliance.config.json\",\n)\nlegal = JacsClient.quickstart( name=\"legal\", domain=\"legal.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./legal.config.json\",\n) # Step 2: Finance proposes an agreement with quorum\nfrom datetime import datetime, timedelta, timezone proposal = { \"action\": \"Deploy model v2 to production\", \"conditions\": [\"passes safety audit\", \"approved by 2 of 3 signers\"],\n}\ndeadline = (datetime.now(timezone.utc) + timedelta(hours=1)).isoformat() agreement = finance.create_agreement( document=proposal, agent_ids=[finance.agent_id, compliance.agent_id, legal.agent_id], question=\"Do you approve deployment of model v2?\", context=\"Production rollout pending safety audit sign-off.\", quorum=2, # only 2 of 3 need to sign timeout=deadline,\n) # Step 3: Finance signs\nagreement = finance.sign_agreement(agreement) # Step 4: Compliance co-signs -- quorum is now met\nagreement = compliance.sign_agreement(agreement) # Step 5: Verify -- any party can confirm independently\nstatus = finance.check_agreement(agreement)\nprint(f\"Complete: {status.complete}\") # True -- 2 of 3 signed for s in status.signers: label = \"signed\" if s.signed else \"pending\" print(f\" {s.agent_id[:12]}... {label}\")","breadcrumbs":"Multi-Agent Agreements » Python","id":"102","title":"Python"},"1020":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-registry Above + registry verification Must be registered and verified by a JACS registry verified-hai.ai (legacy alias) Same as verified-registry Backward-compatible alias","breadcrumbs":"Security Model » Claim Levels","id":"1020","title":"Claim Levels"},"1021":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"1021","title":"Setting a Verification Claim"},"1022":{"body":"When an agent claims verified, verified-registry, or legacy verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-registry (or legacy verified-hai.ai) claims, additional enforcement: Registry Registration : Agent must be registered with the configured registry (for HAI-hosted registry, hai.ai ) Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if the registry API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"1022","title":"Claim Enforcement"},"1023":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"1023","title":"Backward Compatibility"},"1024":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-registry' failed: Agent 'uuid' is not registered with the configured registry.\nAgents claiming 'verified-registry' must be registered with a reachable registry endpoint.","breadcrumbs":"Security Model » Error Messages","id":"1024","title":"Error Messages"},"1025":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-registry requires network access to the registry endpoint Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"1025","title":"Security Considerations"},"1026":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"1026","title":"DNS-Based Verification"},"1027":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"1027","title":"How It Works"},"1028":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"1028","title":"Configuration"},"1029":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"1029","title":"Security Levels"},"103":{"body":"import { JacsClient } from \"@hai.ai/jacs/client\"; async function main() { // Step 1: Create three agents const finance = await JacsClient.ephemeral(\"ring-Ed25519\"); const compliance = await JacsClient.ephemeral(\"ring-Ed25519\"); const legal = await JacsClient.ephemeral(\"ring-Ed25519\"); // Step 2: Finance proposes an agreement with quorum const proposal = { action: \"Deploy model v2 to production\", conditions: [\"passes safety audit\", \"approved by 2 of 3 signers\"], }; const deadline = new Date(Date.now() + 60 * 60 * 1000).toISOString(); const agentIds = [finance.agentId, compliance.agentId, legal.agentId]; let agreement = await finance.createAgreement(proposal, agentIds, { question: \"Do you approve deployment of model v2?\", context: \"Production rollout pending safety audit sign-off.\", quorum: 2, timeout: deadline, }); // Step 3: Finance signs agreement = await finance.signAgreement(agreement); // Step 4: Compliance co-signs -- quorum is now met agreement = await compliance.signAgreement(agreement); // Step 5: Verify const doc = JSON.parse(agreement.raw); const ag = doc.jacsAgreement; const sigCount = ag.signatures?.length ?? 0; console.log(`Signatures: ${sigCount} of ${agentIds.length}`); console.log(`Quorum met: ${sigCount >= (ag.quorum ?? agentIds.length)}`);\n} main().catch(console.error);","breadcrumbs":"Multi-Agent Agreements » Node.js / TypeScript","id":"103","title":"Node.js / TypeScript"},"1030":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"1030","title":"Trust Store Management"},"1031":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"1031","title":"Trusting Agents"},"1032":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"1032","title":"Untrusting Agents"},"1033":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"1033","title":"Trust Store Security"},"1034":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"1034","title":"Best Practices"},"1035":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"1035","title":"Agreement Security"},"1036":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"1036","title":"Agreement Structure"},"1037":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"1037","title":"Agreement Guarantees"},"1038":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"1038","title":"Request/Response Security"},"1039":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"1039","title":"Request Signing"},"104":{"body":"Three independent agents were created, each with their own keys -- no shared secrets. Finance proposed an agreement requiring 2-of-3 quorum with a one-hour deadline. Finance and Compliance signed. Legal never needed to act -- quorum was met. Any party can verify the agreement independently. The cryptographic proof chain is self-contained. Every signature includes: the signer's agent ID, the signing algorithm, a timestamp, and a hash of the agreement content. If anyone tampers with the document after signing, verification fails.","breadcrumbs":"Multi-Agent Agreements » What Just Happened?","id":"104","title":"What Just Happened?"},"1040":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"1040","title":"Response Verification"},"1041":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"1041","title":"Algorithm Security"},"1042":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"1042","title":"Supported Algorithms"},"1043":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"1043","title":"Algorithm Selection"},"1044":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"1044","title":"Security Best Practices"},"1045":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"1045","title":"1. Key Storage"},"1046":{"body":"# Option A: Use environment variables (CI, servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\" # Option B: Use OS keychain (developer workstations)\njacs keychain set # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments\nexport JACS_KEYCHAIN_BACKEND=disabled","breadcrumbs":"Security Model » 2. Password Handling","id":"1046","title":"2. Password Handling"},"1047":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"1047","title":"3. Transport Security"},"1048":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"1048","title":"4. Verification Policies"},"1049":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"1049","title":"5. Audit Logging"},"105":{"body":"Agreements API Reference -- timeout, algorithm constraints, and more Python Framework Adapters -- use agreements inside LangChain, FastAPI, CrewAI Security Model -- how the cryptographic proof chain works","breadcrumbs":"Multi-Agent Agreements » Next Steps","id":"105","title":"Next Steps"},"1050":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"1050","title":"Security Checklist"},"1051":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"1051","title":"Development"},"1052":{"body":"Encrypt private keys at rest Use environment variables or OS keychain for secrets (never store jacs_private_key_password in config) Set JACS_KEYCHAIN_BACKEND=disabled on CI/headless servers Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"1052","title":"Production"},"1053":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"1053","title":"Verification"},"1054":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"1054","title":"Security Considerations"},"1055":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"1055","title":"Supply Chain"},"1056":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"1056","title":"Side Channels"},"1057":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"1057","title":"Recovery"},"1058":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"1058","title":"Troubleshooting Verification Claims"},"1059":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with the registry\" Problem : You're using verified-registry (or legacy verified-hai.ai) but the agent isn't registered. Solution : Register your agent with your configured registry (for HAI-hosted registry, hai.ai ) Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"1059","title":"Common Issues and Solutions"},"106":{"body":"Verify a JACS-signed document in under 2 minutes. Verification confirms two things: the document was signed by the claimed agent, and the content has not been modified since signing. Verification does NOT require creating an agent. You only need the signed document (and optionally access to the signer's public key).","breadcrumbs":"Verifying Signed Documents » Verifying Signed Documents","id":"106","title":"Verifying Signed Documents"},"1060":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-registry 2 (highest) Above + registry registration verified-hai.ai (legacy alias) 2 (highest) Alias of verified-registry","breadcrumbs":"Security Model » Claim Level Reference","id":"1060","title":"Claim Level Reference"},"1061":{"body":"Upgrades allowed : unverified → verified → verified-registry (legacy alias verified-hai.ai is same level) Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"1061","title":"Upgrade vs Downgrade Rules"},"1062":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"1062","title":"Quick Diagnostic Commands"},"1063":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"1063","title":"See Also"},"1064":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"1064","title":"Key Rotation"},"1065":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"1065","title":"Why Key Rotation Matters"},"1066":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"1066","title":"Key Compromise Recovery"},"1067":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"1067","title":"Cryptographic Agility"},"1068":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"1068","title":"Compliance Requirements"},"1069":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"1069","title":"Agent Versioning"},"107":{"body":"The fastest way to verify a document from the command line. No config file, no agent setup. # Verify a local file\njacs verify signed-document.json # Verify with JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document by URL\njacs verify --remote https://example.com/signed-doc.json # Specify a directory containing public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Output on success: Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z JSON output (--json): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} The exit code is 0 for valid, 1 for invalid or error. Use this in CI/CD pipelines: if jacs verify artifact.json --json; then echo \"Artifact is authentic\"\nelse echo \"Verification failed\" >&2 exit 1\nfi If a jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise, it creates a temporary ephemeral verifier internally.","breadcrumbs":"Verifying Signed Documents » CLI: jacs verify","id":"107","title":"CLI: jacs verify"},"1070":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"1070","title":"Version Format"},"1071":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"1071","title":"Version Chain"},"1072":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"1072","title":"Version-Aware Verification"},"1073":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"1073","title":"Signature Structure"},"1074":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"1074","title":"Key Resolution Process"},"1075":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"1075","title":"Key Lookup Priority"},"1076":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"1076","title":"Key Rotation Process"},"1077":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"1077","title":"Step-by-Step Rotation"},"1078":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"1078","title":"Transition Signature"},"1079":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"1079","title":"CLI Commands (Planned)"},"108":{"body":"","breadcrumbs":"Verifying Signed Documents » Python","id":"108","title":"Python"},"1080":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"1080","title":"Example Rotation Flow"},"1081":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"1081","title":"Trust Store with Version History"},"1082":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"1082","title":"TrustedAgent Structure"},"1083":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1083","title":"Key Status Values"},"1084":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1084","title":"Looking Up Keys"},"1085":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1085","title":"DNS Support for Key Versions"},"1086":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1086","title":"Multi-Version DNS Records"},"1087":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1087","title":"DNS Record Generation"},"1088":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1088","title":"Security Considerations"},"1089":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1089","title":"Key Revocation"},"109":{"body":"import jacs.simple as jacs jacs.load(\"./jacs.config.json\") result = jacs.verify(signed_json)\nif result.valid: print(f\"Signed by: {result.signer_id}\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"109","title":"With an agent loaded"},"1090":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1090","title":"Overlap Period"},"1091":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1091","title":"Secure Deletion"},"1092":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1092","title":"Best Practices"},"1093":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1093","title":"Rotation Schedule"},"1094":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1094","title":"Pre-Rotation Checklist"},"1095":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1095","title":"Post-Rotation Checklist"},"1096":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1096","title":"See Also"},"1097":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1097","title":"Cryptographic Algorithms"},"1098":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1098","title":"Supported Algorithms"},"1099":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1099","title":"Ed25519 (ring-Ed25519)"},"11":{"body":"pip install jacs","breadcrumbs":"Introduction » Python","id":"11","title":"Python"},"110":{"body":"import jacs.simple as jacs result = jacs.verify_standalone( signed_json, key_resolution=\"local\", key_directory=\"./trusted-keys/\"\n)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") verify_standalone does not use a global agent. Pass the key resolution strategy and directories explicitly.","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"110","title":"Without an agent (standalone)"},"1100":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1100","title":"Overview"},"1101":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1101","title":"Characteristics"},"1102":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1102","title":"Configuration"},"1103":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1103","title":"Use Cases"},"1104":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1104","title":"Example"},"1105":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1105","title":"RSA-PSS"},"1106":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1106","title":"Overview"},"1107":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1107","title":"Characteristics"},"1108":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1108","title":"Configuration"},"1109":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1109","title":"Use Cases"},"111":{"body":"If the document is in local storage and you know its ID: result = jacs.verify_by_id(\"550e8400-e29b-41d4:1\")","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"111","title":"Verify by document ID"},"1110":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1110","title":"Considerations"},"1111":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1111","title":"Dilithium (pq-dilithium)"},"1112":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1112","title":"Overview"},"1113":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1113","title":"Characteristics"},"1114":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1114","title":"Configuration"},"1115":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1115","title":"Use Cases"},"1116":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1116","title":"Considerations"},"1117":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1117","title":"PQ2025 (Hybrid)"},"1118":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1118","title":"Overview"},"1119":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1119","title":"Characteristics"},"112":{"body":"","breadcrumbs":"Verifying Signed Documents » Node.js","id":"112","title":"Node.js"},"1120":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1120","title":"Configuration"},"1121":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1121","title":"Use Cases"},"1122":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1122","title":"Considerations"},"1123":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1123","title":"Algorithm Selection Guide"},"1124":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1124","title":"Decision Matrix"},"1125":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1125","title":"By Use Case"},"1126":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1126","title":"Key Generation"},"1127":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1127","title":"Key Formats"},"1128":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1128","title":"Signature Structure"},"1129":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1129","title":"Hashing"},"113":{"body":"import * as jacs from '@hai.ai/jacs/simple'; await jacs.load('./jacs.config.json'); const result = await jacs.verify(signedJson);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"113","title":"With an agent loaded"},"1130":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1130","title":"Algorithm Migration"},"1131":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1131","title":"Performance Comparison"},"1132":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1132","title":"Security Considerations"},"1133":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1133","title":"Algorithm Agility"},"1134":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1134","title":"Forward Secrecy"},"1135":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1135","title":"Key Compromise"},"1136":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1136","title":"See Also"},"1137":{"body":"Choosing the right signing algorithm affects key size, signature size, verification speed, and compliance posture. This guide helps you pick the right one.","breadcrumbs":"Algorithm Selection Guide » Algorithm Selection Guide","id":"1137","title":"Algorithm Selection Guide"},"1138":{"body":"Algorithm Config Value Public Key Signature Best For Ed25519 ring-Ed25519 32 bytes 64 bytes Speed, small signatures RSA-PSS RSA-PSS ~550 bytes (4096-bit) ~512 bytes Broad compatibility ML-DSA-87 pq2025 2,592 bytes 4,627 bytes Post-quantum compliance (FIPS-204) Dilithium pq-dilithium >1,000 bytes ~3,293-4,644 bytes Deprecated -- use pq2025","breadcrumbs":"Algorithm Selection Guide » Supported Algorithms","id":"1138","title":"Supported Algorithms"},"1139":{"body":"Do you need FIPS/NIST post-quantum compliance? ├── Yes → pq2025 └── No ├── Need maximum interop with existing PKI/TLS systems? → RSA-PSS └── Need speed and small payloads? → ring-Ed25519 Default recommendation for new projects: pq2025 Ed25519 and RSA-PSS are well-understood and widely deployed, but neither is quantum-resistant. If you don't have a specific reason to choose one of them, start with pq2025 so you don't have to migrate later.","breadcrumbs":"Algorithm Selection Guide » How to Choose","id":"1139","title":"How to Choose"},"114":{"body":"import { verifyStandalone } from '@hai.ai/jacs/simple'; const result = verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './trusted-keys/',\n});\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"114","title":"Without an agent (standalone)"},"1140":{"body":"Choose pq2025 (ML-DSA-87, FIPS-204) when: Your compliance team asks about quantum readiness Government or defense contracts require FIPS-204 You need long-lived signatures that must remain valid for 10+ years You want to avoid a future algorithm migration JACS supports ML-DSA-87 (FIPS-204) for post-quantum digital signatures. When your compliance team asks about quantum readiness, JACS already has the answer. The tradeoff is size: ML-DSA-87 public keys are 2,592 bytes and signatures are 4,627 bytes -- roughly 80x larger than Ed25519. For most applications this is negligible, but if you're signing millions of small messages and bandwidth matters, consider Ed25519.","breadcrumbs":"Algorithm Selection Guide » When to Choose Post-Quantum","id":"1140","title":"When to Choose Post-Quantum"},"1141":{"body":"JACS verification works across algorithms. An agreement can contain signatures from RSA, Ed25519, and ML-DSA agents and all verify correctly. This heterogeneous verification is important for cross-organization scenarios where different parties chose different algorithms. Each agent uses one algorithm (chosen at creation time), but can verify signatures from all supported algorithms.","breadcrumbs":"Algorithm Selection Guide » Cross-Algorithm Verification","id":"1141","title":"Cross-Algorithm Verification"},"1142":{"body":"Set the algorithm in your jacs.config.json: { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Or via environment variable: export JACS_AGENT_KEY_ALGORITHM=pq2025 Valid values: ring-Ed25519, RSA-PSS, pq2025 In Python and Node.js, pass the algorithm to quickstart(...): from jacs.client import JacsClient\nclient = JacsClient.quickstart( name=\"algo-agent\", domain=\"algo.example.com\", algorithm=\"pq2025\",\n) import { JacsClient } from \"@hai.ai/jacs\";\nconst client = await JacsClient.quickstart({ name: \"algo-agent\", domain: \"algo.example.com\", algorithm: \"pq2025\",\n});","breadcrumbs":"Algorithm Selection Guide » Configuration","id":"1142","title":"Configuration"},"1143":{"body":"Each agent uses one algorithm, chosen at creation time. You cannot change an agent's algorithm after creation. Algorithm negotiation between agents is planned but not yet implemented. pq-dilithium is deprecated in favor of pq2025 (ML-DSA-87). Use pq2025 for new agents and verification hints.","breadcrumbs":"Algorithm Selection Guide » Current Limitations","id":"1143","title":"Current Limitations"},"1144":{"body":"JACS has two storage layers today: Low-level file/object storage via MultiStorage Signed document CRUD/search via DocumentService Those are related, but they are not identical. The most important rule is the signed-document contract: Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes an already-signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Storage Backends » Storage Backends","id":"1144","title":"Storage Backends"},"1145":{"body":"Backend Config Value Core Surface Notes Filesystem fs MultiStorage + DocumentService Default. Signed JSON files on disk. Local indexed SQLite rusqlite DocumentService + SearchProvider Stores signed documents in a local SQLite DB with FTS search. AWS object storage aws MultiStorage Object-store backend. Memory memory MultiStorage Non-persistent, useful for tests and temporary flows. Browser local storage local MultiStorage WASM-only. For local indexed document search in JACS core, use rusqlite.","breadcrumbs":"Storage Backends » Built-in Core Backends","id":"1145","title":"Built-in Core Backends"},"1146":{"body":"Filesystem is the default signed-document backend. { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Typical layout: jacs_data/\n├── agent/\n│ └── {agent-id}:{agent-version}.json\n└── documents/ ├── {document-id}:{version}.json └── archive/ Use filesystem when you want the simplest possible deployment, inspectable files, and no local database dependency.","breadcrumbs":"Storage Backends » Filesystem (fs)","id":"1146","title":"Filesystem (fs)"},"1147":{"body":"rusqlite is the built-in indexed document backend used by the upgraded bindings and MCP search path. { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} With this setting: Signed documents are stored in ./jacs_data/jacs_documents.sqlite3 Full-text search comes from SQLite FTS DocumentService reads and writes enforce verification Updating visibility creates a new signed successor version Use rusqlite when you want local full-text search, filtered document queries, and a single-machine deployment.","breadcrumbs":"Storage Backends » Local Indexed SQLite (rusqlite)","id":"1147","title":"Local Indexed SQLite (rusqlite)"},"1148":{"body":"AWS support is an object-store backend for lower-level storage operations. { \"jacs_default_storage\": \"aws\"\n} Required environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-bucket\"\nexport AWS_ACCESS_KEY_ID=\"...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" Use aws when you need remote object storage. If you also need a richer signed-document query surface, use one of the database-focused crates below.","breadcrumbs":"Storage Backends » AWS (aws)","id":"1148","title":"AWS (aws)"},"1149":{"body":"Memory storage is non-persistent: { \"jacs_default_storage\": \"memory\"\n} Use it for tests, temporary operations, and ephemeral agent flows.","breadcrumbs":"Storage Backends » Memory (memory)","id":"1149","title":"Memory (memory)"},"115":{"body":"const result = await jacs.verifyById('550e8400-e29b-41d4:1');","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"115","title":"Verify by document ID"},"1150":{"body":"Several richer database backends now live outside the JACS core crate: jacs-postgresql jacs-duckdb jacs-redb jacs-surrealdb These crates implement the same storage/search traits in their own packages. They are not built-in jacs_default_storage values for the core crate.","breadcrumbs":"Storage Backends » Extracted Backend Crates","id":"1150","title":"Extracted Backend Crates"},"1151":{"body":"Scenario Recommendation Default local usage fs Local search + filtering rusqlite Ephemeral tests memory Remote object storage aws Postgres / vector / multi-model needs Use an extracted backend crate","breadcrumbs":"Storage Backends » Choosing a Backend","id":"1151","title":"Choosing a Backend"},"1152":{"body":"Switching backends does not migrate data automatically. When you change jacs_default_storage: Export the signed documents you need to keep. Update the config value. Create/import the new backend’s data store. Re-run verification on imported documents as part of migration validation.","breadcrumbs":"Storage Backends » Migration Notes","id":"1152","title":"Migration Notes"},"1153":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1153","title":"Custom Schemas"},"1154":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1154","title":"Overview"},"1155":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1155","title":"Creating a Custom Schema"},"1156":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1156","title":"Basic Structure"},"1157":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1157","title":"Step-by-Step Guide"},"1158":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1158","title":"Schema Best Practices"},"1159":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1159","title":"Use Meaningful IDs"},"116":{"body":"Generate a URL that lets anyone verify a signed document through a web verifier (e.g., hai.ai): Python: url = jacs.generate_verify_link(signed_doc.raw_json)\n# https://hai.ai/jacs/verify?s= Node.js: const url = jacs.generateVerifyLink(signed.raw); The document is base64url-encoded into the URL query parameter. Documents must be under ~1.5 KB to fit within the 2048-character URL limit. For larger documents, share the file directly and verify with the CLI or SDK.","breadcrumbs":"Verifying Signed Documents » Verification Links","id":"116","title":"Verification Links"},"1160":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1160","title":"Document Everything"},"1161":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1161","title":"Use Appropriate Validation"},"1162":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1162","title":"Group Related Fields"},"1163":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1163","title":"Advanced Schema Features"},"1164":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1164","title":"Conditional Validation"},"1165":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1165","title":"Reusable Definitions"},"1166":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1166","title":"Array Constraints"},"1167":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1167","title":"Pattern Properties"},"1168":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1168","title":"Schema Inheritance"},"1169":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1169","title":"Extending Custom Schemas"},"117":{"body":"DNS verification checks that an agent's public key hash matches a DNS TXT record published at _v1.agent.jacs.. This provides a decentralized trust anchor: anyone can look up the agent's expected key fingerprint via DNS without contacting a central server.","breadcrumbs":"Verifying Signed Documents » DNS Verification","id":"117","title":"DNS Verification"},"1170":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1170","title":"Validation"},"1171":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1171","title":"Python Validation"},"1172":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1172","title":"Node.js Validation"},"1173":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1173","title":"Example Schemas"},"1174":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1174","title":"Medical Record"},"1175":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1175","title":"Legal Contract"},"1176":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1176","title":"IoT Sensor Reading"},"1177":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1177","title":"Schema Versioning"},"1178":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1178","title":"Version in Path"},"1179":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1179","title":"Version Field"},"118":{"body":"jacs agent dns --domain example.com --provider plain This outputs the TXT record to add to your DNS zone. Provider options: plain, aws, azure, cloudflare.","breadcrumbs":"Verifying Signed Documents » Publishing a DNS record","id":"118","title":"Publishing a DNS record"},"1180":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1180","title":"Migration Strategy"},"1181":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1181","title":"See Also"},"1182":{"body":"The JACS trust store is a local directory of agent public keys and metadata that your agent has explicitly chosen to trust. It enables offline signature verification without a central authority -- once you trust an agent, you can verify its signatures without network access.","breadcrumbs":"Trust Store » Trust Store Operations","id":"1182","title":"Trust Store Operations"},"1183":{"body":"When you add an agent to your trust store, JACS: Parses the agent's JSON document Extracts the public key and verifies the agent's self-signature Saves the agent document, public key, and metadata to ~/.jacs/trust_store/ After that, any document signed by that agent can be verified locally using the cached public key.","breadcrumbs":"Trust Store » How it works","id":"1183","title":"How it works"},"1184":{"body":"All bindings expose five trust store functions: Function Description trust_agent(agent_json) Add an agent to the trust store (verifies self-signature first) list_trusted_agents() List all trusted agent IDs is_trusted(agent_id) Check if an agent is in the trust store get_trusted_agent(agent_id) Retrieve the full agent JSON untrust_agent(agent_id) Remove an agent from the trust store","breadcrumbs":"Trust Store » API","id":"1184","title":"API"},"1185":{"body":"import jacs # Receive an agent document from a partner organization\nremote_agent_json = receive_from_partner() # Add to trust store (self-signature is verified automatically)\nagent_id = jacs.trust_agent(remote_agent_json)\nprint(f\"Now trusting: {agent_id}\") # Later, check trust before processing a signed document\nif jacs.is_trusted(sender_id): # Verify their signature using the cached public key result = jacs.verify(signed_document) # List all trusted agents\nfor aid in jacs.list_trusted_agents(): print(aid) # Remove trust\njacs.untrust_agent(agent_id)","breadcrumbs":"Trust Store » Python example","id":"1185","title":"Python example"},"1186":{"body":"import { trustAgent, isTrusted, listTrustedAgents, untrustAgent } from '@hai.ai/jacs'; // Add a partner's agent to the trust store\nconst agentId = trustAgent(remoteAgentJson); // Check trust\nif (isTrusted(senderId)) { const result = verify(signedDocument);\n} // List and remove\nconst trusted = listTrustedAgents();\nuntrustAgent(agentId);","breadcrumbs":"Trust Store » Node.js example","id":"1186","title":"Node.js example"},"1187":{"body":"A realistic deployment involves two organizations that need to verify each other's agent signatures: Org B creates an agent and publishes its public key via DNS TXT records or a HAI key distribution endpoint Org A fetches Org B's agent document (via fetch_remote_key or direct exchange) Org A calls trust_agent() with Org B's agent JSON -- JACS verifies the self-signature and caches the public key From this point on, Org A can verify any document signed by Org B's agent offline , using only the local trust store This is the same model as SSH known_hosts or PGP key signing: trust is established once through a verified channel, then used repeatedly without network round-trips.","breadcrumbs":"Trust Store » Cross-organization scenario","id":"1187","title":"Cross-organization scenario"},"1188":{"body":"trust_agent() cryptographically verifies the agent's self-signature before adding it to the store. A tampered agent document will be rejected. Agent IDs are validated against path traversal attacks before any filesystem operations. The trust store directory (~/.jacs/trust_store/) should be protected with appropriate file permissions. Revoking trust with untrust_agent() removes both the agent document and cached key material.","breadcrumbs":"Trust Store » Security notes","id":"1188","title":"Security notes"},"1189":{"body":"Most signing libraries work as tools : the developer calls sign() and verify() manually at each point where integrity matters. JACS can work that way too, but its real value appears when it operates as infrastructure -- signing happens automatically as a side effect of normal framework usage.","breadcrumbs":"Infrastructure vs Tools » Infrastructure vs Tools: JACS as Middleware","id":"1189","title":"Infrastructure vs Tools: JACS as Middleware"},"119":{"body":"jacs agent lookup example.com This fetches the agent's public key from https://example.com/.well-known/jacs-pubkey.json and checks the DNS TXT record at _v1.agent.jacs.example.com.","breadcrumbs":"Verifying Signed Documents » Looking up an agent by domain","id":"119","title":"Looking up an agent by domain"},"1190":{"body":"Approach Developer effort Coverage Tool Call sign()/verify() at every boundary Only where you remember to add it Infrastructure Add 1-3 lines of setup Every request/response automatically","breadcrumbs":"Infrastructure vs Tools » The difference","id":"1190","title":"The difference"},"1191":{"body":"JACS MCP transport proxies sit between client and server. Every JSON-RPC message is signed on the way out and verified on the way in. The MCP tools themselves never call a signing function -- it happens at the transport layer. Client --> [JACS Proxy: sign] --> Server\nClient <-- [JACS Proxy: verify] <-- Server No application code changes. The proxy handles it.","breadcrumbs":"Infrastructure vs Tools » Transport-level: MCP proxies","id":"1191","title":"Transport-level: MCP proxies"},"1192":{"body":"A single middleware line signs every HTTP response automatically: # FastAPI -- one line of setup\napp.add_middleware(JacsMiddleware, client=jacs_client)\n# Every response now carries a JACS signature header // Express -- one line of setup\napp.use(jacsMiddleware({ client }));\n// Every response now carries a JACS signature header The route handlers are unchanged. Signing is invisible to the developer writing business logic.","breadcrumbs":"Infrastructure vs Tools » Framework-level: Express / FastAPI middleware","id":"1192","title":"Framework-level: Express / FastAPI middleware"},"1193":{"body":"When JACS publishes an A2A agent card, the card includes the agent's public key and supported algorithms. Any other A2A-compatible agent can verify signatures without prior arrangement -- the trust bootstrapping is built into the protocol.","breadcrumbs":"Infrastructure vs Tools » Protocol-level: A2A agent cards","id":"1193","title":"Protocol-level: A2A agent cards"},"1194":{"body":"Manual signing has the same problem as manual memory management: developers forget, and the places they forget are the places attackers target. Infrastructure-level signing eliminates that gap. MCP transport : every tool call and result is signed, not just the ones you thought to protect HTTP middleware : every API response is signed, including error responses and health checks A2A integration : every agent interaction is verifiable, including discovery The developer adds setup code once. After that, signing happens everywhere automatically -- including in code paths the developer never explicitly considered.","breadcrumbs":"Infrastructure vs Tools » Why this matters","id":"1194","title":"Why this matters"},"1195":{"body":"Use JACS as a tool when you need fine-grained control: signing specific documents, creating agreements between named parties, or building custom verification workflows. Use JACS as infrastructure when you want blanket coverage: every message signed, every response verifiable, every agent interaction auditable. This is the recommended default for production deployments. Both approaches use the same keys, the same signatures, and the same verification. The difference is who calls sign() -- you, or the framework.","breadcrumbs":"Infrastructure vs Tools » When to use each approach","id":"1195","title":"When to use each approach"},"1196":{"body":"JACS uses DNS TXT records to anchor agent identity to domain names, providing a decentralized trust layer that does not require a central certificate authority. This page explains the trust model, configuration levels, and known limitations.","breadcrumbs":"DNS Trust Anchoring » DNS Trust Anchoring","id":"1196","title":"DNS Trust Anchoring"},"1197":{"body":"When an agent has jacsAgentDomain set, JACS publishes a TXT record at _v1.agent.jacs. containing a fingerprint of the agent's public key. During verification, JACS resolves this record and compares the fingerprint against the agent's actual key material. The TXT record format: v=hai.ai; id=; alg=sha256; enc=base64; fp= If the digest matches the local public key hash, the agent's identity is confirmed through DNS.","breadcrumbs":"DNS Trust Anchoring » How It Works","id":"1197","title":"How It Works"},"1198":{"body":"dns_validate dns_required dns_strict CLI Flag Behavior false false false --ignore-dns No DNS checks at all. Verification relies only on embedded fingerprints. true false false --no-dns Attempt DNS lookup; fall back to embedded fingerprint on failure. true true false --require-dns DNS TXT record must exist and match. No fallback to embedded fingerprint. true true true --require-strict-dns DNS TXT record must exist, match, and be DNSSEC-authenticated. Default behavior : When no flags are set, dns_validate and dns_required are derived from whether jacsAgentDomain is present in the agent document. If a domain is set, validation and requirement default to true. dns_strict always defaults to false. Verified claims override : Agents with jacsVerificationClaim set to a verified level automatically use validate=true, strict=true, required=true regardless of flags.","breadcrumbs":"DNS Trust Anchoring » Four Configuration Levels","id":"1198","title":"Four Configuration Levels"},"1199":{"body":"Domain ownership implies identity : The entity controlling DNS for a domain is authorized to speak for agents on that domain. TXT records are tamper-evident with DNSSEC : When --require-strict-dns is used, the full DNSSEC chain of trust (root -> TLD -> domain -> record) provides cryptographic integrity. Embedded fingerprints are a weaker fallback : Without DNS, JACS falls back to the signature fingerprint (jacsSignature.publicKeyHash) in the signed artifact/agent material. This proves key consistency but not domain ownership.","breadcrumbs":"DNS Trust Anchoring » Security Model Assumptions","id":"1199","title":"Security Model Assumptions"},"12":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Introduction » Node.js","id":"12","title":"Node.js"},"120":{"body":"# Require DNS validation (fail if no DNS record)\njacs agent verify --require-dns # Require strict DNSSEC validation\njacs agent verify --require-strict-dns For full DNS setup instructions, see DNS-Based Verification and DNS Trust Anchoring .","breadcrumbs":"Verifying Signed Documents » CLI verification with DNS","id":"120","title":"CLI verification with DNS"},"1200":{"body":"Attack Risk Level Mitigated By DNS cache poisoning Medium DNSSEC (--require-strict-dns), short TTLs TXT record manipulation (compromised DNS credentials) High DNSSEC, monitoring, key rotation DNS spoofing (man-in-the-middle) Medium DNSSEC validation, DNS-over-HTTPS resolvers Stale records after key rotation Low TTL management, re-publishing records before rotation Downgrade to embedded-only Medium Use --require-dns to prevent fallback","breadcrumbs":"DNS Trust Anchoring » Known Attack Vectors","id":"1200","title":"Known Attack Vectors"},"1201":{"body":"Fingerprint binding : The TXT record ties a specific public key to a domain, preventing key substitution. Multiple verification levels : From no-DNS (local development) to strict DNSSEC (production cross-org). Fallback logic : When DNS is unavailable and not required, verification degrades gracefully to embedded fingerprint comparison. Error specificity : Distinct error messages for \"record missing,\" \"fingerprint mismatch,\" \"DNSSEC failed,\" and \"agent ID mismatch.\"","breadcrumbs":"DNS Trust Anchoring » What JACS Provides","id":"1201","title":"What JACS Provides"},"1202":{"body":"Active DNSSEC chain validation : JACS relies on the system resolver (or DoH) for DNSSEC; it does not perform independent DNSKEY/DS chain validation. Certificate Transparency-style monitoring : No log of historical TXT record changes. Domain owners must monitor independently. Automatic key-to-DNS synchronization : Publishing and updating TXT records is a manual step (or CI/CD-driven).","breadcrumbs":"DNS Trust Anchoring » What JACS Does Not Yet Provide","id":"1202","title":"What JACS Does Not Yet Provide"},"1203":{"body":"Environment Minimum Setting Reason Local development --ignore-dns or --no-dns No real domain needed Internal org --no-dns DNS available but not critical Cross-org production --require-dns Prevents impersonation across trust boundaries High-security / regulated --require-strict-dns Full DNSSEC chain required For production cross-organization deployments, use --require-dns at minimum. Enable DNSSEC on your domain and use --require-strict-dns when the infrastructure supports it.","breadcrumbs":"DNS Trust Anchoring » Recommendations","id":"1203","title":"Recommendations"},"1204":{"body":"DNS-Based Verification -- setup guide with provider-specific instructions Security Model -- broader security architecture Key Rotation -- coordinating key changes with DNS updates","breadcrumbs":"DNS Trust Anchoring » See Also","id":"1204","title":"See Also"},"1205":{"body":"This page documents the error messages you will see when multi-agent agreements fail. Each scenario is validated by the chaos agreement tests in the JACS test suite.","breadcrumbs":"Failure Modes » Failure Modes","id":"1205","title":"Failure Modes"},"1206":{"body":"What happened: An agreement was created for N agents but one or more agents never signed -- they crashed, timed out, or disconnected before calling sign_agreement. Error message: not all agents have signed: [\"\"] { ... agreement object ... } What to do: Identify the unsigned agent from the error, re-establish contact, and have them call sign_agreement on the document. The partially-signed document is still valid and can accept additional signatures -- signing is additive.","breadcrumbs":"Failure Modes » Partial Signing (Agent Crash)","id":"1206","title":"Partial Signing (Agent Crash)"},"1207":{"body":"What happened: An agreement with an explicit quorum (M-of-N via AgreementOptions) received fewer than M signatures. Error message: Quorum not met: need 2 signatures, have 1 (unsigned: [\"\"]) What to do: Either collect more signatures to meet the quorum threshold, or create a new agreement with a lower quorum if appropriate. The unsigned agent IDs in the error tell you exactly who still needs to sign.","breadcrumbs":"Failure Modes » Quorum Not Met","id":"1207","title":"Quorum Not Met"},"1208":{"body":"What happened: A signature byte was modified after an agent signed the agreement. The cryptographic verification layer detects that the signature does not match the signed content. Error message: The exact message comes from the crypto verification layer and varies by algorithm, but it will always fail on the signature check rather than reporting missing signatures. You will not see \"not all agents have signed\" for this case -- the error is a cryptographic verification failure. What to do: This indicates data corruption in transit or deliberate tampering. Discard the document and request a fresh copy from the signing agent. Do not attempt to re-sign a document with a corrupted signature.","breadcrumbs":"Failure Modes » Tampered Signature","id":"1208","title":"Tampered Signature"},"1209":{"body":"What happened: The document content was modified after signatures were applied. JACS stores an integrity hash of the agreement-relevant fields at signing time, and any body modification causes a mismatch. Error message: Agreement verification failed: agreement hashes do not match What to do: The document body no longer matches what the agents originally signed. Discard the modified document and go back to the last known-good version. If the modification was intentional (e.g., an amendment), create a new agreement on the updated document and collect fresh signatures from all parties.","breadcrumbs":"Failure Modes » Tampered Document Body","id":"1209","title":"Tampered Document Body"},"121":{"body":"JACS signatures are language-agnostic. A document signed by a Rust agent verifies identically in Python and Node.js, and vice versa. This holds for both Ed25519 and post-quantum (ML-DSA-87/pq2025) algorithms. This is tested on every commit: Rust generates signed fixtures, then Python calls verify_standalone() and Node.js calls verifyStandalone() to verify them. Each binding also countersigns the fixture with a different algorithm, proving round-trip interoperability. Test sources: Rust fixture generator: jacs/tests/cross_language/mod.rs Python consumer: jacspy/tests/test_cross_language.py Node.js consumer: jacsnpm/test/cross-language.test.js","breadcrumbs":"Verifying Signed Documents » Cross-Language Verification","id":"121","title":"Cross-Language Verification"},"1210":{"body":"What happened: sign_agreement succeeded but save() was never called -- for example, a storage backend failure or process interruption before persistence. Error message: None. This is not an error. After sign_agreement returns successfully, the signed document is immediately retrievable and verifiable from in-memory storage. What to do: Retry the save() call to persist to disk. The in-memory state is consistent: you can retrieve the document with get_document, verify it with check_agreement, serialize it, and transfer it to other agents for additional signatures -- all without saving first.","breadcrumbs":"Failure Modes » In-Memory Consistency After Signing","id":"1210","title":"In-Memory Consistency After Signing"},"1211":{"body":"Creating and Using Agreements - Agreement creation and signing workflow Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details and signature verification","breadcrumbs":"Failure Modes » See Also","id":"1211","title":"See Also"},"1212":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1212","title":"Testing"},"1213":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1213","title":"Testing Fundamentals"},"1214":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1214","title":"Test Agent Setup"},"1215":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1215","title":"Test Fixtures"},"1216":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1216","title":"Unit Testing"},"1217":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1217","title":"Testing Document Operations"},"1218":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1218","title":"Testing Agreements"},"1219":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1219","title":"Agreement Completion Semantics (Strict)"},"122":{"body":"When verifying a document, JACS resolves the signer's public key in a configurable order. Set JACS_KEY_RESOLUTION to control this: Value Source local Local trust store (added via trust_agent) dns DNS TXT record lookup hai HAI key distribution service Default: local,hai. Example: JACS_KEY_RESOLUTION=local,dns,hai.","breadcrumbs":"Verifying Signed Documents » Key Resolution Order","id":"122","title":"Key Resolution Order"},"1220":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1220","title":"Two-Agent Agreement Harness (Separate Agents)"},"1221":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1221","title":"Testing Request/Response Signing"},"1222":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1222","title":"Integration Testing"},"1223":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1223","title":"Testing MCP Integration"},"1224":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1224","title":"Testing HTTP Endpoints"},"1225":{"body":"","breadcrumbs":"Testing » Mocking","id":"1225","title":"Mocking"},"1226":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1226","title":"Mocking JACS Agent"},"1227":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1227","title":"Mocking MCP Transport"},"1228":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1228","title":"Test Coverage"},"1229":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1229","title":"Rust Coverage"},"123":{"body":"Signing says WHO. Attestation says WHO plus WHY. A JACS attestation is a cryptographically signed document that goes beyond proving who signed something. It records why a piece of data should be trusted -- the evidence, the claims, and the reasoning behind that trust.","breadcrumbs":"What Is an Attestation? » What Is an Attestation?","id":"123","title":"What Is an Attestation?"},"1230":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1230","title":"Python Coverage"},"1231":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1231","title":"Node.js Coverage"},"1232":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1232","title":"CI/CD Integration"},"1233":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1233","title":"GitHub Actions"},"1234":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1234","title":"Test Environment Variables"},"1235":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1235","title":"RAII Test Fixtures (Rust)"},"1236":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1236","title":"TrustTestGuard Pattern"},"1237":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1237","title":"Property-Based Testing"},"1238":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1238","title":"Key Properties to Test"},"1239":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1239","title":"Fuzzing"},"124":{"body":"sign_message() create_attestation() Proves Who signed it Who signed it + why it's trustworthy Contains Signature + hash Signature + hash + subject + claims + evidence Use case Data integrity Trust decisions, audit trails, compliance Verification Was it tampered with? Was it tampered with? Are the claims valid? Is the evidence fresh?","breadcrumbs":"What Is an Attestation? » Signing vs. Attestation","id":"124","title":"Signing vs. Attestation"},"1240":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1240","title":"Recommended Tool: cargo-fuzz"},"1241":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1241","title":"Priority Fuzz Targets for JACS"},"1242":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1242","title":"Best Practices"},"1243":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1243","title":"1. Isolate Tests"},"1244":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1244","title":"2. Test Edge Cases"},"1245":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1245","title":"3. Test Security Properties"},"1246":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1246","title":"4. Test Error Handling"},"1247":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1247","title":"See Also"},"1248":{"body":"Use MCP when the boundary is model-to-tool inside an application or local workstation. Use A2A when the boundary is agent-to-agent across organizations or services.","breadcrumbs":"MCP Overview » MCP Overview","id":"1248","title":"MCP Overview"},"1249":{"body":"There are three supported ways to use JACS with MCP today: Run jacs mcp when you want a ready-made MCP server with the broadest tool surface. Wrap an existing MCP transport when you already have an MCP server or client and want signed JSON-RPC. Register JACS as MCP tools when you want the model to call signing, verification, agreement, A2A, or trust operations directly.","breadcrumbs":"MCP Overview » Choose The MCP Path","id":"1249","title":"Choose The MCP Path"},"125":{"body":"","breadcrumbs":"What Is an Attestation? » Key Concepts","id":"125","title":"Key Concepts"},"1250":{"body":"Runtime Best starting point What it gives you Rust jacs-mcp Full MCP server with document, agreement, trust, A2A, and audit tools Python jacs.mcp or jacs.adapters.mcp Local SSE transport security or FastMCP tool registration Node.js @hai.ai/jacs/mcp Transport proxy or MCP tool registration for existing SDK-based servers","breadcrumbs":"MCP Overview » Best Fit By Runtime","id":"1250","title":"Best Fit By Runtime"},"1251":{"body":"Python MCP wrappers are local-only. JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback URLs. Unsigned fallback is off by default. Both Python and Node fail closed unless you explicitly allow unsigned fallback. Node has two factories. createJACSTransportProxy() takes a loaded JacsClient or JacsAgent; createJACSTransportProxyAsync() is the config-path variant.","breadcrumbs":"MCP Overview » Important Constraints","id":"1251","title":"Important Constraints"},"1252":{"body":"Install the unified binary and start the MCP server: cargo install jacs-cli\njacs mcp The MCP server is built into the jacs binary (stdio transport only, no HTTP). It includes document signing, agreements, trust store operations, A2A tools, and security audit tools. See jacs-mcp/README.md in the repo for the full tool list and client configuration examples.","breadcrumbs":"MCP Overview » 1. Ready-Made Server: jacs mcp","id":"1252","title":"1. Ready-Made Server: jacs mcp"},"1253":{"body":"","breadcrumbs":"MCP Overview » 2. Transport Security Around Your Existing MCP Code","id":"1253","title":"2. Transport Security Around Your Existing MCP Code"},"1254":{"body":"Use jacs.mcp when you already have a FastMCP server or client and want transparent signing around the SSE transport: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\") For clients: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") Helpful utilities in the same module: create_jacs_mcp_server() for a one-line FastMCP server jacs_middleware() for explicit Starlette middleware wiring jacs_call() for one-off authenticated local calls See Python MCP Integration for the detailed patterns.","breadcrumbs":"MCP Overview » Python","id":"1254","title":"Python"},"1255":{"body":"Use the transport proxy when you already have an MCP transport: import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); If you only have a config path: import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); See Node.js MCP Integration for examples and tool registration.","breadcrumbs":"MCP Overview » Node.js","id":"1255","title":"Node.js"},"1256":{"body":"This is different from transport security. Here the model gets explicit MCP tools such as jacs_sign_document, jacs_verify_document, agreement helpers, and trust helpers.","breadcrumbs":"MCP Overview » 3. Register JACS Operations As MCP Tools","id":"1256","title":"3. Register JACS Operations As MCP Tools"},"1257":{"body":"from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\")\nregister_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client)","breadcrumbs":"MCP Overview » Python","id":"1257","title":"Python"},"1258":{"body":"import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The Node tool set is intentionally smaller than the Rust MCP server. Use jacs mcp when you need the largest supported MCP surface.","breadcrumbs":"MCP Overview » Node.js","id":"1258","title":"Node.js"},"1259":{"body":"jacs-mcp/README.md jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js","breadcrumbs":"MCP Overview » Example Paths In This Repo","id":"1259","title":"Example Paths In This Repo"},"126":{"body":"What is being attested. Every attestation targets a specific subject -- an artifact, agent, workflow, or identity. The subject is identified by type, ID, and cryptographic digests.","breadcrumbs":"What Is an Attestation? » Subject","id":"126","title":"Subject"},"1260":{"body":"Python MCP Integration Node.js MCP Integration A2A Interoperability Python Framework Adapters","breadcrumbs":"MCP Overview » Related Guides","id":"1260","title":"Related Guides"},"1261":{"body":"Use A2A when your agent needs to be discoverable and verifiable by another service, team, or organization. This is the cross-boundary story; MCP is the inside-the-app story.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1261","title":"A2A Interoperability"},"1262":{"body":"Agent Cards with JACS provenance metadata Signed artifacts such as a2a-task or a2a-message Trust policy for deciding whether another agent is acceptable Chain of custody via parent signatures","breadcrumbs":"A2A Interoperability » What JACS Adds To A2A","id":"1262","title":"What JACS Adds To A2A"},"1263":{"body":"","breadcrumbs":"A2A Interoperability » The Core Flow","id":"1263","title":"The Core Flow"},"1264":{"body":"Python: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\ncard = client.export_agent_card(url=\"http://localhost:8080\") Node.js: import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const card = client.exportAgentCard();","breadcrumbs":"A2A Interoperability » 1. Export An Agent Card","id":"1264","title":"1. Export An Agent Card"},"1265":{"body":"Python has the strongest first-class server helpers today. Quick demo server: from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", url=\"http://localhost:8080\",\n).serve(port=8080) Production FastAPI mounting: from jacs.a2a_server import create_a2a_app, jacs_a2a_routes app = create_a2a_app(client, title=\"My A2A Agent\")\n# or:\n# app.include_router(jacs_a2a_routes(client)) Node.js has two discovery helpers: client.getA2A().listen(port) for a minimal demo server jacsA2AMiddleware(client, options) for mounting discovery routes in an existing Express app import express from 'express';\nimport { jacsA2AMiddleware } from '@hai.ai/jacs/a2a-server'; const app = express();\napp.use(jacsA2AMiddleware(client, { url: 'http://localhost:3000' }));\napp.listen(3000);","breadcrumbs":"A2A Interoperability » 2. Serve Discovery Documents","id":"1265","title":"2. Serve Discovery Documents"},"1266":{"body":"Python: signed = client.sign_artifact({\"taskId\": \"t-1\", \"operation\": \"classify\"}, \"task\")\nresult = client.get_a2a().verify_wrapped_artifact(signed)\nassert result[\"valid\"] Node.js: const signed = await client.signArtifact( { taskId: 't-1', operation: 'classify' }, 'task',\n); const result = await client.verifyArtifact(signed);\nconsole.log(result.valid);","breadcrumbs":"A2A Interoperability » 3. Sign And Verify Artifacts","id":"1266","title":"3. Sign And Verify Artifacts"},"1267":{"body":"Trust policy answers a different question from cryptographic verification. Trust policy : should this remote agent be admitted? Artifact verification : is this specific signed payload valid? The current policy meanings are: Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store That means verified is about JACS provenance on the Agent Card , not about a promise that every foreign key has already been resolved.","breadcrumbs":"A2A Interoperability » Trust Policies","id":"1267","title":"Trust Policies"},"1268":{"body":"a2a = client.get_a2a()\nassessment = a2a.assess_remote_agent(remote_card_json, policy=\"strict\") if assessment[\"allowed\"]: result = a2a.verify_wrapped_artifact(artifact, assess_trust=True)","breadcrumbs":"A2A Interoperability » Python","id":"1268","title":"Python"},"1269":{"body":"const a2a = client.getA2A();\nconst assessment = a2a.assessRemoteAgent(remoteCardJson); if (assessment.allowed) { const result = await a2a.verifyWrappedArtifact(signedArtifact);\n}","breadcrumbs":"A2A Interoperability » Node.js","id":"1269","title":"Node.js"},"127":{"body":"What you assert about the subject. Claims are structured statements with a name, value, optional confidence score (0.0-1.0), and assurance level (self-asserted, verified, or independently-attested).","breadcrumbs":"What Is an Attestation? » Claims","id":"127","title":"Claims"},"1270":{"body":"Use the trust store when you want explicit admission: Export the agent document with share_agent() / shareAgent() Exchange the public key with share_public_key() / getPublicKey() Add the remote agent with trust_agent_with_key() / trustAgentWithKey() This is the cleanest path into strict policy.","breadcrumbs":"A2A Interoperability » Bootstrap Patterns","id":"1270","title":"Bootstrap Patterns"},"1271":{"body":"Python : jacs.a2a_server is the clearest full discovery story. Node.js : jacsA2AMiddleware() serves five .well-known routes from Express, but the generated jwks.json and jacs-pubkey.json payloads are still placeholder metadata. listen() is intentionally smaller and only suitable for demos.","breadcrumbs":"A2A Interoperability » Current Runtime Differences","id":"1271","title":"Current Runtime Differences"},"1272":{"body":"jacs-mcp/README.md jacspy/tests/test_a2a_server.py jacsnpm/src/a2a-server.js jacsnpm/examples/a2a-agent-example.js jacs/tests/a2a_cross_language_tests.rs","breadcrumbs":"A2A Interoperability » Example Paths In This Repo","id":"1272","title":"Example Paths In This Repo"},"1273":{"body":"Three focused mini-guides to get your JACS agent working with A2A. Guide What You'll Do Time 1. Serve Publish your Agent Card so other agents can find you 2 min 2. Discover & Trust Find remote agents and assess their trustworthiness 2 min 3. Exchange Sign and verify A2A artifacts with chain of custody 3 min Single-page version: See the A2A Quick Start at the repo root for a 10-line journey.","breadcrumbs":"A2A Quickstart » A2A Quickstart","id":"1273","title":"A2A Quickstart"},"1274":{"body":"Already using the A2A protocol? Here's what JACS adds -- and what stays the same.","breadcrumbs":"A2A Quickstart » JACS for A2A Developers","id":"1274","title":"JACS for A2A Developers"},"1275":{"body":"Agent Cards follow the v0.4.0 shape. Your existing Agent Card fields (name, description, skills, url) are preserved. Discovery uses /.well-known/agent-card.json. No new endpoints are required for basic interop. JSON-RPC transport is untouched. JACS works alongside A2A, not instead of it.","breadcrumbs":"A2A Quickstart » What Stays the Same","id":"1275","title":"What Stays the Same"},"1276":{"body":"A2A Alone With JACS Agent Card has no signature Agent Card is JWS-signed + JWKS published Artifacts are unsigned payloads Artifacts carry jacsSignature with signer ID, algorithm, and timestamp Trust is transport-level (TLS) Trust is data-level -- signatures persist offline No chain of custody parent_signatures link artifacts into a verifiable chain No standard trust policy open / verified / strict policies built in","breadcrumbs":"A2A Quickstart » What JACS Adds","id":"1276","title":"What JACS Adds"},"1277":{"body":"If you already serve an Agent Card, adding JACS provenance takes two steps: Step 1: Add the JACS extension to your Agent Card's capabilities: { \"capabilities\": { \"extensions\": [{ \"uri\": \"urn:jacs:provenance-v1\", \"description\": \"JACS cryptographic document signing\", \"required\": false }] }\n} Step 2: Sign artifacts before sending them: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\n# Wrap your existing artifact payload\nsigned = client.sign_artifact(your_existing_artifact, \"task\")\n# Send `signed` instead of the raw artifact Receiving agents that don't understand JACS will ignore the extra fields. Receiving agents that do understand JACS can verify the signature and assess trust.","breadcrumbs":"A2A Quickstart » Minimal Integration (Add JACS to Existing A2A Code)","id":"1277","title":"Minimal Integration (Add JACS to Existing A2A Code)"},"1278":{"body":"JACS generates two key pairs per agent: Post-quantum (ML-DSA-87) for JACS document signatures -- future-proof Traditional (RSA/ECDSA) for JWS Agent Card signatures -- A2A ecosystem compatibility This means your agent is compatible with both the current A2A ecosystem and quantum-resistant verification.","breadcrumbs":"A2A Quickstart » Dual Key Architecture","id":"1278","title":"Dual Key Architecture"},"1279":{"body":"Q: pip install jacs[a2a-server] fails. A: The a2a-server extra requires Python 3.10+ and adds FastAPI + uvicorn. If you only need signing (not serving), use pip install jacs with no extras. Q: discover_and_assess returns jacs_registered: false. A: The remote agent's Agent Card does not include the urn:jacs:provenance-v1 extension. This is normal for non-JACS A2A agents. With the open trust policy, they are still allowed; with verified, they are rejected. Q: Verification returns valid: true but trust.allowed: false. A: The signature is cryptographically correct, but the trust policy rejected the signer. With strict policy, the signer must be in your local trust store. Add them with a2a.trust_a2a_agent(card_json). Q: sign_artifact raises \"no agent loaded\". A: Call JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") or JacsClient(config_path=...) before signing. The client must have a loaded agent with keys. Q: Agent Card export returns empty skills. A: Skills are derived from jacsServices in the agent definition. Pass skills=[...] to export_agent_card() to override, or define services when creating the agent. Q: My existing A2A client doesn't understand the JACS fields. A: This is expected. JACS fields (jacsId, jacsSignature, jacsSha256) are additive. Non-JACS clients should ignore unknown fields per JSON convention. If a client rejects them, strip JACS fields before sending by extracting signed[\"payload\"]. Q: How do I verify artifacts from agents I've never seen before? A: Use JACS_KEY_RESOLUTION to configure key lookup. Set JACS_KEY_RESOLUTION=local,hai to check your local cache first, then the HAI key service. For offline-only verification, set JACS_KEY_RESOLUTION=local.","breadcrumbs":"A2A Quickstart » Troubleshooting FAQ","id":"1279","title":"Troubleshooting FAQ"},"128":{"body":"What supports the claims. Evidence references link to external proofs (A2A messages, email headers, JWT tokens, TLS notary sessions) with their own digests and timestamps.","breadcrumbs":"What Is an Attestation? » Evidence","id":"128","title":"Evidence"},"1280":{"body":"A2A Interoperability Reference -- Full API reference, well-known documents, MCP integration Trust Store -- Managing trusted agents Express Middleware -- Add A2A to existing Express apps Framework Adapters -- Auto-sign with LangChain, FastAPI, CrewAI Observability & Monitoring Guide -- Monitor signing and verification events Hero Demo (Python) -- 3-agent trust verification example Hero Demo (Node.js) -- Same demo in TypeScript","breadcrumbs":"A2A Quickstart » Next Steps","id":"1280","title":"Next Steps"},"1281":{"body":"Make your JACS agent discoverable by other A2A agents. Prerequisites: pip install jacs[a2a-server] (Python) or npm install @hai.ai/jacs express (Node.js). Python from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart(url=\"http://localhost:8080\").serve(port=8080) Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Serve Your Agent Card","id":"1281","title":"Serve Your Agent Card"},"1282":{"body":"from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.a2a_server import jacs_a2a_routes app = FastAPI()\nclient = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nrouter = jacs_a2a_routes(client)\napp.include_router(router) Node.js (Express) const express = require('express');\nconst { JacsClient } = require('@hai.ai/jacs/client');\nconst { jacsA2AMiddleware } = require('@hai.ai/jacs/a2a-server'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express();\napp.use(jacsA2AMiddleware(client));\napp.listen(8080); Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Production: Mount into Your Own FastAPI App","id":"1282","title":"Production: Mount into Your Own FastAPI App"},"1283":{"body":"All five .well-known endpoints are served automatically: Endpoint Purpose /.well-known/agent-card.json A2A Agent Card with JWS signature /.well-known/jwks.json JWK set for A2A verifiers /.well-known/jacs-agent.json JACS agent descriptor /.well-known/jacs-pubkey.json JACS public key /.well-known/jacs-extension.json JACS provenance extension descriptor The Agent Card includes the urn:jacs:provenance-v1 extension in capabilities.extensions, signaling to other JACS agents that your agent supports cryptographic provenance.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » What Gets Served","id":"1283","title":"What Gets Served"},"1284":{"body":"Discover & Trust Remote Agents -- Find other agents and assess their trustworthiness Exchange Signed Artifacts -- Sign and verify A2A artifacts A2A Interoperability Reference -- Full API reference","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Next Steps","id":"1284","title":"Next Steps"},"1285":{"body":"Find other A2A agents and decide whether to trust them. Python from jacs.a2a_discovery import discover_and_assess_sync result = discover_and_assess_sync(\"https://agent.example.com\")\nif result[\"allowed\"]: print(f\"Trusted: {result['card']['name']} ({result['trust_level']})\")","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Discover & Trust Remote Agents","id":"1285","title":"Discover & Trust Remote Agents"},"1286":{"body":"For strict policy, agents must be in your local trust store: from jacs.client import JacsClient\nfrom jacs.a2a import JACSA2AIntegration client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\na2a = JACSA2AIntegration(client, trust_policy=\"strict\") # Assess a remote agent's trustworthiness\nassessment = a2a.assess_remote_agent(remote_card_json)\nprint(f\"JACS registered: {assessment['jacs_registered']}\")\nprint(f\"Allowed: {assessment['allowed']}\") # Add to trust store (verifies agent's self-signature first)\na2a.trust_a2a_agent(remote_card_json)","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1286","title":"Add to Your Trust Store"},"1287":{"body":"from jacs.a2a_discovery import discover_agent, discover_and_assess card = await discover_agent(\"https://agent.example.com\")\nresult = await discover_and_assess(\"https://agent.example.com\", policy=\"verified\", client=client) Node.js const { discoverAndAssess } = require('@hai.ai/jacs/a2a-discovery'); const result = await discoverAndAssess('https://agent.example.com');\nif (result.allowed) { console.log(`Trusted: ${result.card.name} (${result.trustLevel})`);\n}","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Async API","id":"1287","title":"Async API"},"1288":{"body":"const { JacsClient } = require('@hai.ai/jacs/client');\nconst { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst a2a = new JACSA2AIntegration(client, 'strict'); // Assess a remote agent\nconst assessment = a2a.assessRemoteAgent(remoteCardJson);\nconsole.log(`JACS registered: ${assessment.jacsRegistered}`);\nconsole.log(`Allowed: ${assessment.allowed}`); // Add to trust store\na2a.trustA2AAgent(remoteAgentId);","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1288","title":"Add to Your Trust Store"},"1289":{"body":"Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Trust Policies","id":"1289","title":"Trust Policies"},"129":{"body":"How the attestation was produced. When one attestation builds on another -- for example, a review attestation that references an earlier scan attestation -- the derivation chain captures the full transformation history.","breadcrumbs":"What Is an Attestation? » Derivation Chain","id":"129","title":"Derivation Chain"},"1290":{"body":"1. Discover -- Fetch /.well-known/agent-card.json from a remote URL\n2. Assess -- Check for JACS extension, verify signatures\n3. Decide -- Trust policy determines if the agent is allowed\n4. Trust -- Optionally add the agent to your local trust store With open policy, all agents pass step 3. With verified, agents must have the JACS extension. With strict, agents must be explicitly added to the trust store in step 4 before they pass.","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » How Trust Flows","id":"1290","title":"How Trust Flows"},"1291":{"body":"Exchange Signed Artifacts -- Sign and verify artifacts with trusted agents Serve Your Agent Card -- Make your agent discoverable Trust Store -- Managing the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Next Steps","id":"1291","title":"Next Steps"},"1292":{"body":"Sign artifacts with cryptographic provenance and verify artifacts from other agents. Python","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Exchange Signed Artifacts","id":"1292","title":"Exchange Signed Artifacts"},"1293":{"body":"from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Sign an artifact\nsigned = client.sign_artifact({\"action\": \"classify\", \"input\": \"data\"}, \"task\") # Verify it (with trust assessment)\na2a = client.get_a2a()\nresult = a2a.verify_wrapped_artifact(signed, assess_trust=True)\nprint(f\"Valid: {result['valid']}, Allowed: {result['trust']['allowed']}\")","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1293","title":"Sign and Verify"},"1294":{"body":"When multiple agents process data in sequence, link artifacts into a verifiable chain: # Agent A signs step 1\nstep1 = client_a.sign_artifact({\"step\": 1, \"data\": \"raw\"}, \"message\") # Agent B signs step 2, referencing step 1 as parent\nstep2 = client_b.sign_artifact( {\"step\": 2, \"data\": \"processed\"}, \"message\", parent_signatures=[step1],\n) # Verify the full chain\nresult = a2a.verify_wrapped_artifact(step2)\nassert result[\"valid\"]\nassert result[\"parent_signatures_valid\"]","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1294","title":"Chain of Custody"},"1295":{"body":"chain = a2a.create_chain_of_custody([step1, step2])\n# chain contains: steps (ordered), signers, timestamps, validity Node.js","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Build an Audit Trail","id":"1295","title":"Build an Audit Trail"},"1296":{"body":"const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); // Sign an artifact\nconst signed = await client.signArtifact({ action: 'classify', input: 'data' }, 'task'); // Verify it\nconst a2a = client.getA2A();\nconst result = a2a.verifyWrappedArtifact(signed);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1296","title":"Sign and Verify"},"1297":{"body":"// Agent A signs step 1\nconst step1 = await clientA.signArtifact({ step: 1, data: 'raw' }, 'message'); // Agent B signs step 2, referencing step 1\nconst step2 = await clientB.signArtifact( { step: 2, data: 'processed' }, 'message', [step1],\n); // Verify the full chain\nconst result = a2a.verifyWrappedArtifact(step2);\nconsole.log(`Chain valid: ${result.valid}`);\nconsole.log(`Parents valid: ${result.parentSignaturesValid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1297","title":"Chain of Custody"},"1298":{"body":"The artifact_type parameter labels the payload for downstream processing: Type Use Case task Task assignments, work requests message Inter-agent messages result Task results, responses You can use any string -- these are conventions, not enforced types.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Artifact Types","id":"1298","title":"Artifact Types"},"1299":{"body":"Every signed artifact includes: Field Description jacsId Unique document ID jacsSignature Signer ID, algorithm, timestamp, and base64 signature jacsSha256 Content hash for integrity verification jacsType The artifact type label jacsParentSignatures Parent artifacts for chain of custody (if any) payload The original artifact data Non-JACS receivers can safely ignore the jacs* fields and extract payload directly.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » What Gets Signed","id":"1299","title":"What Gets Signed"},"13":{"body":"go get github.com/HumanAssisted/JACS/jacsgo Rust, Python, and Node quickstart flows create or load a persistent agent and return agent metadata including config and key paths.","breadcrumbs":"Introduction » Go","id":"13","title":"Go"},"130":{"body":"Layer 2: Adapters (A2A, email, JWT, TLSNotary) |\nLayer 1: Attestation Engine (create, verify, lift, DSSE export) |\nLayer 0: JACS Core (sign, verify, agreements, storage) Attestations build on top of existing JACS signing. Every attestation is also a valid signed JACS document. You can verify an attestation with verify() for signature checks, or use verify_attestation() for the full trust evaluation.","breadcrumbs":"What Is an Attestation? » Architecture Layers","id":"130","title":"Architecture Layers"},"1300":{"body":"Serve Your Agent Card -- Make your agent discoverable Discover & Trust Remote Agents -- Find and assess other agents A2A Interoperability Reference -- Full API reference Hero Demo (Python) -- 3-agent trust verification example","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Next Steps","id":"1300","title":"Next Steps"},"1301":{"body":"This guide helps you choose the right JACS API for your use case.","breadcrumbs":"Sign vs. Attest Decision Guide » Sign vs. Attest: When to Use Which","id":"1301","title":"Sign vs. Attest: When to Use Which"},"1302":{"body":"Start here: What do you need to prove? \"This data hasn't been tampered with\" Use sign_message() / signMessage() This gives you a cryptographic signature and integrity hash. \"This data hasn't been tampered with AND here's why it should be trusted\" Use create_attestation() / createAttestation() This gives you signature + integrity + claims + evidence + derivation chain. \"I have an existing signed document and want to add trust context\" Use lift_to_attestation() / liftToAttestation() This wraps an existing JACS-signed document into a new attestation. \"I need to export a trust proof for external systems\" Use export_attestation_dsse() / exportAttestationDsse() This creates an in-toto DSSE envelope compatible with SLSA and Sigstore. \"I need to send signed data to another agent or service\" Use sign_artifact() / signArtifact() via the A2A integration. This wraps your data in a JACS provenance envelope for cross-boundary exchange. See A2A Interoperability and A2A + Attestation Composition .","breadcrumbs":"Sign vs. Attest Decision Guide » Decision Tree","id":"1302","title":"Decision Tree"},"1303":{"body":"Scenario API Output Log an AI action sign_message() Signed document Record a human review decision create_attestation() Attestation with claims Attach evidence from another system create_attestation() with evidence Attestation with evidence refs Wrap an existing signed doc with trust context lift_to_attestation() New attestation referencing original Export for SLSA/Sigstore export_attestation_dsse() DSSE envelope Verify signature only verify() Valid/invalid + signer Verify signature + claims + evidence verify_attestation(full=True) Full verification result Exchange artifact with another agent sign_artifact() / A2A Signed wrapped artifact","breadcrumbs":"Sign vs. Attest Decision Guide » Quick Reference","id":"1303","title":"Quick Reference"},"1304":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Examples","id":"1304","title":"Examples"},"1305":{"body":"signed = client.sign_message({\"action\": \"approve\"})\nresult = client.verify(signed.raw_json)\n# result[\"valid\"] == True","breadcrumbs":"Sign vs. Attest Decision Guide » Just need integrity? Use signing.","id":"1305","title":"Just need integrity? Use signing."},"1306":{"body":"att = client.create_attestation( subject={\"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n)\nresult = client.verify_attestation(att.raw_json, full=True)\n# result[\"valid\"] == True, result[\"evidence\"] == [...]","breadcrumbs":"Sign vs. Attest Decision Guide » Need trust context? Use attestation.","id":"1306","title":"Need trust context? Use attestation."},"1307":{"body":"signed = client.sign_message({\"content\": \"original\"})\natt = client.lift_to_attestation(signed, [{\"name\": \"approved\", \"value\": True}])\n# att now has attestation metadata referencing the original document","breadcrumbs":"Sign vs. Attest Decision Guide » Already signed? Lift to attestation.","id":"1307","title":"Already signed? Lift to attestation."},"1308":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Common Patterns","id":"1308","title":"Common Patterns"},"1309":{"body":"Use sign_message() for each tool call or action. The signature proves the agent took the action and the data hasn't been modified.","breadcrumbs":"Sign vs. Attest Decision Guide » AI Agent Action Logging","id":"1309","title":"AI Agent Action Logging"},"131":{"body":"from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\") # Sign a document (Layer 0)\nsigned = client.sign_message({\"action\": \"approve\", \"amount\": 100}) # Attest WHY it's trustworthy (Layer 1)\natt = client.create_attestation( subject={\"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n) # Verify the full trust chain\nresult = client.verify_attestation(att.raw_json, full=True)\nprint(f\"Valid: {result['valid']}\")","breadcrumbs":"What Is an Attestation? » Quick Example","id":"131","title":"Quick Example"},"1310":{"body":"Use create_attestation() with claims like reviewed_by: human and confidence: 0.95. This creates an auditable record that a human reviewed and approved the output.","breadcrumbs":"Sign vs. Attest Decision Guide » Human Review Attestation","id":"1310","title":"Human Review Attestation"},"1311":{"body":"Use create_attestation() with a derivation field to capture input/output relationships. Each step attests to its own transformation with references to upstream attestations.","breadcrumbs":"Sign vs. Attest Decision Guide » Multi-step Pipeline","id":"1311","title":"Multi-step Pipeline"},"1312":{"body":"Use export_attestation_dsse() to generate an in-toto DSSE envelope that external systems (SLSA verifiers, Sigstore) can validate independently.","breadcrumbs":"Sign vs. Attest Decision Guide » Cross-system Verification","id":"1312","title":"Cross-system Verification"},"1313":{"body":"This step-by-step tutorial walks you through adding attestation support to an existing JACS workflow. You'll go from basic signing to full attestation creation and verification in under 5 minutes.","breadcrumbs":"Attestation Tutorial » Tutorial: Add Attestations to Your Workflow","id":"1313","title":"Tutorial: Add Attestations to Your Workflow"},"1314":{"body":"JACS installed (Python, Node.js, or CLI) Attestation feature enabled (built with --features attestation)","breadcrumbs":"Attestation Tutorial » Prerequisites","id":"1314","title":"Prerequisites"},"1315":{"body":"Use an ephemeral agent for testing (no files on disk): {{#tabs }} {{#tab name=\"Python\" }} from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\")\nprint(f\"Agent ID: {client.agent_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.ephemeral('ring-Ed25519');\nconsole.log(`Agent ID: ${client.agentId}`); {{#endtab }} {{#tab name=\"CLI\" }} export JACS_PRIVATE_KEY_PASSWORD=\"YourP@ssw0rd\"\njacs quickstart --algorithm ed25519 {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 1: Create an Agent","id":"1315","title":"Step 1: Create an Agent"},"1316":{"body":"Sign some data to establish the base document: {{#tabs }} {{#tab name=\"Python\" }} signed = client.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const signed = await client.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 2: Sign a Document","id":"1316","title":"Step 2: Sign a Document"},"1317":{"body":"Now add trust context -- why this document should be trusted: {{#tabs }} {{#tab name=\"Python\" }} import hashlib\ncontent_hash = hashlib.sha256(signed.raw_json.encode()).hexdigest()\nattestation = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": content_hash}, }, claims=[ { \"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95, \"assuranceLevel\": \"verified\", } ],\n)\nprint(f\"Attestation ID: {attestation.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { createHash } = require('crypto');\nconst contentHash = createHash('sha256').update(signed.raw).digest('hex');\nconst attestation = await client.createAttestation({ subject: { type: 'artifact', id: signed.documentId, digests: { sha256: contentHash }, }, claims: [{ name: 'reviewed_by', value: 'human', confidence: 0.95, assuranceLevel: 'verified', }],\n});\nconsole.log(`Attestation ID: ${attestation.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 3: Create an Attestation","id":"1317","title":"Step 3: Create an Attestation"},"1318":{"body":"","breadcrumbs":"Attestation Tutorial » Step 4: Verify the Attestation","id":"1318","title":"Step 4: Verify the Attestation"},"1319":{"body":"{{#tabs }} {{#tab name=\"Python\" }} result = client.verify_attestation(attestation.raw_json)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Signature OK: {result['crypto']['signature_valid']}\")\nprint(f\"Hash OK: {result['crypto']['hash_valid']}\") {{#endtab }} {{#tab name=\"Node.js\" }} const result = await client.verifyAttestation(attestation.raw);\nconsole.log(`Valid: ${result.valid}`);\nconsole.log(`Signature OK: ${result.crypto.signature_valid}`);\nconsole.log(`Hash OK: ${result.crypto.hash_valid}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Local Verification (fast -- signature + hash only)","id":"1319","title":"Local Verification (fast -- signature + hash only)"},"132":{"body":"Attestation (Layer C) provides trust context: claims, evidence, and derivation chains. It answers \"why should this data be trusted?\" A2A trust policy (Layer B) handles agent admission: \"is this agent allowed to communicate?\" For transport trust decisions, see A2A Interoperability . For how attestation and A2A compose, see A2A + Attestation Composition . For the full three-layer model, see Trust Layers .","breadcrumbs":"What Is an Attestation? » Attestation vs. A2A Trust Policy","id":"132","title":"Attestation vs. A2A Trust Policy"},"1320":{"body":"{{#tabs }} {{#tab name=\"Python\" }} full = client.verify_attestation(attestation.raw_json, full=True)\nprint(f\"Valid: {full['valid']}\")\nprint(f\"Evidence: {full.get('evidence', [])}\")\nprint(f\"Chain: {full.get('chain')}\") {{#endtab }} {{#tab name=\"Node.js\" }} const full = await client.verifyAttestation(attestation.raw, { full: true });\nconsole.log(`Valid: ${full.valid}`);\nconsole.log(`Evidence: ${JSON.stringify(full.evidence)}`);\nconsole.log(`Chain: ${JSON.stringify(full.chain)}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Full Verification (thorough -- includes evidence + derivation chain)","id":"1320","title":"Full Verification (thorough -- includes evidence + derivation chain)"},"1321":{"body":"Evidence references link to external proofs that support your claims: {{#tabs }} {{#tab name=\"Python\" }} attestation_with_evidence = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"abc123...\"}, }, claims=[{\"name\": \"scanned\", \"value\": True, \"confidence\": 1.0}], evidence=[ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, } ],\n) {{#endtab }} {{#tab name=\"Node.js\" }} const attWithEvidence = await client.createAttestation({ subject: { type: 'artifact', id: 'doc-001', digests: { sha256: 'abc123...' }, }, claims: [{ name: 'scanned', value: true, confidence: 1.0 }], evidence: [{ kind: 'custom', digests: { sha256: 'evidence-hash...' }, uri: 'https://scanner.example.com/results/123', collectedAt: '2026-03-04T00:00:00Z', verifier: { name: 'security-scanner', version: '2.0' }, }],\n}); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 5: Add Evidence (Optional)","id":"1321","title":"Step 5: Add Evidence (Optional)"},"1322":{"body":"Export your attestation as a DSSE (Dead Simple Signing Envelope) for compatibility with in-toto, SLSA, and Sigstore: {{#tabs }} {{#tab name=\"Python\" }} envelope = client.export_attestation_dsse(attestation.raw_json)\nprint(f\"Payload type: {envelope['payloadType']}\")\nprint(f\"Signatures: {len(envelope['signatures'])}\") {{#endtab }} {{#tab name=\"Node.js\" }} const envelope = await client.exportAttestationDsse(attestation.raw);\nconsole.log(`Payload type: ${envelope.payloadType}`);\nconsole.log(`Signatures: ${envelope.signatures.length}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 6: Export as DSSE (Optional)","id":"1322","title":"Step 6: Export as DSSE (Optional)"},"1323":{"body":"Sign vs. Attest decision guide -- when to use which API Attestation error catalog -- understand verification results What is an attestation? -- concept deep dive","breadcrumbs":"Attestation Tutorial » What's Next?","id":"1323","title":"What's Next?"},"1324":{"body":"Evidence adapters normalize external proof sources into JACS attestation claims and evidence references. JACS ships with A2A and Email adapters; you can add your own for JWT tokens, TLSNotary proofs, or any custom evidence source.","breadcrumbs":"Writing a Custom Evidence Adapter » Writing a Custom Evidence Adapter","id":"1324","title":"Writing a Custom Evidence Adapter"},"1325":{"body":"An EvidenceAdapter is a Rust trait with three methods: pub trait EvidenceAdapter: Send + Sync + std::fmt::Debug { /// Returns the kind string (e.g., \"jwt\", \"tlsnotary\", \"custom\"). fn kind(&self) -> &str; /// Normalize raw evidence bytes + metadata into claims + evidence reference. fn normalize( &self, raw: &[u8], metadata: &serde_json::Value, ) -> Result<(Vec, EvidenceRef), Box>; /// Verify a previously created evidence reference. fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result>;\n} The adapter lifecycle: At attestation creation time: normalize() is called with raw evidence bytes and optional metadata. It returns structured claims and an EvidenceRef that will be embedded in the attestation document. At verification time (full tier): verify_evidence() is called with the stored EvidenceRef to re-validate the evidence.","breadcrumbs":"Writing a Custom Evidence Adapter » What Is an EvidenceAdapter?","id":"1325","title":"What Is an EvidenceAdapter?"},"1326":{"body":"normalize() must: Compute content-addressable digests of the raw evidence using compute_digest_set_bytes() Decide whether to embed the evidence (recommended for data under 64KB) Extract meaningful claims from the evidence Set appropriate confidence and assuranceLevel values Include a collectedAt timestamp Return a VerifierInfo identifying your adapter and version normalize() must NOT: Make network calls (normalization should be deterministic and fast) Modify the raw evidence Set confidence to 1.0 unless the evidence is self-verifying (e.g., a valid cryptographic proof)","breadcrumbs":"Writing a Custom Evidence Adapter » The normalize() Contract","id":"1326","title":"The normalize() Contract"},"1327":{"body":"verify_evidence() must: Verify the digest integrity (re-hash and compare) Check freshness (is the collectedAt timestamp within acceptable bounds?) Return a detailed EvidenceVerificationResult with digest_valid, freshness_valid, and human-readable detail verify_evidence() may: Make network calls (for remote evidence resolution) Access the file system (for local evidence files) Return partial results (e.g., digest valid but freshness expired)","breadcrumbs":"Writing a Custom Evidence Adapter » The verify_evidence() Contract","id":"1327","title":"The verify_evidence() Contract"},"1328":{"body":"Here is a complete example of a JWT evidence adapter: use crate::attestation::adapters::EvidenceAdapter;\nuse crate::attestation::digest::compute_digest_set_bytes;\nuse crate::attestation::types::*;\nuse serde_json::Value;\nuse std::error::Error; #[derive(Debug)]\npub struct JwtAdapter; impl EvidenceAdapter for JwtAdapter { fn kind(&self) -> &str { \"jwt\" } fn normalize( &self, raw: &[u8], metadata: &Value, ) -> Result<(Vec, EvidenceRef), Box> { // 1. Parse the JWT (header.payload.signature) let jwt_str = std::str::from_utf8(raw)?; let parts: Vec<&str> = jwt_str.split('.').collect(); if parts.len() != 3 { return Err(\"Invalid JWT: expected 3 dot-separated parts\".into()); } // 2. Decode the payload (base64url) let payload_bytes = base64::Engine::decode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, parts[1], )?; let payload: Value = serde_json::from_slice(&payload_bytes)?; // 3. Compute content-addressable digests let digests = compute_digest_set_bytes(raw); // 4. Extract claims (only non-PII fields per TRD Decision 14) let mut claims = vec![]; if let Some(iss) = payload.get(\"iss\") { claims.push(Claim { name: \"jwt-issuer\".into(), value: iss.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: iss.as_str().map(String::from), issued_at: Some(crate::time_utils::now_rfc3339()), }); } if let Some(sub) = payload.get(\"sub\") { claims.push(Claim { name: \"jwt-subject\".into(), value: sub.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: None, issued_at: None, }); } // 5. Build the evidence reference let evidence = EvidenceRef { kind: EvidenceKind::Jwt, digests, uri: metadata.get(\"uri\").and_then(|v| v.as_str()).map(String::from), embedded: raw.len() < 65536, embedded_data: if raw.len() < 65536 { Some(Value::String(jwt_str.to_string())) } else { None }, collected_at: crate::time_utils::now_rfc3339(), resolved_at: None, sensitivity: EvidenceSensitivity::Restricted, // JWTs may contain PII verifier: VerifierInfo { name: \"jacs-jwt-adapter\".into(), version: env!(\"CARGO_PKG_VERSION\").into(), }, }; Ok((claims, evidence)) } fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result> { // Re-verify the digest let digest_valid = if let Some(ref data) = evidence.embedded_data { let raw = data.as_str().unwrap_or(\"\").as_bytes(); let recomputed = compute_digest_set_bytes(raw); recomputed.sha256 == evidence.digests.sha256 } else { // Cannot verify without embedded data or fetchable URI false }; // Check freshness (example: 5 minute max age) let freshness_valid = true; // Implement actual time check Ok(EvidenceVerificationResult { kind: \"jwt\".into(), digest_valid, freshness_valid, detail: if digest_valid { \"JWT digest verified\".into() } else { \"JWT digest mismatch or data unavailable\".into() }, }) }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Step-by-Step: Building a JWT Adapter","id":"1328","title":"Step-by-Step: Building a JWT Adapter"},"1329":{"body":"Write tests that cover: Normal case: Valid evidence normalizes to expected claims Invalid input: Malformed evidence returns a clear error Digest verification: Round-trip through normalize + verify_evidence Empty evidence: Edge case handling #[cfg(test)]\nmod tests { use super::*; use serde_json::json; #[test] fn jwt_normalize_extracts_issuer() { let adapter = JwtAdapter; // Build a minimal JWT (header.payload.signature) let header = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"alg\\\":\\\"RS256\\\"}\", ); let payload = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"iss\\\":\\\"auth.example.com\\\",\\\"sub\\\":\\\"user-123\\\"}\", ); let jwt = format!(\"{}.{}.fake-sig\", header, payload); let (claims, evidence) = adapter .normalize(jwt.as_bytes(), &json!({})) .expect(\"normalize should succeed\"); assert!(claims.iter().any(|c| c.name == \"jwt-issuer\")); assert_eq!(evidence.kind, EvidenceKind::Jwt); }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Testing Your Adapter","id":"1329","title":"Testing Your Adapter"},"133":{"body":"Use attestations when you need to answer questions like: Why should I trust this data? (claims + evidence) Who reviewed it and when? (issuer, timestamps, assurance level) How was it produced? (derivation chain) Can I independently verify the trust chain? (DSSE export, evidence verification) If you only need to prove who signed something and that it hasn't been tampered with, sign_message() is sufficient. See Sign vs. Attest for a detailed decision guide.","breadcrumbs":"What Is an Attestation? » When to Use Attestations","id":"133","title":"When to Use Attestations"},"1330":{"body":"Adapters are registered on the Agent struct via the evidence adapter list. To add your adapter to the default set, modify adapters/mod.rs: pub fn default_adapters() -> Vec> { vec![ Box::new(a2a::A2aAdapter), Box::new(email::EmailAdapter), Box::new(jwt::JwtAdapter), // Add your adapter here ]\n} For runtime registration (without modifying JACS source), use the agent's adapter API (when available in a future release).","breadcrumbs":"Writing a Custom Evidence Adapter » Registering Your Adapter with the Agent","id":"1330","title":"Registering Your Adapter with the Agent"},"1331":{"body":"The EvidenceSensitivity enum controls how evidence is handled: Public: Evidence can be freely shared and embedded Restricted: Evidence should be handled with care; consider redacting PII Confidential: Evidence should not be embedded; use content-addressable URI references only For JWTs and other credential-based evidence, default to Restricted and only include non-PII fields (iss, sub, aud, iat, exp) in claims.","breadcrumbs":"Writing a Custom Evidence Adapter » Privacy Considerations","id":"1331","title":"Privacy Considerations"},"1332":{"body":"JACS provides Python framework adapters for LangChain, FastAPI, CrewAI, and Anthropic. Each adapter can be configured to produce attestations (not just signatures) for tool calls, API requests, and agent actions.","breadcrumbs":"Framework Adapter Attestation Guide » Framework Adapter Attestation Guide","id":"1332","title":"Framework Adapter Attestation Guide"},"1333":{"body":"All framework adapters share these attestation patterns:","breadcrumbs":"Framework Adapter Attestation Guide » Common Patterns","id":"1333","title":"Common Patterns"},"1334":{"body":"When attest=True is enabled on any adapter, it automatically includes these default claims: [ {\"name\": \"framework\", \"value\": \"langchain\", \"confidence\": 1.0}, {\"name\": \"tool_name\", \"value\": \"my_tool\", \"confidence\": 1.0}, {\"name\": \"timestamp\", \"value\": \"2026-03-04T...\", \"confidence\": 1.0},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Default Claims","id":"1334","title":"Default Claims"},"1335":{"body":"Add your own claims to any adapter call: extra_claims = [ {\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}, {\"name\": \"approved\", \"value\": True, \"assuranceLevel\": \"verified\"},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Custom Claims","id":"1335","title":"Custom Claims"},"1336":{"body":"Attach evidence references from external systems: evidence = [ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"abc123...\"}, \"uri\": \"https://scanner.example.com/report/456\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, }\n]","breadcrumbs":"Framework Adapter Attestation Guide » Evidence Attachment","id":"1336","title":"Evidence Attachment"},"1337":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » LangChain","id":"1337","title":"LangChain"},"1338":{"body":"Use jacs_wrap_tool_call with attest=True: from jacs.adapters.langchain import jacs_wrap_tool_call\nfrom jacs.client import JacsClient client = JacsClient.quickstart() # Wrap a tool call with attestation\n@jacs_wrap_tool_call(client, attest=True)\ndef my_tool(query: str) -> str: return f\"Result for: {query}\" # The tool call now produces a signed attestation\nresult = my_tool(\"test query\")\n# result.attestation contains the signed attestation document","breadcrumbs":"Framework Adapter Attestation Guide » Enabling Attestation on Tool Calls","id":"1338","title":"Enabling Attestation on Tool Calls"},"1339":{"body":"from jacs.adapters.langchain import signed_tool @signed_tool(client, attest=True, claims=[ {\"name\": \"data_source\", \"value\": \"internal_db\", \"confidence\": 1.0}\n])\ndef lookup_customer(customer_id: str) -> dict: return {\"name\": \"Alice\", \"status\": \"active\"}","breadcrumbs":"Framework Adapter Attestation Guide » Using the signed_tool Decorator","id":"1339","title":"Using the signed_tool Decorator"},"134":{"body":"JACS organizes trust into three distinct layers. Each layer has a clear scope and its own vocabulary. Understanding which layer you need prevents confusion between identity, transport policy, and evidentiary trust.","breadcrumbs":"Trust Layers » JACS Trust Layers","id":"134","title":"JACS Trust Layers"},"1340":{"body":"from jacs.adapters.langchain import with_jacs_signing # Wrap an entire chain with attestation\nsigned_chain = with_jacs_signing( chain=my_chain, client=client, attest=True,\n)","breadcrumbs":"Framework Adapter Attestation Guide » With LangChain Chains","id":"1340","title":"With LangChain Chains"},"1341":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » FastAPI","id":"1341","title":"FastAPI"},"1342":{"body":"The JacsMiddleware can be configured to produce attestations for all responses: from fastapi import FastAPI\nfrom jacs.adapters.fastapi import JacsMiddleware\nfrom jacs.client import JacsClient app = FastAPI()\nclient = JacsClient.quickstart() app.add_middleware( JacsMiddleware, client=client, attest=True, # Produce attestations, not just signatures default_claims=[ {\"name\": \"service\", \"value\": \"my-api\", \"confidence\": 1.0}, ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Middleware","id":"1342","title":"Attestation Middleware"},"1343":{"body":"Use jacs_route for route-level attestation control: from jacs.adapters.fastapi import jacs_route @app.post(\"/approve\")\n@jacs_route(client, attest=True, claims=[ {\"name\": \"action\", \"value\": \"approve\", \"confidence\": 1.0}, {\"name\": \"requires_review\", \"value\": True},\n])\nasync def approve_request(request_id: str): return {\"approved\": True, \"request_id\": request_id} The response headers will include X-JACS-Attestation-Id with the attestation document ID.","breadcrumbs":"Framework Adapter Attestation Guide » Per-Route Attestation","id":"1343","title":"Per-Route Attestation"},"1344":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » CrewAI","id":"1344","title":"CrewAI"},"1345":{"body":"Use jacs_guardrail with attestation mode to create trust-verified task execution: from jacs.adapters.crewai import jacs_guardrail, JacsSignedTool\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @jacs_guardrail(client, attest=True)\ndef verified_analysis(task_result): \"\"\"Guardrail that attests to analysis quality.\"\"\" return task_result","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Guardrails","id":"1345","title":"Attestation Guardrails"},"1346":{"body":"from jacs.adapters.crewai import signed_task @signed_task(client, attest=True, claims=[ {\"name\": \"analysis_type\", \"value\": \"financial\", \"confidence\": 0.9},\n])\ndef analyze_portfolio(data): return {\"risk_score\": 0.3, \"recommendation\": \"hold\"}","breadcrumbs":"Framework Adapter Attestation Guide » Signed Tasks","id":"1346","title":"Signed Tasks"},"1347":{"body":"class MyTool(JacsSignedTool): \"\"\"A CrewAI tool with built-in attestation.\"\"\" name = \"market_data\" description = \"Fetch market data\" attest = True default_claims = [ {\"name\": \"data_source\", \"value\": \"bloomberg\"}, ] def _run(self, ticker: str) -> dict: return {\"ticker\": ticker, \"price\": 150.0}","breadcrumbs":"Framework Adapter Attestation Guide » JacsSignedTool","id":"1347","title":"JacsSignedTool"},"1348":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » Anthropic","id":"1348","title":"Anthropic"},"1349":{"body":"The Anthropic adapter hooks into Claude tool calls to produce attestations: from jacs.adapters.anthropic import signed_tool, JacsToolHook\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @signed_tool(client, attest=True)\ndef search_database(query: str) -> str: return \"Found 3 results\" # Or use the hook class for more control\nhook = JacsToolHook( client=client, attest=True, default_claims=[ {\"name\": \"model\", \"value\": \"claude-4.6\"}, {\"name\": \"tool_use_id\", \"value\": \"auto\"}, # Auto-filled from tool call ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Tool Hook Attestation","id":"1349","title":"Tool Hook Attestation"},"135":{"body":"","breadcrumbs":"Trust Layers » The Three Layers","id":"135","title":"The Three Layers"},"1350":{"body":"import anthropic\nfrom jacs.adapters.anthropic import JacsToolHook client = anthropic.Anthropic()\njacs_client = JacsClient.quickstart()\nhook = JacsToolHook(jacs_client, attest=True) # Register tools with JACS attestation\ntools = hook.wrap_tools([ { \"name\": \"get_weather\", \"description\": \"Get weather for a location\", \"input_schema\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\"}}}, }\n])","breadcrumbs":"Framework Adapter Attestation Guide » With the Anthropic SDK","id":"1350","title":"With the Anthropic SDK"},"1351":{"body":"All framework attestations use the same JACS verification API: # Verify any attestation (from any framework adapter)\nresult = client.verify_attestation(attestation_json, full=True)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Framework: {result['claims'][0]['value']}\")\nprint(f\"Evidence: {result.get('evidence', [])}\")","breadcrumbs":"Framework Adapter Attestation Guide » Verifying Framework Attestations","id":"1351","title":"Verifying Framework Attestations"},"1352":{"body":"All adapters respect the strict flag on JacsClient: Permissive (default): Signing/attestation failures log warnings but do not block the operation Strict: Signing/attestation failures raise exceptions and block the operation # Strict mode: attestation failure = operation failure\nclient = JacsClient.quickstart(strict=True) # Permissive mode: attestation failure = warning + continue\nclient = JacsClient.quickstart(strict=False)","breadcrumbs":"Framework Adapter Attestation Guide » Strict vs. Permissive Mode","id":"1352","title":"Strict vs. Permissive Mode"},"1353":{"body":"A2A provenance and attestation serve different purposes. This guide explains when and how to combine them.","breadcrumbs":"A2A + Attestation Composition » A2A + Attestation: Using Both Together","id":"1353","title":"A2A + Attestation: Using Both Together"},"1354":{"body":"Use A2A alone when you need to prove who sent what across agent boundaries. Use attestation alone when you need to record why data should be trusted within a single agent's workflow. Use both when: You send data to another agent AND need to explain why it's trustworthy You receive data from another agent AND want to attest that you reviewed it You're building a multi-agent pipeline where each step adds trust evidence","breadcrumbs":"A2A + Attestation Composition » When You Need Both","id":"1354","title":"When You Need Both"},"1355":{"body":"A2A chain-of-custody provides movement lineage. Attestation derivation provides claim lineage. A2A tracks where an artifact has been (Agent A → Agent B → Agent C). Attestation tracks what trust claims have been made about it (scanned → reviewed → approved). They compose naturally: an agent receives a signed artifact via A2A, then creates an attestation recording its analysis of that artifact.","breadcrumbs":"A2A + Attestation Composition » The Composition Rule","id":"1355","title":"The Composition Rule"},"1356":{"body":"Agent A: Signs artifact with A2A provenance ↓ (cross-boundary exchange)\nAgent B: Verifies A2A signature, attests review with evidence ↓ (cross-boundary exchange)\nAgent C: Verifies both the A2A chain and the attestation","breadcrumbs":"A2A + Attestation Composition » Example Workflow","id":"1356","title":"Example Workflow"},"1357":{"body":"from jacs.client import JacsClient # --- Agent A: Sign and send ---\nagent_a = JacsClient.quickstart(name=\"scanner\", domain=\"scanner.example.com\")\na2a_a = agent_a.get_a2a()\nsigned = a2a_a.sign_artifact( {\"scan_result\": \"clean\", \"target\": \"file.bin\"}, \"message\",\n) # --- Agent B: Receive, verify, attest ---\nagent_b = JacsClient.quickstart(name=\"reviewer\", domain=\"reviewer.example.com\")\na2a_b = agent_b.get_a2a() # Verify the A2A artifact from Agent A\nverify_result = a2a_b.verify_wrapped_artifact(signed)\nassert verify_result[\"valid\"] # Now attest WHY the review is trustworthy\nimport hashlib, json\ncontent_hash = hashlib.sha256(json.dumps(signed, sort_keys=True).encode()).hexdigest()\nattestation = agent_b.create_attestation( subject={\"type\": \"artifact\", \"id\": signed[\"jacsId\"], \"digests\": {\"sha256\": content_hash}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.9}],\n) # Send the attestation onward via A2A\nattested_artifact = a2a_b.sign_artifact( {\"attestation_id\": attestation.document_id, \"original_artifact\": signed[\"jacsId\"]}, \"message\", parent_signatures=[signed],\n)","breadcrumbs":"A2A + Attestation Composition » Python","id":"1357","title":"Python"},"1358":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; // --- Agent A: Sign and send ---\nconst agentA = await JacsClient.quickstart({ name: 'scanner', domain: 'scanner.example.com' });\nconst a2aA = agentA.getA2A();\nconst signed = await a2aA.signArtifact( { scanResult: 'clean', target: 'file.bin' }, 'message',\n); // --- Agent B: Receive, verify, attest ---\nconst agentB = await JacsClient.quickstart({ name: 'reviewer', domain: 'reviewer.example.com' });\nconst a2aB = agentB.getA2A(); const verifyResult = await a2aB.verifyWrappedArtifact(signed);\nconsole.assert(verifyResult.valid); // Attest the review\nconst attestation = agentB.createAttestation({ subject: { type: 'artifact', id: signed.jacsId, digests: { sha256: '...' } }, claims: [{ name: 'reviewed', value: true, confidence: 0.9 }],\n});","breadcrumbs":"A2A + Attestation Composition » Node.js","id":"1358","title":"Node.js"},"1359":{"body":"Don't use A2A trust policy to validate attestation evidence. A2A policy (open/verified/strict) controls agent admission, not evidence quality. An allowed agent can still produce bad evidence. Don't use attestation to determine transport trust. Attestation claims don't tell you whether an agent should be allowed to communicate. Use assess_remote_agent() for that. Don't conflate chain-of-custody with derivation chain. A2A parent signatures track artifact movement. Attestation derivation tracks how one claim was produced from another. They are complementary, not interchangeable.","breadcrumbs":"A2A + Attestation Composition » What NOT to Do","id":"1359","title":"What NOT to Do"},"136":{"body":"Scope: Who signed what, and has it been tampered with? APIs: sign_message(), verify(), verify_standalone() This is the foundation. Every JACS document carries a cryptographic signature that proves which agent created it and that the content hasn't changed. Layer A answers: \"Is this signature valid?\" Crypto status values: Verified · SelfSigned · Unverified · Invalid Verified : Signature is valid and signer's key was resolved from a trusted source. SelfSigned : Signature is valid but signer is the same as verifier (no third-party trust). Unverified : Signature could not be checked because the signer's key was not available. Invalid : Signature check failed — the content was tampered with or the wrong key was used.","breadcrumbs":"Trust Layers » Layer A: Identity + Integrity (JACS Core)","id":"136","title":"Layer A: Identity + Integrity (JACS Core)"},"1360":{"body":"Trust Layers — the three-layer model and terminology A2A Interoperability — full A2A reference Attestation Tutorial — creating and verifying attestations Sign vs. Attest — choosing the right API","breadcrumbs":"A2A + Attestation Composition » Further Reading","id":"1360","title":"Further Reading"},"1361":{"body":"JACS emits structured events at every signing, verification, and agreement lifecycle step. This guide shows you how to capture those events and route them to your monitoring stack. For Rust-specific API details (ObservabilityConfig, LogDestination, MetricsConfig, etc.), see the Observability (Rust API) .","breadcrumbs":"Observability & Monitoring Guide » Observability & Monitoring Guide","id":"1361","title":"Observability & Monitoring Guide"},"1362":{"body":"Every event includes an event field for filtering. The table below is derived directly from the source code.","breadcrumbs":"Observability & Monitoring Guide » Structured Event Reference","id":"1362","title":"Structured Event Reference"},"1363":{"body":"Event Level Fields Source document_signed info algorithm, duration_ms crypt/mod.rs batch_signed info algorithm, batch_size, duration_ms crypt/mod.rs signing_procedure_complete info agent_id, algorithm, timestamp, placement_key agent/mod.rs","breadcrumbs":"Observability & Monitoring Guide » Signing Events","id":"1363","title":"Signing Events"},"1364":{"body":"Event Level Fields Source signature_verified info algorithm, valid, duration_ms crypt/mod.rs verification_complete info / error document_id, signer_id, algorithm, timestamp, valid, duration_ms agent/mod.rs verification_complete emits at info when valid=true and at error when valid=false.","breadcrumbs":"Observability & Monitoring Guide » Verification Events","id":"1364","title":"Verification Events"},"1365":{"body":"Event Level Fields Source agreement_created info document_id, agent_count, quorum, has_timeout agent/agreement.rs signature_added info document_id, signer_id, current, total, required agent/agreement.rs quorum_reached info document_id, signatures, required, total agent/agreement.rs agreement_expired warn document_id, deadline agent/agreement.rs","breadcrumbs":"Observability & Monitoring Guide » Agreement Events","id":"1365","title":"Agreement Events"},"1366":{"body":"JACS ships with three optional feature flags for OpenTelemetry backends. By default, only stderr and file logging are available. # Enable all three OTEL pipelines\ncargo build --features otlp-logs,otlp-metrics,otlp-tracing # Or enable just tracing\ncargo build --features otlp-tracing Feature What it adds otlp-logs OTLP log export (opentelemetry, opentelemetry-otlp, opentelemetry-appender-tracing, tokio) otlp-metrics OTLP metrics export (opentelemetry, opentelemetry-otlp, opentelemetry_sdk, tokio) otlp-tracing Distributed tracing (opentelemetry, opentelemetry-otlp, tracing-opentelemetry, tokio) Convenience helpers for automatic counter/gauge recording for sign and verify operations are always available without any feature flag.","breadcrumbs":"Observability & Monitoring Guide » Enabling OTEL Export","id":"1366","title":"Enabling OTEL Export"},"1367":{"body":"Route JACS events through an OpenTelemetry Collector. This configuration receives OTLP over HTTP, batches events, and exports to common backends. # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: timeout: 5s send_batch_size: 512 filter/jacs: logs: include: match_type: regexp record_attributes: - key: event value: \"document_signed|signature_verified|verification_complete|agreement_.*|batch_signed|signing_procedure_complete|quorum_reached|signature_added\" exporters: # Debug: print to collector stdout debug: verbosity: detailed # Datadog datadog: api: key: \"${DD_API_KEY}\" site: datadoghq.com # Splunk HEC splunkhec: token: \"${SPLUNK_HEC_TOKEN}\" endpoint: \"https://splunk-hec:8088/services/collector\" source: \"jacs\" sourcetype: \"jacs:events\" # Generic OTLP (Grafana Cloud, Honeycomb, etc.) otlphttp: endpoint: \"${OTLP_ENDPOINT}\" headers: Authorization: \"Bearer ${OTLP_API_KEY}\" service: pipelines: logs: receivers: [otlp] processors: [batch, filter/jacs] exporters: [debug] # Replace with your exporter metrics: receivers: [otlp] processors: [batch] exporters: [debug] traces: receivers: [otlp] processors: [batch] exporters: [debug]","breadcrumbs":"Observability & Monitoring Guide » OTEL Collector Configuration","id":"1367","title":"OTEL Collector Configuration"},"1368":{"body":"In jacs.config.json: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"my-jacs-service\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n} Or via environment variables (useful in containers): export OTEL_EXPORTER_OTLP_ENDPOINT=\"http://collector:4318\"\nexport OTEL_SERVICE_NAME=\"jacs-production\"\nexport OTEL_RESOURCE_ATTRIBUTES=\"deployment.environment=production\"","breadcrumbs":"Observability & Monitoring Guide » Pointing JACS at the Collector","id":"1368","title":"Pointing JACS at the Collector"},"1369":{"body":"Deploy the OTEL Collector with the datadog exporter (see config above). Set DD_API_KEY in the collector's environment. In Datadog, JACS events appear under Logs > Search with source:opentelemetry. Create a monitor on event:verification_complete AND valid:false to alert on verification failures. Alternatively, use the Datadog Agent's built-in OTLP receiver: # datadog.yaml\notlp_config: receiver: protocols: http: endpoint: 0.0.0.0:4318","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Datadog","id":"1369","title":"Feeding Events to Datadog"},"137":{"body":"Scope: Is this agent allowed to communicate with me? APIs: sign_artifact(), verify_wrapped_artifact(), assess_remote_agent(), discover_agent() Layer B handles cross-boundary exchange between agents using the A2A protocol. It adds trust policy on top of Layer A's cryptographic status. Layer B answers: \"Should I accept artifacts from this agent?\" Policy status values: allowed · blocked · not_assessed Trust policies (open, verified, strict) control admission: Policy Requirement open Accept all agents verified Agent must have the urn:jacs:provenance-v1 extension strict Agent must be in the local trust store See A2A Interoperability for full details.","breadcrumbs":"Trust Layers » Layer B: Exchange + Discovery (A2A Integration)","id":"137","title":"Layer B: Exchange + Discovery (A2A Integration)"},"1370":{"body":"Deploy the OTEL Collector with the splunkhec exporter. Set SPLUNK_HEC_TOKEN in the collector's environment. Events arrive in Splunk with sourcetype=jacs:events. Search: sourcetype=\"jacs:events\" event=\"verification_complete\" valid=false","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Splunk","id":"1370","title":"Feeding Events to Splunk"},"1371":{"body":"Agreement events give you a complete lifecycle view: creation, each signature, quorum, and expiry. Here are practical queries.","breadcrumbs":"Observability & Monitoring Guide » Agreement Monitoring","id":"1371","title":"Agreement Monitoring"},"1372":{"body":"Filter for agreement_created events where has_timeout=true, then correlate with quorum_reached. Any agreement_created without a matching quorum_reached within the timeout window is at risk.","breadcrumbs":"Observability & Monitoring Guide » Agreements Approaching Timeout","id":"1372","title":"Agreements Approaching Timeout"},"1373":{"body":"event=\"signature_added\" | stats max(current) as sigs, max(required) as needed by document_id\n| where sigs < needed","breadcrumbs":"Observability & Monitoring Guide » Failed Quorum Detection","id":"1373","title":"Failed Quorum Detection"},"1374":{"body":"Track signature_added events over time to see how quickly agents sign after agreement creation: event=\"signature_added\" | timechart count by document_id","breadcrumbs":"Observability & Monitoring Guide » Signature Velocity","id":"1374","title":"Signature Velocity"},"1375":{"body":"The agreement_expired event (level warn) fires when an agent attempts to sign or verify an expired agreement. Alert on this directly: event=\"agreement_expired\" | alert","breadcrumbs":"Observability & Monitoring Guide » Expiry Alerts","id":"1375","title":"Expiry Alerts"},"1376":{"body":"Both document_signed and signature_verified include duration_ms. Use these to track signing and verification performance: event=\"document_signed\" | stats avg(duration_ms) as avg_sign_ms, p99(duration_ms) as p99_sign_ms by algorithm\nevent=\"signature_verified\" | stats avg(duration_ms) as avg_verify_ms, p99(duration_ms) as p99_verify_ms by algorithm Post-quantum algorithms (pq2025, pq-dilithium) will show higher latency than ring-Ed25519. Use these metrics to decide whether the security/performance tradeoff is acceptable for your workload.","breadcrumbs":"Observability & Monitoring Guide » Latency Tracking","id":"1376","title":"Latency Tracking"},"1377":{"body":"Observability (Rust API) -- Full API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig Algorithm Selection Guide -- Latency implications of algorithm choice Failure Modes -- What events to expect when things go wrong","breadcrumbs":"Observability & Monitoring Guide » Next Steps","id":"1377","title":"Next Steps"},"1378":{"body":"JACS provides a detached-signature model for email. Your agent signs a raw RFC 5322 .eml file and the result is the same email with a jacs-signature.json MIME attachment. The recipient extracts that attachment, verifies the cryptographic signature, and compares content hashes to detect tampering. There are only two functions you need: Action Function What you supply What you get back Sign jacs::email::sign_email() raw .eml bytes + your EmailSigner .eml bytes with jacs-signature.json Verify jacs::email::verify_email() signed .eml bytes + sender's public key + verifier ContentVerificationResult (pass/fail per field)","breadcrumbs":"Email Signing & Verification » Email Signing and Verification","id":"1378","title":"Email Signing and Verification"},"1379":{"body":"use jacs::email::{sign_email, EmailSigner}; // 1. Load raw email bytes (RFC 5322 format)\nlet raw_eml = std::fs::read(\"outgoing.eml\")?; // 2. Sign — your agent implements EmailSigner (see below)\nlet signed_eml = sign_email(&raw_eml, &my_agent)?; // 3. Send signed_eml — it is a valid .eml with the JACS attachment\nstd::fs::write(\"outgoing_signed.eml\", &signed_eml)?;","breadcrumbs":"Email Signing & Verification » Signing an email","id":"1379","title":"Signing an email"},"138":{"body":"Scope: Why should this data be trusted? APIs: create_attestation(), verify_attestation(), lift_to_attestation(), export_attestation_dsse() Layer C records the reasoning behind trust: claims, evidence, derivation chains, and assurance levels. Layer C answers: \"What evidence supports this data?\" Attestation status values: local_valid · full_valid local_valid : Signature and hash are correct; claims are structurally valid. full_valid : All of the above, plus evidence digests verified and derivation chain intact. See What Is an Attestation? for full details.","breadcrumbs":"Trust Layers » Layer C: Trust Context (Attestation)","id":"138","title":"Layer C: Trust Context (Attestation)"},"1380":{"body":"Your agent must implement four methods: pub trait EmailSigner { /// Sign raw bytes. Return the signature bytes. fn sign_bytes(&self, data: &[u8]) -> Result, Box>; /// Your agent's JACS ID (e.g. \"abc123:v1\"). fn jacs_id(&self) -> &str; /// The key identifier used for signing. fn key_id(&self) -> &str; /// The signing algorithm name. This comes from your JACS agent's /// key configuration — never hardcode it. fn algorithm(&self) -> &str;\n} The algorithm value (e.g. \"ed25519\", \"rsa-pss\", \"pq2025\") is read from your JACS agent's key metadata at runtime. sign_email records it in the jacs-signature.json document so the verifier knows which algorithm to use.","breadcrumbs":"Email Signing & Verification » The EmailSigner trait","id":"1380","title":"The EmailSigner trait"},"1381":{"body":"Parses and canonicalizes the email headers and body Computes SHA-256 hashes for each header, body part, and attachment Builds the JACS email signature payload Canonicalizes the payload via RFC 8785 (JCS) Calls your sign_bytes() to produce the cryptographic signature Attaches the result as jacs-signature.json You do not need to know any of this to use it — it is a single function call.","breadcrumbs":"Email Signing & Verification » What sign_email does internally","id":"1381","title":"What sign_email does internally"},"1382":{"body":"If the email already has a jacs-signature.json (it was previously signed by another agent), sign_email automatically: Renames the existing signature to jacs-signature-0.json (or -1, -2, ...) Computes a parent_signature_hash linking to the previous signature Signs the email with a new jacs-signature.json This builds a verifiable forwarding chain. No extra code needed.","breadcrumbs":"Email Signing & Verification » Forwarding (re-signing)","id":"1382","title":"Forwarding (re-signing)"},"1383":{"body":"","breadcrumbs":"Email Signing & Verification » Verifying an email","id":"1383","title":"Verifying an email"},"1384":{"body":"use jacs::email::verify_email;\nuse jacs::simple::SimpleAgent; let signed_eml = std::fs::read(\"incoming_signed.eml\")?;\nlet sender_public_key: Vec = /* fetch from HAI registry or local store */; // Any agent can verify — the sender's public key is passed explicitly\nlet (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?;\nlet result = verify_email(&signed_eml, &agent, &sender_public_key)?; if result.valid { println!(\"Email is authentic and unmodified\");\n} else { // Inspect which fields failed for field in &result.field_results { println!(\"{}: {:?}\", field.field, field.status); }\n} verify_email does everything in one call: Extracts jacs-signature.json from the email Removes it (the signature covers the email without itself) Verifies the JACS document signature against the sender's public key Compares every hash in the JACS document against the actual email content Returns per-field results","breadcrumbs":"Email Signing & Verification » One-call API (recommended)","id":"1384","title":"One-call API (recommended)"},"1385":{"body":"If you need to inspect the JACS document metadata (issuer, timestamps) before doing the content comparison: use jacs::email::{verify_email_document, verify_email_content};\nuse jacs::simple::SimpleAgent; let (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?; // Step 1: Verify the cryptographic signature — returns the trusted JACS document\nlet (doc, parts) = verify_email_document(&signed_eml, &agent, &sender_public_key)?; // Inspect the document\nprintln!(\"Signed by: {}\", doc.metadata.issuer);\nprintln!(\"Created at: {}\", doc.metadata.created_at); // Step 2: Compare content hashes\nlet result = verify_email_content(&doc, &parts);\nassert!(result.valid); All cryptographic operations are handled by the JACS agent via SimpleAgent::verify_with_key(). The agent's own key is not used -- the sender's public key is passed explicitly.","breadcrumbs":"Email Signing & Verification » Two-step API (when you need the JACS document)","id":"1385","title":"Two-step API (when you need the JACS document)"},"1386":{"body":"The ContentVerificationResult contains a field_results vector with one entry per field: Status Meaning Pass Hash matches — field is authentic Modified Hash mismatch but case-insensitive email address match (address headers only) Fail Content does not match the signed hash Unverifiable Field absent or not verifiable (e.g. Message-ID may change in transit) Fields checked: from, to, cc, subject, date, message_id, in_reply_to, references, body_plain, body_html, and all attachments.","breadcrumbs":"Email Signing & Verification » Field-level results","id":"1386","title":"Field-level results"},"1387":{"body":"The jacs-signature.json attachment has this structure: { \"version\": \"1.0\", \"document_type\": \"email_signature\", \"payload\": { \"headers\": { \"from\": { \"value\": \"agent@example.com\", \"hash\": \"sha256:...\" }, \"to\": { \"value\": \"recipient@example.com\", \"hash\": \"sha256:...\" }, \"subject\": { \"value\": \"Hello\", \"hash\": \"sha256:...\" }, \"date\": { \"value\": \"Fri, 28 Feb 2026 12:00:00 +0000\", \"hash\": \"sha256:...\" }, \"message_id\": { \"value\": \"\", \"hash\": \"sha256:...\" } }, \"body_plain\": { \"content_hash\": \"sha256:...\" }, \"body_html\": null, \"attachments\": [ { \"filename\": \"report.pdf\", \"content_hash\": \"sha256:...\" } ], \"parent_signature_hash\": null }, \"metadata\": { \"issuer\": \"agent-jacs-id:v1\", \"document_id\": \"uuid\", \"created_at\": \"2026-02-28T12:00:00Z\", \"hash\": \"sha256:...\" }, \"signature\": { \"key_id\": \"agent-key-id\", \"algorithm\": \"ed25519\", \"signature\": \"base64...\", \"signed_at\": \"2026-02-28T12:00:00Z\" }\n} metadata.hash is the SHA-256 of the RFC 8785 canonical JSON of payload. signature.signature is the cryptographic signature over that same canonical JSON. The algorithm is always read from the agent — never hardcoded.","breadcrumbs":"Email Signing & Verification » The JACS signature document","id":"1387","title":"The JACS signature document"},"1388":{"body":"All items are re-exported from jacs::email: // Signing\njacs::email::sign_email(raw_email: &[u8], signer: &dyn EmailSigner) -> Result, EmailError>\njacs::email::EmailSigner // trait your agent implements // Verification\njacs::email::verify_email(raw, &agent, pubkey) // one-call: crypto + content check\njacs::email::verify_email_document(raw, &agent, pk) // step 1: crypto only\njacs::email::verify_email_content(&doc, &parts) // step 2: content hash comparison\njacs::email::normalize_algorithm(...) // algorithm name normalization // Types\njacs::email::ContentVerificationResult // overall result with field_results\njacs::email::FieldResult // per-field status\njacs::email::FieldStatus // Pass | Modified | Fail | Unverifiable\njacs::email::JacsEmailSignatureDocument // the full signature document\njacs::email::EmailError // error type // Attachment helpers (for advanced use)\njacs::email::get_jacs_attachment(...) // extract jacs-signature.json bytes\njacs::email::remove_jacs_attachment(...) // strip jacs-signature.json from email\njacs::email::add_jacs_attachment(...) // inject jacs-signature.json into email","breadcrumbs":"Email Signing & Verification » Public API summary","id":"1388","title":"Public API summary"},"1389":{"body":"JACS uses a buffer-then-sign pattern for streaming outputs. Token streams from LLMs are accumulated in memory and signed once the stream completes. This is the correct approach for LLM outputs because: LLM responses are small. A typical response is under 100KB of text. Buffering this costs nothing. Signatures cover the complete output. A partial signature over incomplete text is useless for verification. Framework adapters handle this automatically. If you use a JACS adapter, streaming signing just works.","breadcrumbs":"Streaming Signing » Streaming Signing","id":"1389","title":"Streaming Signing"},"139":{"body":"Term Layer Meaning Crypto status A Outcome of signature verification: Verified, SelfSigned, Unverified, Invalid Policy status B Outcome of trust policy check: allowed, blocked, not_assessed Attestation status C Outcome of attestation verification: local_valid, full_valid Verified A Signature is valid and signer key was resolved SelfSigned A Signature is valid but signer is the verifier Unverified A Key not available — cannot check signature Invalid A Signature check failed Allowed B Agent passes the configured trust policy Blocked B Agent does not pass the trust policy Not assessed B No agent card provided — trust not evaluated","breadcrumbs":"Trust Layers » Terminology Glossary","id":"139","title":"Terminology Glossary"},"1390":{"body":"","breadcrumbs":"Streaming Signing » How It Works by Framework","id":"1390","title":"How It Works by Framework"},"1391":{"body":"The wrapStream middleware accumulates text-delta chunks via a TransformStream. When the stream flushes, it signs the complete text and emits a provider-metadata chunk containing the provenance record. import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { streamText } from 'ai'; const model = withProvenance(openai('gpt-4o'), { client });\nconst result = await streamText({ model, prompt: 'Explain trust.' }); for await (const chunk of result.textStream) { process.stdout.write(chunk); // stream to user in real time\n}\n// provenance is available after stream completes","breadcrumbs":"Streaming Signing » Vercel AI SDK (streamText)","id":"1391","title":"Vercel AI SDK (streamText)"},"1392":{"body":"LangChain tools execute synchronously (or await async results) before returning to the model. JACS signs each tool result individually via wrap_tool_call or signed_tool. No special streaming handling is needed because the signing happens at the tool output boundary, not the token stream. from jacs.adapters.langchain import jacs_signing_middleware agent = create_agent( model=\"openai:gpt-4o\", tools=tools, middleware=[jacs_signing_middleware(client=jacs_client)],\n)\n# Tool results are auto-signed before the model sees them","breadcrumbs":"Streaming Signing » LangChain / LangGraph","id":"1392","title":"LangChain / LangGraph"},"1393":{"body":"HTTP middleware signs the response body before it is sent. For streaming HTTP responses (SSE, chunked encoding), sign the complete message content before streaming, or sign each event individually. # FastAPI: middleware signs JSON responses automatically\nfrom jacs.adapters.fastapi import JacsMiddleware\napp.add_middleware(JacsMiddleware)","breadcrumbs":"Streaming Signing » Express / Koa / FastAPI","id":"1393","title":"Express / Koa / FastAPI"},"1394":{"body":"If you're calling an LLM API directly without a framework adapter, accumulate the response yourself and sign it when complete: import jacs.simple as jacs jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Accumulate streamed response\nchunks = []\nasync for chunk in llm_stream(\"What is trust?\"): chunks.append(chunk) print(chunk, end=\"\") # stream to user # Sign the complete response\ncomplete_text = \"\".join(chunks)\nsigned = jacs.sign_message({\"response\": complete_text, \"model\": \"gpt-4o\"}) const jacs = require('@hai.ai/jacs/simple');\nawait jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com' }); const chunks = [];\nfor await (const chunk of llmStream('What is trust?')) { chunks.push(chunk); process.stdout.write(chunk);\n} const signed = await jacs.signMessage({ response: chunks.join(''), model: 'gpt-4o',\n});","breadcrumbs":"Streaming Signing » Raw LLM APIs (No Framework Adapter)","id":"1394","title":"Raw LLM APIs (No Framework Adapter)"},"1395":{"body":"The buffer-then-sign pattern assumes the full content fits in memory. This is always true for LLM text responses. If you need to sign very large data (multi-GB files, video streams), use sign_file instead, which hashes the file on disk without loading it into memory.","breadcrumbs":"Streaming Signing » When NOT to Buffer","id":"1395","title":"When NOT to Buffer"},"1396":{"body":"Vercel AI SDK Adapter LangChain Adapters Framework Adapters (Node.js)","breadcrumbs":"Streaming Signing » See Also","id":"1396","title":"See Also"},"1397":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1397","title":"CLI Examples"},"1398":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1398","title":"Quick Reference"},"1399":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1399","title":"Getting Started"},"14":{"body":"It does not treat MCP and A2A as the same thing. MCP is for model-to-tool calls inside an application boundary; A2A is for agent discovery and exchange across boundaries. It does not assume every aspirational integration is first-class. If a chapter describes a feature that is not fully supported today, it has been moved out of the main path and tracked separately. It does not require a registry or blockchain to work. JACS identity is key-based and can be used entirely locally.","breadcrumbs":"Introduction » What This Book Does Not Claim","id":"14","title":"What This Book Does Not Claim"},"140":{"body":"\"Which layer do I need?\" I just need to prove data hasn't been tampered with → Layer A. Use sign_message() and verify(). I need to exchange signed data with other agents → Layer B. Use sign_artifact() and A2A discovery. See the A2A Quickstart . I need to record WHY data should be trusted → Layer C. Use create_attestation(). See the Attestation Tutorial . I need both exchange AND trust evidence → Layer B + C. See A2A + Attestation Composition .","breadcrumbs":"Trust Layers » Quick Decision Flow","id":"140","title":"Quick Decision Flow"},"1400":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1400","title":"First-Time Setup"},"1401":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1401","title":"Verify Your Setup"},"1402":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1402","title":"Document Operations"},"1403":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1403","title":"Creating Documents"},"1404":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1404","title":"Verifying Documents"},"1405":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1405","title":"Updating Documents"},"1406":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1406","title":"Extracting Embedded Content"},"1407":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1407","title":"Agreement Workflows"},"1408":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1408","title":"Creating an Agreement"},"1409":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1409","title":"Signing an Agreement"},"141":{"body":"\"Unverified\" does not mean \"Invalid.\" Unverified means the signer's key wasn't available. Invalid means the signature check actively failed. These have very different security implications. A2A trust policy is not attestation verification. A2A policy (Layer B) answers \"should I talk to this agent?\" Attestation (Layer C) answers \"why should I trust this data?\" They compose but are not interchangeable. \"Trusted\" is not the same as \"Verified.\" In JACS, \"trusted\" refers to trust store membership (Layer B). \"Verified\" refers to cryptographic signature validation (Layer A).","breadcrumbs":"Trust Layers » Common Misconceptions","id":"141","title":"Common Misconceptions"},"1410":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1410","title":"Complete Agreement Workflow"},"1411":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1411","title":"Agent Operations"},"1412":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1412","title":"Creating a Custom Agent"},"1413":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1413","title":"DNS-Based Identity"},"1414":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1414","title":"Agent Verification"},"1415":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1415","title":"Task Management"},"1416":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1416","title":"Creating Tasks"},"1417":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1417","title":"Scripting Examples"},"1418":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1418","title":"Batch Document Processing"},"1419":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1419","title":"Verification Report"},"142":{"body":"JACS includes native bindings (Rust compiled to platform-specific libraries), so deployment depends on pre-built binary availability for your target platform.","breadcrumbs":"Deployment Compatibility » Deployment Compatibility","id":"142","title":"Deployment Compatibility"},"1420":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1420","title":"Watch for New Documents"},"1421":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1421","title":"Environment Configuration"},"1422":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1422","title":"Using Environment Variables"},"1423":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1423","title":"Multiple Configurations"},"1424":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1424","title":"Error Handling"},"1425":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1425","title":"Understanding Exit Codes"},"1426":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1426","title":"Handling Failures"},"1427":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1427","title":"See Also"},"1428":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1428","title":"Node.js Examples"},"1429":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod v0.7.0 uses an async-first API. All NAPI operations return Promises by default; sync variants use a Sync suffix. // Initialize JACS (ES Modules, async)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1429","title":"Setup"},"143":{"body":"Platform Language Notes Linux (x86_64, aarch64) All Primary target macOS (Apple Silicon, Intel) All Full support Windows (x86_64) Rust, Node.js Python wheels may need manual build AWS Lambda Python, Node.js Use Lambda layers for native deps Docker / Kubernetes All Standard containerization Vercel (Node.js runtime) Node.js Via serverless functions","breadcrumbs":"Deployment Compatibility » Supported Platforms","id":"143","title":"Supported Platforms"},"1430":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1430","title":"Basic Document Operations"},"1431":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1431","title":"Creating and Signing Documents"},"1432":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1432","title":"Verifying Documents"},"1433":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1433","title":"Updating Documents"},"1434":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1434","title":"HTTP Server with Express"},"1435":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1435","title":"Complete Express Server"},"1436":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1436","title":"HTTP Client"},"1437":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1437","title":"MCP Integration"},"1438":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-server', domain: 'mcp.local', }); const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, client, \"server\" ); const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1438","title":"MCP Server"},"1439":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-client', domain: 'mcp.local', }); const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, client, \"client\" ); const mcpClient = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await mcpClient.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await mcpClient.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await mcpClient.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await mcpClient.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await mcpClient.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1439","title":"MCP Client"},"144":{"body":"Platform Why Workaround Cloudflare Workers No native module support (WASM-only) Use a proxy service Deno Deploy No native Node.js addons Use Deno with --allow-ffi locally Bun Native builds may fail Use Node.js runtime instead Browser / WASM Post-quantum crypto not available in WASM Planned for a future release","breadcrumbs":"Deployment Compatibility » Not Yet Supported","id":"144","title":"Not Yet Supported"},"1440":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1440","title":"Agreements"},"1441":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1441","title":"Creating Multi-Party Agreements"},"1442":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1442","title":"Signing Agreements"},"1443":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1443","title":"Checking Agreement Status"},"1444":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1444","title":"Document Store"},"1445":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1445","title":"Simple File-Based Store"},"1446":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1446","title":"Error Handling"},"1447":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1447","title":"Robust Error Handling Pattern"},"1448":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1448","title":"Testing"},"1449":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1449","title":"Jest Test Setup"},"145":{"body":"Language Minimum Version Rust 1.93+ (edition 2024) Python 3.10+ Node.js 18+ (LTS recommended)","breadcrumbs":"Deployment Compatibility » Version Requirements","id":"145","title":"Version Requirements"},"1450":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1450","title":"See Also"},"1451":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1451","title":"Python Examples"},"1452":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1452","title":"Setup"},"1453":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1453","title":"Basic Document Operations"},"1454":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1454","title":"Creating and Signing Documents"},"1455":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1455","title":"Verifying Documents"},"1456":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1456","title":"Updating Documents"},"1457":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1457","title":"HTTP Server with FastAPI"},"1458":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1458","title":"Complete FastAPI Server"},"1459":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1459","title":"HTTP Client"},"146":{"body":"FROM python:3.12-slim\nRUN pip install jacs\nCOPY . /app\nWORKDIR /app\nRUN python -c \"import jacs.simple as j; j.quickstart(name='docker-agent', domain='docker.local')\"\nCMD [\"python\", \"main.py\"]","breadcrumbs":"Deployment Compatibility » Docker Example","id":"146","title":"Docker Example"},"1460":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1460","title":"MCP Integration"},"1461":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1461","title":"FastMCP Server with JACS"},"1462":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1462","title":"MCP Client with JACS"},"1463":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1463","title":"Agreements"},"1464":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1464","title":"Creating Multi-Party Agreements"},"1465":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1465","title":"Signing Agreements"},"1466":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1466","title":"Checking Agreement Status"},"1467":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1467","title":"Document Store"},"1468":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1468","title":"Simple File-Based Store"},"1469":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1469","title":"Batch Processing"},"147":{"body":"For AWS Lambda, include the JACS native library in a Lambda layer or bundle it in your deployment package. Set JACS_PRIVATE_KEY_PASSWORD as a Lambda environment variable (use AWS Secrets Manager for production). Headless environments (Docker, Lambda, CI): Set JACS_KEYCHAIN_BACKEND=disabled to skip OS keychain lookups, which are not available in containers or serverless runtimes. Use JACS_PRIVATE_KEY_PASSWORD or JACS_PASSWORD_FILE instead.","breadcrumbs":"Deployment Compatibility » Lambda Deployment","id":"147","title":"Lambda Deployment"},"1470":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1470","title":"Batch Document Creator"},"1471":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1471","title":"Testing"},"1472":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1472","title":"Pytest Setup"},"1473":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1473","title":"Error Handling"},"1474":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1474","title":"Robust Error Handling Pattern"},"1475":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1475","title":"See Also"},"1476":{"body":"This page is now a curated index of examples that still line up with the current APIs. The old monolithic example chapter mixed outdated agent APIs with supported workflows.","breadcrumbs":"Integration Examples » Integration Examples","id":"1476","title":"Integration Examples"},"1477":{"body":"jacs-mcp/README.md Best starting point for the full Rust MCP server jacspy/examples/mcp/server.py Python FastMCP server wrapped with JACSMCPServer jacspy/examples/mcp/client.py Python FastMCP client wrapped with JACSMCPClient jacsnpm/examples/mcp.stdio.server.js Node stdio server with createJACSTransportProxy() jacsnpm/examples/mcp.stdio.client.js Node stdio client with signed transport","breadcrumbs":"Integration Examples » MCP","id":"1477","title":"MCP"},"1478":{"body":"jacspy/examples/langchain/signing_callback.py Best current Python example for signed LangGraph tool execution jacsnpm/examples/langchain/basic-agent.ts Node LangChain.js agent using JACS tools jacsnpm/examples/langchain/signing-callback.ts Node auto-signing pattern for LangGraph-style flows","breadcrumbs":"Integration Examples » LangChain / LangGraph","id":"1478","title":"LangChain / LangGraph"},"1479":{"body":"jacspy/tests/test_a2a_server.py Best current Python reference for generated .well-known routes jacsnpm/src/a2a-server.js Node Express A2A discovery middleware jacsnpm/examples/a2a-agent-example.js Node A2A card and artifact demo jacs/tests/a2a_cross_language_tests.rs Cross-language behavior reference for signing and verification","breadcrumbs":"Integration Examples » A2A","id":"1479","title":"A2A"},"148":{"body":"If no pre-built binary exists for your platform: # Python\npip install maturin\ncd jacspy && maturin develop --release # Node.js\ncd jacsnpm && npm run build Requires Rust 1.93+ toolchain installed via rustup .","breadcrumbs":"Deployment Compatibility » Building from Source","id":"148","title":"Building from Source"},"1480":{"body":"jacspy/examples/http/server.py FastAPI app with JacsMiddleware jacspy/examples/http/client.py Python client consuming signed responses jacsnpm/examples/expressmiddleware.js Express middleware example","breadcrumbs":"Integration Examples » HTTP / App Middleware","id":"1480","title":"HTTP / App Middleware"},"1481":{"body":"If an example and a higher-level prose page disagree, trust: the current binding README the current tests the example that imports the API you intend to use today","breadcrumbs":"Integration Examples » Rule Of Thumb","id":"1481","title":"Rule Of Thumb"},"1482":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands. For a workflow-oriented tutorial, see CLI Tutorial . For practical scripting examples, see CLI Examples .","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1482","title":"CLI Command Reference"},"1483":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1483","title":"Global Commands"},"1484":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1484","title":"jacs version"},"1485":{"body":"Create a persistent agent with keys on disk and optionally sign data -- no manual setup needed. If ./jacs.config.json already exists, loads it; otherwise creates a new agent. Agent, keys, and config are saved to ./jacs_data, ./jacs_keys, and ./jacs.config.json. Password is required: set JACS_PRIVATE_KEY_PASSWORD (recommended) or JACS_PASSWORD_FILE (CLI file bootstrap). Set exactly one explicit source; if both are set, CLI exits with an error. This is the fastest way to start using JACS. # Print agent info (ID, algorithm)\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json # Use a specific algorithm\njacs quickstart --name my-agent --domain my-agent.example.com --algorithm ring-Ed25519 Options: --name - Agent name used for first-time quickstart creation (required) --domain - Agent domain used for DNS/public-key verification workflows (required) --algorithm - Signing algorithm (default: pq2025). Also: ring-Ed25519, RSA-PSS --sign - Sign input (from stdin or --file) instead of printing info --file - Read JSON input from file instead of stdin (requires --sign)","breadcrumbs":"CLI Command Reference » jacs quickstart","id":"1485","title":"jacs quickstart"},"1486":{"body":"Verify a signed JACS document. No agent or config file required -- the CLI creates an ephemeral verifier if needed. # Verify a local file\njacs verify signed-document.json # JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document\njacs verify --remote https://example.com/signed-doc.json # Specify a directory of public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Options: - Path to the signed JACS JSON file (positional, required unless --remote is used) --remote - Fetch document from URL before verifying --json - Output result as JSON ({\"valid\": true, \"signerId\": \"...\", \"timestamp\": \"...\"}) --key-dir - Directory containing public keys for verification Exit codes: 0 for valid, 1 for invalid or error. Output (text): Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z Output (JSON): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} If ./jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise it creates a temporary ephemeral verifier internally. See the Verification Guide for Python, Node.js, and DNS verification workflows.","breadcrumbs":"CLI Command Reference » jacs verify","id":"1486","title":"jacs verify"},"1487":{"body":"Manage private key passwords in the OS keychain (macOS Keychain or Linux Secret Service via D-Bus). This allows JACS to retrieve your private key password without environment variables or password files. Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments. # Store a password interactively (prompts for input)\njacs keychain set # Store a password non-interactively (for scripting)\njacs keychain set --password \"YourStr0ng!Pass#Here\" # Retrieve the stored password (prints to stdout, for piping)\nexport JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get) # Remove the stored password\njacs keychain delete # Check keychain availability and whether a password is stored\njacs keychain status Subcommand Description jacs keychain set Store a password (prompts interactively) jacs keychain set --password Store a specific password (for scripting) jacs keychain get Print stored password to stdout jacs keychain delete Remove stored password from OS keychain jacs keychain status Check keychain availability and storage state Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable. Password resolution order: When JACS needs the private key password, it checks sources in this order: JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain (if keychain feature is enabled and not disabled)","breadcrumbs":"CLI Command Reference » jacs keychain","id":"1487","title":"jacs keychain"},"1488":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1488","title":"jacs init"},"1489":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1489","title":"jacs help"},"149":{"body":"Common issues and solutions when installing or using JACS.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"149","title":"Troubleshooting"},"1490":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1490","title":"Configuration Commands"},"1491":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1491","title":"jacs config"},"1492":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1492","title":"Agent Commands"},"1493":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1493","title":"jacs agent"},"1494":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1494","title":"Task Commands"},"1495":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1495","title":"jacs task"},"1496":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1496","title":"Document Commands"},"1497":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f - Path to input file. Must be JSON format -o - Output filename for the created document -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema - Path to JSON schema file to use for validation --attach - Path to file or directory for file attachments -e, --embed - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1497","title":"jacs document create"},"1498":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a - Path to the agent file -f - Path to original document file -n - Path to new/modified document file -o - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema - Path to JSON schema file for validation --attach - Path to file or directory for additional attachments -e, --embed - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1498","title":"jacs document update"},"1499":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a - Path to the agent file -f - Path to input file. Must be JSON format -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1499","title":"jacs document verify"},"15":{"body":"GitHub Repository Issue Tracker","breadcrumbs":"Introduction » Community","id":"15","title":"Community"},"150":{"body":"","breadcrumbs":"Troubleshooting » Installation Issues","id":"150","title":"Installation Issues"},"1500":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a - Path to the agent file -f - Path to input file containing embedded files -d - Path to directory of files to process -s, --schema - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1500","title":"jacs document extract"},"1501":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1501","title":"Agreement Commands"},"1502":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1502","title":"Common Patterns"},"1503":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1503","title":"Basic Document Lifecycle"},"1504":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1504","title":"Working with Attachments"},"1505":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1505","title":"Schema Validation Workflow"},"1506":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1506","title":"Global Options"},"1507":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1507","title":"Exit Codes"},"1508":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1508","title":"Environment Variables"},"1509":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1509","title":"File Formats"},"151":{"body":"Check your Python version (3.10+ required). If no pre-built wheel exists for your platform, install the Rust toolchain and build from source: pip install maturin\ncd jacspy && maturin develop --release","breadcrumbs":"Troubleshooting » pip install fails","id":"151","title":"pip install fails"},"1510":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1510","title":"Input Files"},"1511":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1511","title":"Output Files"},"1512":{"body":"This is the comprehensive configuration guide covering zero-config quickstart, storage backends, observability, and environment variables. For the raw schema field list, see Config File Schema .","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1512","title":"Configuration Reference"},"1513":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1513","title":"Overview"},"1514":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (local key cache by publicKeyHash), dns (DNS TXT fingerprint validation), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that yields verifiable key material is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1514","title":"Key resolution for verifiers"},"1515":{"body":"If you just want to sign and verify without manual config setup, use quickstart(name, domain, ...): import jacs.simple as jacs\ninfo = jacs.quickstart(name=\"config-agent\", domain=\"config.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path) const jacs = require('@hai.ai/jacs/simple');\nconst info = await jacs.quickstart({ name: 'config-agent', domain: 'config.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath); jacs quickstart --name config-agent --domain config.example.com quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Configuration Reference » Zero-Config Path","id":"1515","title":"Zero-Config Path"},"1516":{"body":"For persistent agents, a config file needs only two fields (plus $schema): { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"pq2025\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Configuration Reference » Minimal Configuration","id":"1516","title":"Minimal Configuration"},"1517":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"pq2025\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1517","title":"Complete Example Configuration"},"1518":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1518","title":"Observability Configuration"},"1519":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1519","title":"Logs Configuration"},"152":{"body":"Pre-built binaries are available for Linux/macOS/Windows x64 and ARM64 macOS. If no pre-built binary matches your platform, you need the Rust toolchain installed so the native addon can compile during npm install.","breadcrumbs":"Troubleshooting » npm install fails","id":"152","title":"npm install fails"},"1520":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1520","title":"Metrics Configuration"},"1521":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1521","title":"Tracing Configuration"},"1522":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1522","title":"Authentication & Headers"},"1523":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1523","title":"Common Patterns"},"1524":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1524","title":"Development Configuration"},"1525":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1525","title":"Production Configuration"},"1526":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1526","title":"File-based Configuration"},"1527":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1527","title":"Environment Variable Integration"},"1528":{"body":"Only one environment variable is truly required (unless using the OS keychain): JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations, unless the password is stored in the OS keychain)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1528","title":"Required Environment Variable"},"1529":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: pq2025) jacs_default_storage - Storage backend (default: fs) jacs_keychain_backend - OS keychain backend for password storage (default: \"auto\"). See below. jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1529","title":"Configuration-Based Settings"},"153":{"body":"The default wheels and binaries target glibc. On Alpine or other musl-based systems, build from source with the Rust toolchain, or use a Debian-based container image instead.","breadcrumbs":"Troubleshooting » Alpine Linux / musl libc","id":"153","title":"Alpine Linux / musl libc"},"1530":{"body":"The jacs_keychain_backend field controls whether JACS looks up the private key password from the OS credential store (macOS Keychain or Linux Secret Service): { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect the platform default (macOS Keychain or Linux Secret Service). This is the default when the field is omitted. \"macos-keychain\" Explicitly use the macOS Keychain \"linux-secret-service\" Explicitly use the Linux D-Bus Secret Service (GNOME Keyring, KDE Wallet, KeePassXC) \"disabled\" Never consult the OS keychain. Recommended for CI, headless servers, and containers. You can also override via environment variable: export JACS_KEYCHAIN_BACKEND=disabled # skip keychain in CI When not set to \"disabled\", password resolution checks: env var first, then OS keychain, then error. See the CLI keychain commands for storing and managing passwords. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » OS Keychain Configuration","id":"1530","title":"OS Keychain Configuration"},"1531":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1531","title":"Storage Configuration"},"1532":{"body":"Backend Value Description Use Case Filesystem \"fs\" Signed JSON documents on local disk Default, development, single-node deployments Local Indexed SQLite \"rusqlite\" Signed documents in SQLite with FTS search Local search, bindings, MCP AWS S3 \"aws\" Amazon S3 object storage Remote object storage Memory \"memory\" In-memory object storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications For local indexed document search in JACS core, use \"rusqlite\". Additional database backends such as PostgreSQL, DuckDB, Redb, and SurrealDB live in separate crates and are not core jacs_default_storage values.","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1532","title":"Available Storage Backends"},"1533":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments Local Indexed SQLite (\"rusqlite\") { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: Built with the default sqlite Cargo feature Database path: /jacs_documents.sqlite3 Best for: Local full-text search, MCP/binding document operations, single-machine deployments that want indexed reads AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1533","title":"Backend-Specific Configuration"},"1534":{"body":"Filesystem (fs) stores signed documents as JSON files under jacs_data/documents/. Rusqlite (rusqlite) stores signed documents in jacs_data/jacs_documents.sqlite3 and is the indexed DocumentService path used by bindings and MCP. Agent files and keys remain path-based assets under jacs_data/ and jacs_keys/. Observability data (logs, metrics) can use separate storage via observability configuration.","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1534","title":"Storage Behavior"},"1535":{"body":"Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes a signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Configuration Reference » DocumentService Guarantees","id":"1535","title":"DocumentService Guarantees"},"1536":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1536","title":"Configuration Examples"},"1537":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access Rusqlite : Protect the local database file with the same filesystem permissions you use for other signed artifacts Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1537","title":"Security Considerations"},"1538":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1538","title":"Migration Between Storage Backends"},"1539":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1539","title":"Error Codes"},"154":{"body":"","breadcrumbs":"Troubleshooting » Configuration Issues","id":"154","title":"Configuration Issues"},"1540":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1540","title":"CLI Exit Codes"},"1541":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1541","title":"Configuration Errors"},"1542":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1542","title":"Missing Configuration"},"1543":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1543","title":"Invalid Configuration"},"1544":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1544","title":"Key Directory Not Found"},"1545":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1545","title":"Cryptographic Errors"},"1546":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1546","title":"Private Key Not Found"},"1547":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1547","title":"Invalid Key Format"},"1548":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1548","title":"Key Password Required"},"1549":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1549","title":"Algorithm Mismatch"},"155":{"body":"Run jacs quickstart --name my-agent --domain my-agent.example.com to auto-create a config, or copy the example: cp jacs.config.example.json jacs.config.json","breadcrumbs":"Troubleshooting » Config not found","id":"155","title":"Config not found"},"1550":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1550","title":"Signature Errors"},"1551":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1551","title":"Verification Failed"},"1552":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1552","title":"Missing Signature"},"1553":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1553","title":"Invalid Signature Format"},"1554":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1554","title":"Unknown Signing Algorithm"},"1555":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1555","title":"DNS Verification Errors"},"1556":{"body":"Error: strict DNSSEC validation failed for (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1556","title":"DNSSEC Validation Failed"},"1557":{"body":"Error: DNS TXT lookup failed for (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1557","title":"DNS Record Not Found"},"1558":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1558","title":"DNS Required"},"1559":{"body":"Error: DNS lookup timed out for Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1559","title":"DNS Lookup Timeout"},"156":{"body":"Wrong or missing password. Check JACS_PRIVATE_KEY_PASSWORD. For CLI, you may also set JACS_PASSWORD_FILE to a file that contains only the password, or use jacs keychain set to store the password in the OS keychain. Set exactly one explicit source; if both env var and password file are set, CLI fails by design. The OS keychain is only consulted when neither env var nor password file is present.","breadcrumbs":"Troubleshooting » Private key decryption failed","id":"156","title":"Private key decryption failed"},"1560":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1560","title":"Document Errors"},"1561":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1561","title":"Invalid JSON"},"1562":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1562","title":"Schema Validation Failed"},"1563":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1563","title":"Document Not Found"},"1564":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1564","title":"Version Mismatch"},"1565":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1565","title":"Agreement Errors"},"1566":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1566","title":"Agreement Not Found"},"1567":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1567","title":"Already Signed"},"1568":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1568","title":"Not Authorized"},"1569":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1569","title":"Agreement Locked"},"157":{"body":"Set the signingAlgorithm field in your config, or pass it explicitly to quickstart(...) / create(...). Valid values: pq2025, ring-Ed25519, RSA-PSS.","breadcrumbs":"Troubleshooting » Algorithm detection failed","id":"157","title":"Algorithm detection failed"},"1570":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1570","title":"Storage Errors"},"1571":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1571","title":"Storage Backend Error"},"1572":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1572","title":"AWS S3 Error"},"1573":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1573","title":"Connection Error"},"1574":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1574","title":"HTTP/MCP Errors"},"1575":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1575","title":"Request Verification Failed"},"1576":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1576","title":"Response Verification Failed"},"1577":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1577","title":"Middleware Configuration Error"},"1578":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1578","title":"Debugging Tips"},"1579":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1579","title":"Enable Verbose Output"},"158":{"body":"","breadcrumbs":"Troubleshooting » Runtime Issues","id":"158","title":"Runtime Issues"},"1580":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1580","title":"Check Configuration"},"1581":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1581","title":"Verify Agent"},"1582":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1582","title":"Test Signing"},"1583":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1583","title":"See Also"},"1584":{"body":"This reference explains every field in the AttestationVerificationResult returned by verify_attestation() and verify_attestation_full().","breadcrumbs":"Attestation Verification Results » Attestation Verification Results","id":"1584","title":"Attestation Verification Results"},"1585":{"body":"{ \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true }, \"evidence\": [ { \"kind\": \"custom\", \"digest_valid\": true, \"freshness_valid\": true, \"errors\": [] } ], \"chain\": { \"depth\": 1, \"all_links_valid\": true, \"links\": [] }, \"errors\": []\n}","breadcrumbs":"Attestation Verification Results » Result Structure","id":"1585","title":"Result Structure"},"1586":{"body":"Field Type Description valid boolean Overall result. true only if all sub-checks pass. crypto object Cryptographic verification results. evidence array Per-evidence-ref verification results (full tier only). chain object|null Derivation chain verification (full tier only, if derivation exists). errors array Human-readable error messages for any failures.","breadcrumbs":"Attestation Verification Results » Top-Level Fields","id":"1586","title":"Top-Level Fields"},"1587":{"body":"Field Type Description signature_valid boolean The cryptographic signature matches the document content and the signer's public key. hash_valid boolean The jacsSha256 hash matches the canonicalized document content. Common failure scenarios: signature_valid: false -- The document was tampered with after signing, or the wrong public key was used. hash_valid: false -- The document body was modified after the hash was computed.","breadcrumbs":"Attestation Verification Results » crypto Object","id":"1587","title":"crypto Object"},"1588":{"body":"Each entry corresponds to one evidence reference in the attestation's evidence array. Field Type Description kind string Evidence type (a2a, email, jwt, tlsnotary, custom). digest_valid boolean The evidence digest matches the expected value. freshness_valid boolean The collectedAt timestamp is within acceptable bounds. errors array Error messages specific to this evidence item. Common failure scenarios: digest_valid: false -- The evidence content has changed since the attestation was created. freshness_valid: false -- The evidence is too old. Check collectedAt and your freshness policy.","breadcrumbs":"Attestation Verification Results » evidence Array (Full Tier Only)","id":"1588","title":"evidence Array (Full Tier Only)"},"1589":{"body":"Present only when the attestation has a derivation field. Field Type Description depth number Number of links in the derivation chain. all_links_valid boolean Every derivation link verified successfully. links array Per-link verification details. Each link in links: Field Type Description input_digests_valid boolean Input digests match the referenced documents. output_digests_valid boolean Output digests match the transformation result. transform object Transform metadata (name, hash, reproducible).","breadcrumbs":"Attestation Verification Results » chain Object (Full Tier Only)","id":"1589","title":"chain Object (Full Tier Only)"},"159":{"body":"Ensure the data and key directories exist and are writable. By default these are ./jacs_data and ./jacs_keys.","breadcrumbs":"Troubleshooting » Agent creation fails","id":"159","title":"Agent creation fails"},"1590":{"body":"","breadcrumbs":"Attestation Verification Results » Verification Tiers","id":"1590","title":"Verification Tiers"},"1591":{"body":"Checks: crypto.signature_valid + crypto.hash_valid Speed: < 1ms typical Network: None Use for: Real-time validation, hot path","breadcrumbs":"Attestation Verification Results » Local Tier (verify_attestation())","id":"1591","title":"Local Tier (verify_attestation())"},"1592":{"body":"Checks: Everything in local + evidence digests + freshness + derivation chain Speed: < 10ms typical (no network), varies with evidence count Network: Optional (for remote evidence resolution) Use for: Audit trails, compliance, trust decisions","breadcrumbs":"Attestation Verification Results » Full Tier (verify_attestation(full=True))","id":"1592","title":"Full Tier (verify_attestation(full=True))"},"1593":{"body":"","breadcrumbs":"Attestation Verification Results » Troubleshooting","id":"1593","title":"Troubleshooting"},"1594":{"body":"The valid field aggregates all sub-checks. If crypto passes but evidence or chain checks fail, valid will be false. Check the evidence and chain fields for details.","breadcrumbs":"Attestation Verification Results » \"valid is false but crypto shows all true\"","id":"1594","title":"\"valid is false but crypto shows all true\""},"1595":{"body":"If you created the attestation without evidence references, the evidence array will be empty. This is not an error -- it means there are no external proofs to verify.","breadcrumbs":"Attestation Verification Results » \"evidence is empty\"","id":"1595","title":"\"evidence is empty\""},"1596":{"body":"If the attestation has no derivation field, chain will be null. This is normal for standalone attestations that don't reference prior attestations.","breadcrumbs":"Attestation Verification Results » \"chain is null\"","id":"1596","title":"\"chain is null\""},"1597":{"body":"JACS uses JSON Canonicalization Scheme (JCS) for hashing. If you serialize and re-parse the document, ensure the serializer preserves field order and does not add/remove whitespace in a way that changes the canonical form.","breadcrumbs":"Attestation Verification Results » \"signature_valid is false after serialization\"","id":"1597","title":"\"signature_valid is false after serialization\""},"1598":{"body":"The jacs attest command creates and verifies attestation documents from the command line. Attestation extends basic signing with structured claims, evidence references, and derivation chains.","breadcrumbs":"Attestation CLI Reference » CLI Reference: jacs attest","id":"1598","title":"CLI Reference: jacs attest"},"1599":{"body":"Create a signed attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest create","id":"1599","title":"jacs attest create"},"16":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"16","title":"What is JACS?"},"160":{"body":"Ensure the signer's public key is accessible. If verifying a document from another agent, you may need to import their public key or use the trust store.","breadcrumbs":"Troubleshooting » Signature verification fails","id":"160","title":"Signature verification fails"},"1600":{"body":"jacs attest create --claims '' [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1600","title":"Synopsis"},"1601":{"body":"Flag Required Description --claims '' Yes JSON array of claims. Each claim must have name and value fields. --subject-type No Type of subject: agent, artifact, workflow, identity. Default: derived from context. --subject-id No Identifier of the subject being attested. --subject-digest No SHA-256 digest of the subject content. --evidence '' No JSON array of evidence references. --from-document No Lift an existing signed JACS document into an attestation. Overrides subject flags. -o, --output No Write attestation to file instead of stdout.","breadcrumbs":"Attestation CLI Reference » Options","id":"1601","title":"Options"},"1602":{"body":"Create a basic attestation: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123def456...\" \\ --claims '[{\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}]' Attestation with multiple claims: jacs attest create \\ --subject-type agent \\ --subject-id \"agent-abc\" \\ --subject-digest \"sha256hash...\" \\ --claims '[ {\"name\": \"reviewed\", \"value\": true, \"confidence\": 0.95}, {\"name\": \"source\", \"value\": \"internal_db\", \"assuranceLevel\": \"verified\"} ]' Lift an existing signed document to attestation: jacs attest create \\ --from-document mydata.signed.json \\ --claims '[{\"name\": \"approved\", \"value\": true}]' With evidence references: jacs attest create \\ --subject-type artifact \\ --subject-id \"report-456\" \\ --subject-digest \"def789...\" \\ --claims '[{\"name\": \"scanned\", \"value\": true}]' \\ --evidence '[{ \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"} }]' Write to file: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o attestation.json","breadcrumbs":"Attestation CLI Reference » Examples","id":"1602","title":"Examples"},"1603":{"body":"Verify an attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest verify","id":"1603","title":"jacs attest verify"},"1604":{"body":"jacs attest verify [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1604","title":"Synopsis"},"1605":{"body":"Argument Required Description Yes Path to the attestation JSON file to verify.","breadcrumbs":"Attestation CLI Reference » Arguments","id":"1605","title":"Arguments"},"1606":{"body":"Flag Required Description --full No Use full verification (evidence + derivation chain). Default: local verification (crypto + hash only). --json No Output the verification result as JSON. --key-dir No Directory containing public keys for verification. --max-depth No Maximum derivation chain depth. Default: 10.","breadcrumbs":"Attestation CLI Reference » Options","id":"1606","title":"Options"},"1607":{"body":"Basic verification (local tier): jacs attest verify attestation.json Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Full verification: jacs attest verify attestation.json --full Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Evidence: 1 item(s) verified [0] custom: digest OK, freshness OK Chain: not present JSON output (for scripting): jacs attest verify attestation.json --json Output: { \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true, \"signer_id\": \"agent-id-abc123\", \"algorithm\": \"ring-Ed25519\" }, \"evidence\": [], \"chain\": null, \"errors\": []\n} Verify with external keys: jacs attest verify attestation.json --key-dir ./trusted_keys/ Pipe through jq: jacs attest verify attestation.json --json | jq '.crypto'","breadcrumbs":"Attestation CLI Reference » Examples","id":"1607","title":"Examples"},"1608":{"body":"","breadcrumbs":"Attestation CLI Reference » Piping and Scripting Patterns","id":"1608","title":"Piping and Scripting Patterns"},"1609":{"body":"jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o att.json && \\\njacs attest verify att.json --json | jq '.valid'","breadcrumbs":"Attestation CLI Reference » Create and verify in one pipeline","id":"1609","title":"Create and verify in one pipeline"},"161":{"body":"Check the jacs_data_directory path in your config. Documents are stored as JSON files in that directory.","breadcrumbs":"Troubleshooting » Documents not found","id":"161","title":"Documents not found"},"1610":{"body":"#!/bin/bash\nset -e RESULT=$(jacs attest verify \"$1\" --json 2>/dev/null)\nVALID=$(echo \"$RESULT\" | jq -r '.valid') if [ \"$VALID\" = \"true\" ]; then echo \"Attestation is valid\" exit 0\nelse echo \"Attestation is INVALID\" echo \"$RESULT\" | jq '.errors' exit 1\nfi","breadcrumbs":"Attestation CLI Reference » Check validity in a script","id":"1610","title":"Check validity in a script"},"1611":{"body":"for file in attestations/*.json; do echo -n \"$file: \" jacs attest verify \"$file\" --json | jq -r '.valid'\ndone","breadcrumbs":"Attestation CLI Reference » Batch verify multiple attestations","id":"1611","title":"Batch verify multiple attestations"},"1612":{"body":"Code Meaning 0 Success (create: attestation created; verify: attestation valid) 1 Failure (create: error creating attestation; verify: attestation invalid or error)","breadcrumbs":"Attestation CLI Reference » Exit Codes","id":"1612","title":"Exit Codes"},"1613":{"body":"Variable Description JACS_PRIVATE_KEY_PASSWORD Password for the agent's private key JACS_MAX_DERIVATION_DEPTH Override maximum derivation chain depth (default: 10) JACS_DATA_DIRECTORY Directory for JACS data files JACS_KEY_DIRECTORY Directory containing keys JACS_AGENT_ID_AND_VERSION Agent identity for signing","breadcrumbs":"Attestation CLI Reference » Environment Variables","id":"1613","title":"Environment Variables"},"1614":{"body":"Sign vs. Attest Decision Guide Attestation Tutorial Attestation Verification Results CLI Command Reference","breadcrumbs":"Attestation CLI Reference » See Also","id":"1614","title":"See Also"},"1615":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1615","title":"Migration Guide"},"1616":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1616","title":"Version Compatibility"},"1617":{"body":"","breadcrumbs":"Migration Guide » Migrating Node.js from 0.6.x to 0.7.0","id":"1617","title":"Migrating Node.js from 0.6.x to 0.7.0"},"1618":{"body":"In v0.7.0, all NAPI operations return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). Before (v0.6.x): const agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify(content));\nconst isValid = agent.verifyDocument(doc); After (v0.7.0, async -- recommended): const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content));\nconst isValid = await agent.verifyDocument(doc); After (v0.7.0, sync -- for scripts/CLI): const agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));\nconst isValid = agent.verifyDocumentSync(doc);","breadcrumbs":"Migration Guide » Breaking Change: Async-First API","id":"1618","title":"Breaking Change: Async-First API"},"1619":{"body":"v0.6.x v0.7.0 Async (default) v0.7.0 Sync agent.load(path) await agent.load(path) agent.loadSync(path) agent.createDocument(...) await agent.createDocument(...) agent.createDocumentSync(...) agent.verifyDocument(doc) await agent.verifyDocument(doc) agent.verifyDocumentSync(doc) agent.verifyAgent() await agent.verifyAgent() agent.verifyAgentSync() agent.updateAgent(json) await agent.updateAgent(json) agent.updateAgentSync(json) agent.updateDocument(...) await agent.updateDocument(...) agent.updateDocumentSync(...) agent.signString(data) await agent.signString(data) agent.signStringSync(data) agent.createAgreement(...) await agent.createAgreement(...) agent.createAgreementSync(...) agent.signAgreement(...) await agent.signAgreement(...) agent.signAgreementSync(...) agent.checkAgreement(...) await agent.checkAgreement(...) agent.checkAgreementSync(...)","breadcrumbs":"Migration Guide » Method Renaming Summary","id":"1619","title":"Method Renaming Summary"},"162":{"body":"git clone https://github.com/HumanAssisted/JACS.git\ncd JACS # Rust core + CLI\ncargo build --release\ncargo install --path jacs --features cli # Python binding\ncd jacspy && maturin develop --release # Node.js binding\ncd jacsnpm && npm run build Requires Rust 1.93+ (install via rustup ).","breadcrumbs":"Troubleshooting » Building from Source","id":"162","title":"Building from Source"},"1620":{"body":"These methods remain synchronous without a Sync suffix because they use V8-thread-only APIs (Env, JsObject): agent.signRequest(params) -- unchanged agent.verifyResponse(doc) -- unchanged agent.verifyResponseWithAgentId(doc) -- unchanged","breadcrumbs":"Migration Guide » V8-Thread-Only Methods (No Change)","id":"1620","title":"V8-Thread-Only Methods (No Change)"},"1621":{"body":"The @hai.ai/jacs/simple module follows the same pattern: // v0.6.x\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessage({ action: 'approve' }); // v0.7.0 async (recommended)\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = await jacs.signMessage({ action: 'approve' }); // v0.7.0 sync\njacs.quickstartSync({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Migration Guide » Simplified API (Module-Level)","id":"1621","title":"Simplified API (Module-Level)"},"1622":{"body":"These functions do not call NAPI and remain unchanged (no suffix needed): hashString(), createConfig(), getPublicKey(), isLoaded(), exportAgent(), getAgentInfo() getDnsRecord(), getWellKnownJson(), verifyStandalone() Trust store: trustAgent(), listTrustedAgents(), untrustAgent(), isTrusted(), getTrustedAgent()","breadcrumbs":"Migration Guide » Pure Sync Functions (No Change)","id":"1622","title":"Pure Sync Functions (No Change)"},"1623":{"body":"Update dependency: npm install @hai.ai/jacs@0.7.0 Add await to all NAPI method calls, or append Sync to method names Update test assertions to handle Promises (use async/await in test functions) V8-thread-only methods (signRequest, verifyResponse, verifyResponseWithAgentId) need no changes","breadcrumbs":"Migration Guide » Migration Steps","id":"1623","title":"Migration Steps"},"1624":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1624","title":"Migrating from 0.5.1 to 0.5.2"},"1625":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1625","title":"Migration Notes"},"1626":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1626","title":"Deprecated Environment Variables"},"1627":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1627","title":"New Environment Variables"},"1628":{"body":"In v0.9.0, several method names were standardized. The old names remain as aliases for backward compatibility but are deprecated and will be removed in 1.0.0 (minimum 2 minor releases after deprecation).","breadcrumbs":"Migration Guide » Deprecated Method Aliases (0.9.0)","id":"1628","title":"Deprecated Method Aliases (0.9.0)"},"1629":{"body":"Set the JACS_SHOW_DEPRECATIONS=1 environment variable to emit runtime warnings when deprecated methods are called: export JACS_SHOW_DEPRECATIONS=1 This is recommended during development and CI to identify code that needs updating.","breadcrumbs":"Migration Guide » Runtime Deprecation Warnings","id":"1629","title":"Runtime Deprecation Warnings"},"163":{"body":"GitHub Issues -- report bugs and feature requests Quick Start Guide -- step-by-step setup","breadcrumbs":"Troubleshooting » Getting Help","id":"163","title":"Getting Help"},"1630":{"body":"SDK Deprecated Method Canonical Replacement Since Removal Python (binding) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Python (A2A) a2a.wrap_artifact_with_provenance() a2a.sign_artifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifact() agent.signArtifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifactSync() agent.signArtifactSync() 0.9.0 1.0.0 Node.js (A2A) a2a.wrapArtifactWithProvenance() a2a.signArtifact() 0.9.0 1.0.0 Rust (core) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Go SignA2AArtifact() (simple API) Uses sign_artifact internally -- -- All aliases behave identically to their canonical replacements. No behavioral changes are needed when migrating -- only rename the method call.","breadcrumbs":"Migration Guide » Deprecated Alias Table","id":"1630","title":"Deprecated Alias Table"},"1631":{"body":"Python: # Before (deprecated)\nwrapped = agent.wrap_a2a_artifact(artifact_json, \"task\") # After (canonical)\nsigned = agent.sign_artifact(artifact_json, \"task\") Node.js: // Before (deprecated)\nconst wrapped = await agent.wrapA2aArtifact(artifactJson, 'task'); // After (canonical)\nconst signed = await agent.signArtifact(artifactJson, 'task'); Python A2A integration: # Before (deprecated)\nwrapped = a2a.wrap_artifact_with_provenance(artifact, \"task\") # After (canonical)\nsigned = a2a.sign_artifact(artifact, \"task\") Node.js A2A integration: // Before (deprecated)\nconst wrapped = await a2a.wrapArtifactWithProvenance(artifact, 'task'); // After (canonical)\nconst signed = await a2a.signArtifact(artifact, 'task');","breadcrumbs":"Migration Guide » Migration Examples","id":"1631","title":"Migration Examples"},"1632":{"body":"Module-level functions (e.g., jacs.load(), jacs.sign_request() in Python; load(), signRequest() in Node.js) were deprecated in earlier releases. Use JacsAgent instance methods instead. See the Python and Node.js API references for the full list.","breadcrumbs":"Migration Guide » Module-Level Function Deprecation (Reminder)","id":"1632","title":"Module-Level Function Deprecation (Reminder)"},"1633":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1633","title":"Migrating from 0.2.x to 0.3.x"},"1634":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1634","title":"Configuration Changes"},"1635":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1635","title":"Migration Steps"},"1636":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1636","title":"Migrating Storage Backends"},"1637":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1637","title":"Filesystem to AWS S3"},"1638":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1638","title":"AWS S3 to Filesystem"},"1639":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1639","title":"Migrating Cryptographic Algorithms"},"164":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"164","title":"Installation"},"1640":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1640","title":"Ed25519 to Post-Quantum"},"1641":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1641","title":"Migrating Between Platforms"},"1642":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1642","title":"Node.js to Python"},"1643":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1643","title":"Sharing Agents Between Platforms"},"1644":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1644","title":"Migrating Key Formats"},"1645":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1645","title":"Unencrypted to Encrypted Keys"},"1646":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1646","title":"Database Migration"},"1647":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1647","title":"Adding Database Storage"},"1648":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1648","title":"MCP Integration Migration"},"1649":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1649","title":"Adding JACS to Existing MCP Server"},"165":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"165","title":"Requirements"},"1650":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1650","title":"HTTP API Migration"},"1651":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1651","title":"Adding JACS to Existing Express API"},"1652":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1652","title":"Troubleshooting Migration"},"1653":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1653","title":"Common Issues"},"1654":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1654","title":"Verification Checklist"},"1655":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1655","title":"Rollback Procedures"},"1656":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1656","title":"See Also"},"166":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"166","title":"Verify Rust Version"},"167":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"167","title":"Installing the CLI"},"168":{"body":"cargo install jacs-cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"168","title":"From crates.io (Recommended)"},"169":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Installation » From Homebrew (macOS)","id":"169","title":"From Homebrew (macOS)"},"17":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust with flexible key resolution (local trust stores, DNS, optional key services) Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"17","title":"The Problem JACS Solves"},"170":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS\ncargo install --path jacs-cli","breadcrumbs":"Installation » From Source","id":"170","title":"From Source"},"171":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"171","title":"Verify Installation"},"172":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Installation » MCP Server","id":"172","title":"MCP Server"},"173":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"173","title":"Using as a Library"},"174":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"174","title":"With Optional Features"},"175":{"body":"Feature Description cli (Deprecated -- use cargo install jacs-cli instead) otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Installation » Available Features","id":"175","title":"Available Features"},"176":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"176","title":"Platform Support"},"177":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq2025, legacy pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"177","title":"WebAssembly Notes"},"178":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ./jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"178","title":"Configuration"},"179":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"179","title":"Manual Configuration"},"18":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"18","title":"JACS Core Philosophy"},"180":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq2025, legacy pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"180","title":"Environment Variables"},"181":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"181","title":"Troubleshooting"},"182":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"182","title":"Build Errors"},"183":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"183","title":"Runtime Errors"},"184":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"184","title":"Next Steps"},"185":{"body":"This page walks through common CLI workflows. For a complete command reference, see the CLI Command Reference . For practical scripting examples, see CLI Examples . The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Tutorial » CLI Tutorial","id":"185","title":"CLI Tutorial"},"186":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Tutorial » Getting Help","id":"186","title":"Getting Help"},"187":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks jacs mcp Start the built-in MCP server (stdio transport)","breadcrumbs":"CLI Tutorial » Commands Overview","id":"187","title":"Commands Overview"},"188":{"body":"","breadcrumbs":"CLI Tutorial » Initialization","id":"188","title":"Initialization"},"189":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Tutorial » Quick Start","id":"189","title":"Quick Start"},"19":{"body":"JACS is built specifically for AI agent communication patterns, while still being usable as a general-purpose signed JSON provenance layer. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"19","title":"🎯 Agent-First Design"},"190":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"CLI Tutorial » MCP Server","id":"190","title":"MCP Server"},"191":{"body":"","breadcrumbs":"CLI Tutorial » Configuration Commands","id":"191","title":"Configuration Commands"},"192":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Tutorial » Create Configuration","id":"192","title":"Create Configuration"},"193":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Tutorial » Read Configuration","id":"193","title":"Read Configuration"},"194":{"body":"","breadcrumbs":"CLI Tutorial » Agent Commands","id":"194","title":"Agent Commands"},"195":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Tutorial » Create Agent","id":"195","title":"Create Agent"},"196":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Tutorial » Verify Agent","id":"196","title":"Verify Agent"},"197":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Tutorial » DNS Commands","id":"197","title":"DNS Commands"},"198":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Tutorial » Lookup Agent","id":"198","title":"Lookup Agent"},"199":{"body":"","breadcrumbs":"CLI Tutorial » Task Commands","id":"199","title":"Task Commands"},"2":{"body":"Signed JSON and file envelopes with tamper detection Persistent agent identity with encrypted private keys Trust bootstrap primitives such as share_public_key, share_agent, and trust_agent_with_key A2A artifact signing and trust policies (open, verified, strict) MCP integration paths for ready-made servers, transport security, or tool registration Framework adapters for Python and Node.js ecosystems Multi-party agreements with quorum, timeout, and algorithm constraints Cross-language compatibility across Rust, Python, Node.js, and Go","breadcrumbs":"Introduction » What JACS Gives You","id":"2","title":"What JACS Gives You"},"20":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"20","title":"🔐 Trust Through Cryptography"},"200":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Tutorial » Create Task","id":"200","title":"Create Task"},"201":{"body":"","breadcrumbs":"CLI Tutorial » Document Commands","id":"201","title":"Document Commands"},"202":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Create Document","id":"202","title":"Create Document"},"203":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Tutorial » Update Document","id":"203","title":"Update Document"},"204":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Verify Document","id":"204","title":"Verify Document"},"205":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Tutorial » Extract Embedded Content","id":"205","title":"Extract Embedded Content"},"206":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Tutorial » Agreement Commands","id":"206","title":"Agreement Commands"},"207":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Tutorial » Environment Variables","id":"207","title":"Environment Variables"},"208":{"body":"","breadcrumbs":"CLI Tutorial » Common Workflows","id":"208","title":"Common Workflows"},"209":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Tutorial » Create and Sign a Document","id":"209","title":"Create and Sign a Document"},"21":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"21","title":"📋 Standards-Based"},"210":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Tutorial » Multi-Agent Agreement","id":"210","title":"Multi-Agent Agreement"},"211":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Tutorial » Verify Another Agent","id":"211","title":"Verify Another Agent"},"212":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Tutorial » Exit Codes","id":"212","title":"Exit Codes"},"213":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Tutorial » Next Steps","id":"213","title":"Next Steps"},"214":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"214","title":"Creating an Agent"},"215":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"215","title":"What is an Agent?"},"216":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"216","title":"Creating Your First Agent"},"217":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"217","title":"Quick Method (Recommended)"},"218":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"218","title":"Manual Method"},"219":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"Engaging, accurate content delivered\", \"failureDescription\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"219","title":"With Custom Agent Definition"},"22":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"22","title":"Key Concepts"},"220":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"220","title":"Agent Types"},"221":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"name\": \"data-processing\", \"serviceDescription\": \"Process and transform data\", \"successDescription\": \"Data transformed successfully\", \"failureDescription\": \"Input data could not be processed\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"221","title":"AI Agent Example"},"222":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@example.com\", \"isPrimary\": true } ], \"jacsServices\": [ { \"name\": \"code-review\", \"serviceDescription\": \"Review code for quality and security\", \"successDescription\": \"Actionable review delivered\", \"failureDescription\": \"Could not complete review\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"222","title":"Human Agent Example"},"223":{"body":"Services define what an agent can do. Each service has: { \"name\": \"service-identifier\", \"serviceDescription\": \"What the service does\", \"successDescription\": \"Definition of successful completion\", \"failureDescription\": \"What constitutes failure\"\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"223","title":"Agent Services"},"224":{"body":"{ \"name\": \"document-processing\", \"serviceDescription\": \"Process and analyze documents\", \"successDescription\": \"Documents processed accurately\", \"failureDescription\": \"Unable to process one or more documents\", \"costDescription\": \"Usage-based pricing\", \"privacyPolicy\": \"https://example.com/privacy\", \"termsOfService\": \"https://example.com/terms\"\n}","breadcrumbs":"Creating an Agent » Detailed Service Example","id":"224","title":"Detailed Service Example"},"225":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"firstName\": \"Example\", \"lastName\": \"Agent\", \"email\": \"agent@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"225","title":"Agent Contacts"},"226":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"226","title":"Cryptographic Keys"},"227":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq2025 Post-quantum ML-DSA-87 signatures Future-proof security pq-dilithium Legacy post-quantum signatures Backward compatibility only (deprecated)","breadcrumbs":"Creating an Agent » Key Algorithms","id":"227","title":"Key Algorithms"},"228":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"228","title":"Configure Key Algorithm"},"229":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"229","title":"Key Storage"},"23":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"23","title":"Agents"},"230":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"230","title":"Verifying Agents"},"231":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"231","title":"Verify Your Own Agent"},"232":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"232","title":"Verify a Specific Agent File"},"233":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"233","title":"With DNS Verification"},"234":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"234","title":"Updating Agents"},"235":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"High-quality content generated\", \"failureDescription\": \"Unable to generate requested content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"235","title":"Agent Document Structure"},"236":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"236","title":"Best Practices"},"237":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"237","title":"Security"},"238":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"238","title":"Agent Design"},"239":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"239","title":"Operations"},"24":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"24","title":"Documents"},"240":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"240","title":"Next Steps"},"241":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"241","title":"Working with Documents"},"242":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"242","title":"What is a JACS Document?"},"243":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"243","title":"Creating Documents"},"244":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"244","title":"From a JSON File"},"245":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"245","title":"From a Directory"},"246":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"246","title":"With Custom Schema"},"247":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"247","title":"Output Options"},"248":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"248","title":"Document Structure"},"249":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"249","title":"Required Header Fields"},"25":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"25","title":"Tasks"},"250":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"250","title":"Document Levels"},"251":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"251","title":"File Attachments"},"252":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"252","title":"Attach Files"},"253":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"253","title":"Embed vs. Reference"},"254":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"254","title":"Attachment Structure"},"255":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"255","title":"Verifying Documents"},"256":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"256","title":"Basic Verification"},"257":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"257","title":"Verify with Schema"},"258":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"258","title":"Verify Directory"},"259":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"259","title":"Verbose Output"},"26":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"26","title":"Agreements"},"260":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"260","title":"Updating Documents"},"261":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"261","title":"Update with Attachments"},"262":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"262","title":"Extracting Embedded Content"},"263":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"263","title":"Document Types"},"264":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"264","title":"Task Documents"},"265":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"265","title":"Message Documents"},"266":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"266","title":"Custom Documents"},"267":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"267","title":"Version History"},"268":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"268","title":"Working with Multiple Agents"},"269":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"269","title":"Different Agent Signs Document"},"27":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"27","title":"How JACS Works"},"270":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"270","title":"Verify Document from Unknown Agent"},"271":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"271","title":"Best Practices"},"272":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"272","title":"Document Design"},"273":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"273","title":"Security"},"274":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"274","title":"Performance"},"275":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"275","title":"Common Workflows"},"276":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"276","title":"Create and Share Document"},"277":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"277","title":"Track Document Changes"},"278":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"278","title":"Process Multiple Documents"},"279":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"279","title":"Next Steps"},"28":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"28","title":"Real-World Examples"},"280":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"280","title":"Creating and Using Agreements"},"281":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"281","title":"What is an Agreement?"},"282":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"282","title":"Agreement Lifecycle"},"283":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"283","title":"Creating Agreements"},"284":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"284","title":"Basic Agreement"},"285":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"285","title":"With Context"},"286":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"286","title":"Signing Agreements"},"287":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"287","title":"Sign as Current Agent"},"288":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"288","title":"Sign as Different Agent"},"289":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"289","title":"Sign with Response"},"29":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"29","title":"🤖 AI Content Pipeline"},"290":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"290","title":"Checking Agreement Status"},"291":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"291","title":"Check if Complete"},"292":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"292","title":"Agreement Structure"},"293":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"293","title":"Task Agreements"},"294":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"294","title":"Multi-Agent Workflow Example"},"295":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"295","title":"Agreement Hash"},"296":{"body":"","breadcrumbs":"Creating and Using Agreements » Agreement Options (v0.6.2+)","id":"296","title":"Agreement Options (v0.6.2+)"},"297":{"body":"Set a deadline after which the agreement expires: # Python\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id], timeout=\"2025-12-31T23:59:59Z\"\n) If the deadline passes before all required signatures are collected, check_agreement() returns an error.","breadcrumbs":"Creating and Using Agreements » Timeout","id":"297","title":"Timeout"},"298":{"body":"Require only a subset of agents to sign: # Only 2 of 3 agents need to sign\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id, carol.agent_id], quorum=2\n) When quorum is met, check_agreement() succeeds even if some agents haven't signed.","breadcrumbs":"Creating and Using Agreements » Quorum (M-of-N Signing)","id":"298","title":"Quorum (M-of-N Signing)"},"299":{"body":"Enforce that only specific cryptographic algorithms can be used: # Only post-quantum algorithms allowed\nagreement = client.create_agreement( document=proposal, agent_ids=agent_ids, required_algorithms=[\"pq2025\", \"pq-dilithium\"], minimum_strength=\"post-quantum\"\n) An agent using RSA-PSS or Ed25519 will be rejected when trying to sign this agreement.","breadcrumbs":"Creating and Using Agreements » Algorithm Constraints","id":"299","title":"Algorithm Constraints"},"3":{"body":"If you are choosing where to start: Which Integration? Use Cases MCP Overview A2A Interoperability Python Framework Adapters Node.js LangChain.js","breadcrumbs":"Introduction » Best Entry Points","id":"3","title":"Best Entry Points"},"30":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"30","title":"📊 Data Processing Workflow"},"300":{"body":"agreement = client.create_agreement( document={\"proposal\": \"Deploy model v2\"}, agent_ids=[alice.agent_id, bob.agent_id, mediator.agent_id], question=\"Do you approve deployment?\", timeout=\"2025-06-30T00:00:00Z\", quorum=2, minimum_strength=\"post-quantum\"\n)","breadcrumbs":"Creating and Using Agreements » Combined Options","id":"300","title":"Combined Options"},"301":{"body":"For running multiple agents in one process, use JacsClient instead of the module-level API:","breadcrumbs":"Creating and Using Agreements » Using JacsClient (Instance-Based API)","id":"301","title":"Using JacsClient (Instance-Based API)"},"302":{"body":"from jacs.client import JacsClient alice = JacsClient.ephemeral(\"ring-Ed25519\") # for testing\nbob = JacsClient.ephemeral(\"ring-Ed25519\") signed = alice.sign_message({\"action\": \"approve\"})\n# alice.agent_id, bob.agent_id are unique See the full example: examples/multi_agent_agreement.py","breadcrumbs":"Creating and Using Agreements » Python","id":"302","title":"Python"},"303":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const alice = JacsClient.ephemeral('ring-Ed25519');\nconst bob = JacsClient.ephemeral('ring-Ed25519'); const signed = alice.signMessage({ action: 'approve' }); See the full example: examples/multi_agent_agreement.ts","breadcrumbs":"Creating and Using Agreements » Node.js","id":"303","title":"Node.js"},"304":{"body":"The JACS MCP server exposes agreement tools that LLMs can use directly: Tool Description jacs_create_agreement Create agreement with quorum, timeout, algorithm constraints jacs_sign_agreement Co-sign an agreement jacs_check_agreement Check status: who signed, quorum met, expired See MCP Integration for setup.","breadcrumbs":"Creating and Using Agreements » MCP Tools for Agreements","id":"304","title":"MCP Tools for Agreements"},"305":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree Use quorum for resilience : Don't require unanimous consent unless necessary Set timeouts : Prevent agreements from hanging indefinitely Enforce post-quantum for sensitive agreements : Use minimum_strength: \"post-quantum\" for long-term security","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"305","title":"Best Practices"},"306":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security Multi-Agent Agreement Example (Python) Multi-Agent Agreement Example (Node.js)","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"306","title":"Next Steps"},"307":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"307","title":"DNS-Based Agent Verification"},"308":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"308","title":"Overview"},"309":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider DNS verification is also a practical bridge for DID-style deployments: you can publish DID metadata for discovery while using DNS TXT + JACS signature verification as the operational trust anchor. No blockchain is required for this model.","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"309","title":"Why DNS Verification?"},"31":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"31","title":"🔍 Multi-Agent Analysis"},"310":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"310","title":"Publishing Agent Identity"},"311":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"311","title":"Generate DNS Commands"},"312":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"312","title":"Provider-Specific Formats"},"313":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"313","title":"DNS Record Structure"},"314":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"314","title":"Setting Up with Route 53 (AWS)"},"315":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"315","title":"Setting Up with Cloudflare"},"316":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"316","title":"Setting Up with Azure DNS"},"317":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"317","title":"Verifying Agents with DNS"},"318":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"318","title":"Look Up Another Agent"},"319":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"319","title":"Verify Agent with DNS"},"32":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ⚠️ Schema-native (lifecycle via integrations) ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent JACS provides signed artifacts, schemas, trust primitives, and auditability. Real-time transport and task orchestration are handled by integrations (e.g., A2A, MCP, HTTP server layers).","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"32","title":"Benefits Over Alternatives"},"320":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"320","title":"DNS Validation Modes"},"321":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"321","title":"Agent Domain Configuration"},"322":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"322","title":"DNSSEC Requirements"},"323":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"323","title":"Checking DNSSEC Status"},"324":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"324","title":"Security Considerations"},"325":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"325","title":"Trust Model"},"326":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"326","title":"Best Practices"},"327":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"327","title":"Caching"},"328":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"328","title":"Troubleshooting"},"329":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"329","title":"\"DNS record not found\""},"33":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"33","title":"When to Use JACS"},"330":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"330","title":"\"DNSSEC validation failed\""},"331":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"331","title":"\"Fingerprint mismatch\""},"332":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"332","title":"Integration with CI/CD"},"333":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"333","title":"Next Steps"},"334":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"334","title":"Rust Library API"},"335":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"335","title":"Adding JACS as a Dependency"},"336":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Rust Library API » Feature Flags","id":"336","title":"Feature Flags"},"337":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"337","title":"Core Types"},"338":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"338","title":"Agent"},"339":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"339","title":"JACSDocument"},"34":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"34","title":"Next Steps"},"340":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"340","title":"Creating an Agent"},"341":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"341","title":"Minimal Agent"},"342":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"342","title":"Loading by Configuration"},"343":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"343","title":"DNS Strict Mode"},"344":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"344","title":"Working with Documents"},"345":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"345","title":"Creating Documents"},"346":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"346","title":"Creating Documents with Attachments"},"347":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"347","title":"Loading Documents"},"348":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"348","title":"Updating Documents"},"349":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"349","title":"Verifying Documents"},"35":{"body":"Choose the smallest supported integration that matches your deployment.","breadcrumbs":"Which Integration? » Which JACS Path Should I Use?","id":"35","title":"Which JACS Path Should I Use?"},"350":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"350","title":"Saving Documents"},"351":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"351","title":"Creating Tasks"},"352":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"352","title":"Signing and Verification"},"353":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"353","title":"Signing Documents"},"354":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"354","title":"Verification"},"355":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"355","title":"Custom Schema Validation"},"356":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"356","title":"Configuration"},"357":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"357","title":"Loading Configuration"},"358":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"358","title":"Accessing Configuration"},"359":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"359","title":"Observability"},"36":{"body":"If you need... Start here Why Signed tool outputs inside LangChain / LangGraph on Python Python Framework Adapters Smallest path: sign tool results without adding MCP Signed tool outputs inside LangChain.js / LangGraph on Node Node.js LangChain.js Same idea for TypeScript A ready-made local MCP server for Claude, Codex, or another MCP client MCP Overview and jacs-mcp Fastest full server path To secure your existing MCP server/client code Python MCP or Node.js MCP Use wrappers or transport proxies around code you already have Cross-organization agent discovery and signed artifact exchange A2A Interoperability MCP is not enough for this boundary Signed HTTP APIs without adopting MCP Python Framework Adapters , Express , Koa Sign requests or responses at the web layer Multi-party approval or quorum workflows Multi-Agent Agreements Agreements are the right primitive, not just one-off signatures Direct signing from scripts, jobs, or services Quick Start , Python Basic Usage , Node Basic Usage , Go Installation Start from sign/verify before adding framework layers","breadcrumbs":"Which Integration? » Start Here","id":"36","title":"Start Here"},"360":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"360","title":"Initialize Default Observability"},"361":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"361","title":"Custom Observability Configuration"},"362":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // AWS object storage\nlet storage = MultiStorage::new(\"aws\".to_string())?; For signed document CRUD/search, prefer the unified DocumentService surface: use jacs::document::service_from_agent; let docs = service_from_agent(agent_handle)?;\n// `fs` and `rusqlite` currently resolve in JACS core.","breadcrumbs":"Rust Library API » Storage Backends","id":"362","title":"Storage Backends"},"363":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"363","title":"Error Handling"},"364":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"364","title":"Thread Safety"},"365":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"365","title":"Complete Example"},"366":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"366","title":"Next Steps"},"367":{"body":"This page covers the Rust-specific observability API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig, and related types. For a cross-language guide covering structured events, OTEL collector setup, and monitoring backend integration, see the Observability & Monitoring Guide . JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your Rust applications.","breadcrumbs":"Observability (Rust API) » Observability (Rust API)","id":"367","title":"Observability (Rust API)"},"368":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability (Rust API) » Overview","id":"368","title":"Overview"},"369":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support Convenience helpers for recording operations are always available (no feature flag needed).","breadcrumbs":"Observability (Rust API) » Feature Flags","id":"369","title":"Feature Flags"},"37":{"body":"Everything stays inside one service you control and your own logs are enough You only need integrity, not signer identity or third-party verification A plain checksum or database audit log already satisfies the requirement","breadcrumbs":"Which Integration? » When You Probably Do Not Need JACS","id":"37","title":"When You Probably Do Not Need JACS"},"370":{"body":"","breadcrumbs":"Observability (Rust API) » Quick Start","id":"370","title":"Quick Start"},"371":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability (Rust API) » Default Configuration","id":"371","title":"Default Configuration"},"372":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability (Rust API) » Custom Configuration","id":"372","title":"Custom Configuration"},"373":{"body":"","breadcrumbs":"Observability (Rust API) » Logging","id":"373","title":"Logging"},"374":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability (Rust API) » Log Levels","id":"374","title":"Log Levels"},"375":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability (Rust API) » Log Destinations","id":"375","title":"Log Destinations"},"376":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability (Rust API) » Using Logs","id":"376","title":"Using Logs"},"377":{"body":"","breadcrumbs":"Observability (Rust API) » Metrics","id":"377","title":"Metrics"},"378":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Enabling Metrics","id":"378","title":"Enabling Metrics"},"379":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability (Rust API) » Metrics Destinations","id":"379","title":"Metrics Destinations"},"38":{"body":"Prototype with quickstart and simple sign/verify calls. Attach provenance at the boundary that already exists in your system: LangChain tool, FastAPI response, MCP call, or A2A artifact. Add trust policy only when other agents or organizations enter the picture. Add agreements, DNS, or attestations only if your deployment actually needs them. The mistake to avoid is starting with the broadest story. Start with the boundary you need to secure now.","breadcrumbs":"Which Integration? » Recommended Adoption Order","id":"38","title":"Recommended Adoption Order"},"380":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability (Rust API) » Recording Metrics","id":"380","title":"Recording Metrics"},"381":{"body":"JACS convenience helpers automatically record: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability (Rust API) » Built-in Metrics","id":"381","title":"Built-in Metrics"},"382":{"body":"","breadcrumbs":"Observability (Rust API) » Distributed Tracing","id":"382","title":"Distributed Tracing"},"383":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability (Rust API) » Enabling Tracing","id":"383","title":"Enabling Tracing"},"384":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Tracing Destinations","id":"384","title":"Tracing Destinations"},"385":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability (Rust API) » Sampling Configuration","id":"385","title":"Sampling Configuration"},"386":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability (Rust API) » Using Tracing Spans","id":"386","title":"Using Tracing Spans"},"387":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability (Rust API) » Configuration File","id":"387","title":"Configuration File"},"388":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability (Rust API) » OpenTelemetry Collector Setup","id":"388","title":"OpenTelemetry Collector Setup"},"389":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability (Rust API) » Reset and Cleanup","id":"389","title":"Reset and Cleanup"},"39":{"body":"This chapter stays close to current product use, not roadmap integrations.","breadcrumbs":"Use cases » Use Cases","id":"39","title":"Use Cases"},"390":{"body":"","breadcrumbs":"Observability (Rust API) » Best Practices","id":"390","title":"Best Practices"},"391":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability (Rust API) » Development","id":"391","title":"Development"},"392":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability (Rust API) » Production","id":"392","title":"Production"},"393":{"body":"","breadcrumbs":"Observability (Rust API) » Troubleshooting","id":"393","title":"Troubleshooting"},"394":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability (Rust API) » Logs Not Appearing","id":"394","title":"Logs Not Appearing"},"395":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability (Rust API) » Metrics Not Exporting","id":"395","title":"Metrics Not Exporting"},"396":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability (Rust API) » Traces Missing","id":"396","title":"Traces Missing"},"397":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability (Rust API) » Next Steps","id":"397","title":"Next Steps"},"398":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"398","title":"Node.js Installation"},"399":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"399","title":"Requirements"},"4":{"body":"","breadcrumbs":"Introduction » Implementations","id":"4","title":"Implementations"},"40":{"body":"Use this when: Claude Desktop, Codex, or another MCP client is calling tools that should not run on blind trust. Recommended JACS path: Use jacs-mcp if you want a full server immediately Use Python MCP Integration or Node.js MCP Integration if you already have server code What JACS adds: Signed JSON-RPC messages Fail-closed verification by default Agent identity and auditability for tool calls","breadcrumbs":"Use cases » 1. Secure A Local MCP Tool Server","id":"40","title":"1. Secure A Local MCP Tool Server"},"400":{"body":"","breadcrumbs":"Installation » Installation","id":"400","title":"Installation"},"401":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"401","title":"Using npm"},"402":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"402","title":"Using yarn"},"403":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"403","title":"Using pnpm"},"404":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality (async API)\ntry { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"404","title":"Verify Installation"},"405":{"body":"The @hai.ai/jacs package exposes these entry points:","breadcrumbs":"Installation » Package Structure","id":"405","title":"Package Structure"},"406":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';\nimport * as jacs from '@hai.ai/jacs/simple'; // quickstart, load, signMessage, verify, etc.","breadcrumbs":"Installation » Core and simple API","id":"406","title":"Core and simple API"},"407":{"body":"import { JacsClient } from '@hai.ai/jacs/client';","breadcrumbs":"Installation » Instance-based client (recommended for new code)","id":"407","title":"Instance-based client (recommended for new code)"},"408":{"body":"import { createJACSTransportProxy, createJACSTransportProxyAsync, registerJacsTools } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP (@hai.ai/jacs/mcp)","id":"408","title":"MCP (@hai.ai/jacs/mcp)"},"409":{"body":"import { jacsMiddleware } from '@hai.ai/jacs/express';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa';\nimport { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http'; // legacy","breadcrumbs":"Installation » HTTP / framework adapters","id":"409","title":"HTTP / framework adapters"},"41":{"body":"Use this when: your model already runs inside LangChain or LangGraph and you want signed tool outputs without introducing MCP. Recommended JACS path: Python Framework Adapters Node.js LangChain.js What JACS adds: Signed tool results Optional strict mode at the adapter boundary Minimal changes to existing framework code","breadcrumbs":"Use cases » 2. Add Provenance To LangChain Or LangGraph","id":"41","title":"2. Add Provenance To LangChain Or LangGraph"},"410":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"410","title":"TypeScript Support"},"411":{"body":"","breadcrumbs":"Installation » Configuration","id":"411","title":"Configuration"},"412":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"412","title":"Basic Configuration"},"413":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"413","title":"Configuration File"},"414":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"414","title":"Environment Variables"},"415":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"415","title":"Storage Backends"},"416":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"416","title":"File System (Default)"},"417":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"417","title":"Local Indexed SQLite"},"418":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"418","title":"AWS Storage"},"419":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"419","title":"Memory Storage (Testing)"},"42":{"body":"Use this when: one agent produces work that another organization, service, or team must verify before acting on it. Recommended JACS path: A2A Interoperability A2A Quickstart What JACS adds: Agent Cards with JACS provenance metadata Signed A2A artifacts Trust policies for admission control","breadcrumbs":"Use cases » 3. Exchange Signed Artifacts Across Organizations","id":"42","title":"3. Exchange Signed Artifacts Across Organizations"},"420":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"420","title":"Cryptographic Algorithms"},"421":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"421","title":"ring-Ed25519 (Recommended)"},"422":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"422","title":"RSA-PSS"},"423":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"423","title":"pq-dilithium (Post-Quantum)"},"424":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"424","title":"pq2025 (Post-Quantum Hybrid)"},"425":{"body":"","breadcrumbs":"Installation » Development Setup","id":"425","title":"Development Setup"},"426":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"426","title":"Project Structure"},"427":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"427","title":"Package.json Setup"},"428":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; async function main() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\" }); const signedDoc = await agent.createDocument(documentJson); console.log('Document created:', signedDoc); const isValid = await agent.verifyDocument(signedDoc); console.log('Document valid:', isValid); console.log('JACS agent ready!');\n}\nmain().catch(console.error);","breadcrumbs":"Installation » Basic Application","id":"428","title":"Basic Application"},"429":{"body":"","breadcrumbs":"Installation » Common Issues","id":"429","title":"Common Issues"},"43":{"body":"Use this when: the boundary is an API route, not an MCP transport. Recommended JACS path: Python Framework Adapters for FastAPI Express Middleware Koa Middleware What JACS adds: Signed JSON responses Verified inbound requests A clean upgrade path to A2A discovery on the same app boundary","breadcrumbs":"Use cases » 4. Sign HTTP Or API Boundaries Without MCP","id":"43","title":"4. Sign HTTP Or API Boundaries Without MCP"},"430":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"430","title":"Module Not Found"},"431":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"431","title":"Permission Errors"},"432":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"432","title":"Binary Compatibility"},"433":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"433","title":"TypeScript Issues"},"434":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"434","title":"Next Steps"},"435":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"435","title":"Examples"},"436":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"436","title":"Simplified API"},"437":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended -- does not block the event loop)\nconst signed = await jacs.signMessage({ action: 'approve' }); // Sync (blocks event loop, use in scripts or CLI tools)\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Simplified API » v0.7.0: Async-First API","id":"437","title":"v0.7.0: Async-First API"},"438":{"body":"Quickstart -- one call (with required name/domain) to start signing: const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass { algorithm: 'ring-Ed25519' } to override the default (pq2025). To load an existing agent explicitly, use load() instead: const agent = await jacs.load('./jacs.config.json');\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });","breadcrumbs":"Simplified API » Quick Start","id":"438","title":"Quick Start"},"439":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"439","title":"When to Use the Simplified API"},"44":{"body":"Use this when: multiple agents must sign off on the same document, deployment, or decision. Recommended JACS path: Multi-Agent Agreements Rust Agreements What JACS adds: M-of-N quorum Timeout and algorithm constraints Verifiable signature chain across signers","breadcrumbs":"Use cases » 5. Run Multi-Agent Approval Workflows","id":"44","title":"5. Run Multi-Agent Approval Workflows"},"440":{"body":"Every function that calls into NAPI has both async (default) and sync variants: Function Sync Variant Description quickstart(options) quickstartSync(options) Create a persistent agent with keys on disk create(options) createSync(options) Create a new agent programmatically load(configPath) loadSync(configPath) Load agent from config file verifySelf() verifySelfSync() Verify agent's own integrity updateAgent(data) updateAgentSync(data) Update agent document updateDocument(id, data) updateDocumentSync(id, data) Update existing document signMessage(data) signMessageSync(data) Sign any JSON data signFile(path, embed) signFileSync(path, embed) Sign a file verify(doc) verifySync(doc) Verify signed document verifyById(id) verifyByIdSync(id) Verify by storage ID reencryptKey(old, new) reencryptKeySync(old, new) Re-encrypt private key createAgreement(doc, ids, ...) createAgreementSync(doc, ids, ...) Create multi-party agreement signAgreement(doc) signAgreementSync(doc) Sign an agreement checkAgreement(doc) checkAgreementSync(doc) Check agreement status audit(options?) auditSync(options?) Run a security audit Pure sync functions (no NAPI call, no suffix needed): Function Description verifyStandalone(doc, opts?) Verify without loading an agent getPublicKey() Get public key isLoaded() Check if agent is loaded getDnsRecord(domain, ttl?) Get DNS TXT record getWellKnownJson() Get well-known JSON trustAgent(json) Add agent to trust store listTrustedAgents() List trusted agent IDs untrustAgent(id) Remove from trust store isTrusted(id) Check if agent is trusted getTrustedAgent(id) Get trusted agent's JSON generateVerifyLink(doc, baseUrl?) Generate verification URL","breadcrumbs":"Simplified API » API Reference","id":"440","title":"API Reference"},"441":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Node quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before signMessage() or verify(). Parameters: options (object, required fields): { name: string, domain: string, description?: string, algorithm?: string, configPath?: string }. Default algorithm: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". Returns: Promise (async) or AgentInfo (sync) const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config path: ${info.configPath}`);\nconsole.log(`Public key: ${info.publicKeyPath}`);\nconsole.log(`Private key: ${info.privateKeyPath}`); // Or with a specific algorithm\nconst info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n}); // Sync variant (blocks event loop)\nconst info = jacs.quickstartSync({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n});","breadcrumbs":"Simplified API » quickstart(options)","id":"441","title":"quickstart(options)"},"442":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(options) when you want to load a specific config file explicitly. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: Promise (async) or AgentInfo (sync) const info = await jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`); // Sync variant\nconst info = jacs.loadSync('./jacs.config.json');","breadcrumbs":"Simplified API » load(configPath?)","id":"442","title":"load(configPath?)"},"443":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { await jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"443","title":"isLoaded()"},"444":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"444","title":"getAgentInfo()"},"445":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: Promise (async) or VerificationResult (sync) Throws: Error if no agent is loaded const result = await jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"445","title":"verifySelf()"},"446":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: Promise (async) or SignedDocument (sync) Throws: Error if no agent is loaded // Async (recommended)\nconst signed = await jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); // Sync\nconst signed = jacs.signMessageSync({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"446","title":"signMessage(data)"},"447":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: Promise (async) or SignedDocument (sync) // Reference only (stores hash)\nconst signed = await jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = await jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"447","title":"signFile(filePath, embed?)"},"448":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: Promise (async) or VerificationResult (sync) const result = await jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"448","title":"verify(signedDocument)"},"449":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (always sync -- no NAPI call) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"449","title":"verifyStandalone(signedDocument, options?)"},"45":{"body":"Use this when: you need an artifact to stay verifiable after it leaves the process that created it. Recommended JACS path: Verifying Signed Documents Working with Documents Python Basic Usage Node.js Basic Usage What JACS adds: Self-contained signed envelopes Re-verification at read time Cross-language interoperability","breadcrumbs":"Use cases » 6. Keep Signed Files Or JSON As Durable Artifacts","id":"45","title":"6. Keep Signed Files Or JSON As Durable Artifacts"},"450":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Promise (async) or object (sync) See Security Model -- Security Audit for full details and options. const result = await jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"450","title":"audit(options?)"},"451":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: Promise (async) or string (sync) -- The updated and re-signed agent document const agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'hybrid';\nconst updated = await jacs.updateAgent(agentDoc);","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"451","title":"updateAgent(newAgentData)"},"452":{"body":"Update an existing document with new data and re-sign it. Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: Promise (async) or SignedDocument (sync) const original = await jacs.signMessage({ status: 'pending', amount: 100 });\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved';\nconst updated = await jacs.updateDocument(original.documentId, doc);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"452","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"453":{"body":"Export the current agent document for sharing or inspection. Returns: string -- The agent JSON document (pure sync, no suffix needed) const agentDoc = jacs.exportAgent();\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"453","title":"exportAgent()"},"454":{"body":"Return the DNS TXT record line for the loaded agent. Pure sync, no suffix needed. Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"454","title":"getDnsRecord(domain, ttl?)"},"455":{"body":"Return the well-known JSON object for the loaded agent. Pure sync, no suffix needed. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"455","title":"getWellKnownJson()"},"456":{"body":"Get the loaded agent's public key in PEM format. Pure sync, no suffix needed. Returns: string -- PEM-encoded public key const pem = jacs.getPublicKey();\nconsole.log(pem);","breadcrumbs":"Simplified API » getPublicKey()","id":"456","title":"getPublicKey()"},"457":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"457","title":"Type Definitions"},"458":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"458","title":"AgentInfo"},"459":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"459","title":"SignedDocument"},"46":{"body":"Use this when: external systems need to verify your agent identity but you do not want a shared auth server in the middle. Recommended JACS path: DNS-Based Verification DNS Trust Anchoring What JACS adds: Public key fingerprint anchoring DNS-based verification flows Local private-key custody","breadcrumbs":"Use cases » 7. Publish Public Identity Without A Central Auth Service","id":"46","title":"7. Publish Public Identity Without A Central Auth Service"},"460":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"460","title":"VerificationResult"},"461":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"461","title":"Attachment"},"462":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = await jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = await jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = await jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = await jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = await jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nconst updatedAgent = await jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"462","title":"Complete Example"},"463":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\nawait jacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = await jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"463","title":"MCP Integration"},"464":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { await jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded await jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { await jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = await jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"464","title":"Error Handling"},"465":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"465","title":"See Also"},"466":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"466","title":"Basic Usage"},"467":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"Basic Usage » v0.7.0: Async-First API","id":"467","title":"v0.7.0: Async-First API"},"468":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"468","title":"Initializing an Agent"},"469":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Or use sync variant\nagent.loadSync('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"469","title":"Create and Load Agent"},"47":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"47","title":"Core Concepts"},"470":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"470","title":"Configuration File"},"471":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"471","title":"Creating Documents"},"472":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = await agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"472","title":"Basic Document Creation"},"473":{"body":"Validate against a custom JSON Schema: const signedDocument = await agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"473","title":"With Custom Schema"},"474":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"474","title":"With Output File"},"475":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"475","title":"Without Saving"},"476":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"476","title":"With Attachments"},"477":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"477","title":"Verifying Documents"},"478":{"body":"// Verify a document's signature and hash\nconst isValid = await agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"478","title":"Verify Document Signature"},"479":{"body":"// Verify with a custom signature field\nconst isValid = await agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"479","title":"Verify Specific Signature Field"},"48":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"48","title":"Agents"},"480":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"480","title":"Updating Documents"},"481":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"481","title":"Update Existing Document"},"482":{"body":"const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"482","title":"Update with New Attachments"},"483":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"483","title":"Signing and Verification"},"484":{"body":"// Sign any string data\nconst signature = await agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"484","title":"Sign Arbitrary Data"},"485":{"body":"// Verify a signature on string data\nconst isValid = await agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"485","title":"Verify Arbitrary Data"},"486":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"486","title":"Working with Agreements"},"487":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = await agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"487","title":"Create an Agreement"},"488":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = await agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"488","title":"Sign an Agreement"},"489":{"body":"// Check which agents have signed\nconst status = await agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"489","title":"Check Agreement Status"},"49":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"49","title":"Agent Identity"},"490":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"490","title":"Agent Operations"},"491":{"body":"// Verify the loaded agent's signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent valid:', isValid);","breadcrumbs":"Basic Usage » Verify Agent","id":"491","title":"Verify Agent"},"492":{"body":"// Update agent document\nconst updatedAgentJson = await agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"492","title":"Update Agent"},"493":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = await agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"493","title":"Sign External Agent"},"494":{"body":"These methods remain synchronous (V8-thread-only, no Sync suffix):","breadcrumbs":"Basic Usage » Request/Response Signing","id":"494","title":"Request/Response Signing"},"495":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"495","title":"Sign a Request"},"496":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"496","title":"Verify a Response"},"497":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"497","title":"Utility Functions"},"498":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"498","title":"Hash String"},"499":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"499","title":"Create Configuration"},"5":{"body":"Deepest feature surface CLI plus library APIs Best fit when you want a ready-made MCP server via jacs mcp","breadcrumbs":"Introduction » Rust","id":"5","title":"Rust"},"50":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"50","title":"Agent Lifecycle"},"500":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { await agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = await agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = await agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"500","title":"Error Handling"},"501":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = await agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (await agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = await agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = await agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = await agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"501","title":"Complete Example"},"502":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"502","title":"Next Steps"},"503":{"body":"Node has two MCP stories: Wrap an MCP transport with signing and verification Register JACS operations as MCP tools on an existing server If you want a full out-of-the-box server instead, prefer the Rust jacs-mcp binary.","breadcrumbs":"MCP Integration (Node.js) » MCP Integration (Node.js)","id":"503","title":"MCP Integration (Node.js)"},"504":{"body":"npm install @hai.ai/jacs @modelcontextprotocol/sdk","breadcrumbs":"MCP Integration (Node.js) » Install","id":"504","title":"Install"},"505":{"body":"Use this when you already have an MCP server or client and want signed JSON-RPC messages.","breadcrumbs":"MCP Integration (Node.js) » 1. Wrap A Transport","id":"505","title":"1. Wrap A Transport"},"506":{"body":"import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server');","breadcrumbs":"MCP Integration (Node.js) » With a loaded client","id":"506","title":"With a loaded client"},"507":{"body":"import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); createJACSTransportProxy() does not take a config path. Use the async factory when the agent is not already loaded.","breadcrumbs":"MCP Integration (Node.js) » With only a config path","id":"507","title":"With only a config path"},"508":{"body":"Use this when the model should explicitly call JACS operations such as signing, verification, agreement creation, or trust-store inspection. import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The registered tool set includes: document signing and verification agreement helpers audit and agent-info helpers trust-store helpers setup and registry helper stubs For lower-level integration, use getJacsMcpToolDefinitions() plus handleJacsMcpToolCall().","breadcrumbs":"MCP Integration (Node.js) » 2. Register JACS Tools On Your MCP Server","id":"508","title":"2. Register JACS Tools On Your MCP Server"},"509":{"body":"The transport proxy is not permissive by default. Signing or verification failures fail closed unless you explicitly pass allowUnsignedFallback: true createJACSTransportProxy() expects a real JacsClient or JacsAgent, not an unloaded shell","breadcrumbs":"MCP Integration (Node.js) » Failure Behavior","id":"509","title":"Failure Behavior"},"51":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"51","title":"Verification: load() vs verify_standalone()"},"510":{"body":"import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const server = new McpServer({ name: 'my-server', version: '1.0.0' });\nconst transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); await server.connect(secureTransport); For stdio servers, keep logs on stderr, not stdout.","breadcrumbs":"MCP Integration (Node.js) » Common Pattern","id":"510","title":"Common Pattern"},"511":{"body":"jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js jacsnpm/examples/mcp.sse.server.js jacsnpm/examples/mcp.sse.client.js","breadcrumbs":"MCP Integration (Node.js) » Example Paths In This Repo","id":"511","title":"Example Paths In This Repo"},"512":{"body":"Choose LangChain.js Integration instead when: the model and tools already live in the same Node.js process you only need signed tool outputs, not an MCP boundary you do not need other MCP clients to connect","breadcrumbs":"MCP Integration (Node.js) » When To Use LangChain Instead","id":"512","title":"When To Use LangChain Instead"},"513":{"body":"Use the LangChain.js adapter when the model already runs inside your Node.js app and you want provenance at the tool boundary.","breadcrumbs":"LangChain.js » LangChain.js Integration","id":"513","title":"LangChain.js Integration"},"514":{"body":"","breadcrumbs":"LangChain.js » Choose The Pattern","id":"514","title":"Choose The Pattern"},"515":{"body":"Use createJacsTools() when the model should explicitly ask to sign, verify, inspect trust, or create agreements. import { JacsClient } from '@hai.ai/jacs/client';\nimport { createJacsTools } from '@hai.ai/jacs/langchain'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const jacsTools = createJacsTools({ client });\nconst llmWithTools = model.bindTools([...myTools, ...jacsTools]); The tool set includes 14 tools: jacs_sign jacs_verify jacs_create_agreement jacs_sign_agreement jacs_check_agreement jacs_verify_self jacs_trust_agent jacs_trust_agent_with_key jacs_list_trusted jacs_is_trusted jacs_share_public_key jacs_share_agent jacs_audit jacs_agent_info","breadcrumbs":"LangChain.js » Give The Agent JACS Tools","id":"515","title":"Give The Agent JACS Tools"},"516":{"body":"Use this when the model should keep using your existing tool set but every result needs a signature. Wrap one tool: import { signedTool } from '@hai.ai/jacs/langchain'; const signed = signedTool(mySearchTool, { client }); Wrap a LangGraph ToolNode: import { jacsToolNode } from '@hai.ai/jacs/langchain'; const node = jacsToolNode([tool1, tool2], { client }); For custom graph logic: import { jacsWrapToolCall } from '@hai.ai/jacs/langchain'; const wrapToolCall = jacsWrapToolCall({ client });","breadcrumbs":"LangChain.js » Auto-Sign Existing Tools","id":"516","title":"Auto-Sign Existing Tools"},"517":{"body":"npm install @hai.ai/jacs @langchain/core\nnpm install @langchain/langgraph @langchain/langgraph is only required for jacsToolNode().","breadcrumbs":"LangChain.js » Install","id":"517","title":"Install"},"518":{"body":"Pass strict: true when you want wrapper failures to throw instead of returning error-shaped output: const jacsTools = createJacsTools({ client, strict: true });","breadcrumbs":"LangChain.js » Strict Mode","id":"518","title":"Strict Mode"},"519":{"body":"jacsnpm/examples/langchain/basic-agent.ts jacsnpm/examples/langchain/signing-callback.ts","breadcrumbs":"LangChain.js » Examples In This Repo","id":"519","title":"Examples In This Repo"},"52":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"52","title":"Documents"},"520":{"body":"Choose Node.js MCP Integration instead when: the model is outside your process and connects over MCP you want a shared MCP server usable by multiple clients you need transport-level signing in addition to signed tool outputs","breadcrumbs":"LangChain.js » When To Use MCP Instead","id":"520","title":"When To Use MCP Instead"},"521":{"body":"Sign it. Prove it. -- for every AI model output. The JACS Vercel AI SDK adapter adds cryptographic provenance to AI-generated text and tool results using the LanguageModelV3Middleware pattern. Works with generateText, streamText, and any model provider (OpenAI, Anthropic, etc.).","breadcrumbs":"Vercel AI SDK » Vercel AI SDK","id":"521","title":"Vercel AI SDK"},"522":{"body":"","breadcrumbs":"Vercel AI SDK » 5-Minute Quickstart","id":"522","title":"5-Minute Quickstart"},"523":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai","breadcrumbs":"Vercel AI SDK » 1. Install","id":"523","title":"1. Install"},"524":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Vercel AI SDK » 2. Create a JACS client","id":"524","title":"2. Create a JACS client"},"525":{"body":"import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const model = withProvenance(openai('gpt-4'), { client });\nconst { text, providerMetadata } = await generateText({ model, prompt: 'Hello!' }); console.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID","breadcrumbs":"Vercel AI SDK » 3. Sign every model output","id":"525","title":"3. Sign every model output"},"526":{"body":"import { JacsClient } from '@hai.ai/jacs/client';\nimport { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst model = withProvenance(openai('gpt-4'), { client }); const { text, providerMetadata } = await generateText({ model, prompt: 'Summarize the quarterly report.',\n}); console.log(text);\nconsole.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID\nconsole.log(providerMetadata?.jacs?.text?.signed); // true Every model output is signed by your JACS agent. The provenance record is attached to providerMetadata.jacs.","breadcrumbs":"Vercel AI SDK » Quick Start","id":"526","title":"Quick Start"},"527":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai # or any provider The ai package is a peer dependency.","breadcrumbs":"Vercel AI SDK » Installation","id":"527","title":"Installation"},"528":{"body":"","breadcrumbs":"Vercel AI SDK » Two Ways to Use","id":"528","title":"Two Ways to Use"},"529":{"body":"Wraps a model with the JACS middleware in one call: import { withProvenance } from '@hai.ai/jacs/vercel-ai'; const model = withProvenance(openai('gpt-4'), { client });","breadcrumbs":"Vercel AI SDK » withProvenance (convenience)","id":"529","title":"withProvenance (convenience)"},"53":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"53","title":"Document Structure"},"530":{"body":"Returns a LanguageModelV3Middleware you can compose with other middleware: import { jacsProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { wrapLanguageModel } from 'ai'; const provenance = jacsProvenance({ client }); const model = wrapLanguageModel({ model: openai('gpt-4'), middleware: provenance,\n});","breadcrumbs":"Vercel AI SDK » jacsProvenance (composable)","id":"530","title":"jacsProvenance (composable)"},"531":{"body":"interface ProvenanceOptions { client: JacsClient; // Required: initialized JacsClient signText?: boolean; // Sign generated text (default: true) signToolResults?: boolean; // Sign tool call results (default: true) strict?: boolean; // Throw on signing failure (default: false) metadata?: Record; // Extra metadata in provenance records\n}","breadcrumbs":"Vercel AI SDK » Options","id":"531","title":"Options"},"532":{"body":"Streaming works automatically. Text chunks are accumulated and signed when the stream completes: import { streamText } from 'ai'; const result = streamText({ model: withProvenance(openai('gpt-4'), { client }), prompt: 'Write a haiku.',\n}); for await (const chunk of result.textStream) { process.stdout.write(chunk);\n} // Provenance is available after stream completes\nconst metadata = await result.providerMetadata;\nconsole.log(metadata?.jacs?.text?.signed); // true","breadcrumbs":"Vercel AI SDK » Streaming","id":"532","title":"Streaming"},"533":{"body":"When signToolResults is true (default), tool results in the prompt are signed: import { generateText, tool } from 'ai';\nimport { z } from 'zod'; const { text, providerMetadata } = await generateText({ model: withProvenance(openai('gpt-4'), { client }), tools: { getWeather: tool({ parameters: z.object({ city: z.string() }), execute: async ({ city }) => `Weather in ${city}: sunny, 72F`, }), }, prompt: 'What is the weather in Paris?',\n}); // Both text output and tool results are signed\nconsole.log(providerMetadata?.jacs?.text?.signed);\nconsole.log(providerMetadata?.jacs?.toolResults?.signed);","breadcrumbs":"Vercel AI SDK » Tool Call Signing","id":"533","title":"Tool Call Signing"},"534":{"body":"Each signed output produces a ProvenanceRecord: interface ProvenanceRecord { signed: boolean; // Whether signing succeeded documentId: string; // JACS document ID agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp error?: string; // Error message if signing failed metadata?: Record;\n} Access records from providerMetadata.jacs: const { providerMetadata } = await generateText({ model, prompt: '...' }); const textProvenance = providerMetadata?.jacs?.text;\nconst toolProvenance = providerMetadata?.jacs?.toolResults;","breadcrumbs":"Vercel AI SDK » Provenance Record","id":"534","title":"Provenance Record"},"535":{"body":"By default, signing failures are logged but do not throw. Enable strict to throw on failure: const model = withProvenance(openai('gpt-4'), { client, strict: true, // Throws if signing fails\n});","breadcrumbs":"Vercel AI SDK » Strict Mode","id":"535","title":"Strict Mode"},"536":{"body":"Express Middleware - Sign HTTP API responses MCP Integration - Secure MCP transport API Reference - Complete API documentation","breadcrumbs":"Vercel AI SDK » Next Steps","id":"536","title":"Next Steps"},"537":{"body":"Sign it. Prove it. -- in your Express app. JACS provides jacsMiddleware for Express v4/v5 that verifies incoming signed request bodies and optionally auto-signs JSON responses. No body-parser gymnastics, no monkey-patching.","breadcrumbs":"Express Middleware » Express Middleware","id":"537","title":"Express Middleware"},"538":{"body":"","breadcrumbs":"Express Middleware » 5-Minute Quickstart","id":"538","title":"5-Minute Quickstart"},"539":{"body":"npm install @hai.ai/jacs express","breadcrumbs":"Express Middleware » 1. Install","id":"539","title":"1. Install"},"54":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"54","title":"Required JACS Fields"},"540":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Express Middleware » 2. Create a JACS client","id":"540","title":"2. Create a JACS client"},"541":{"body":"import express from 'express';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const app = express();\napp.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » 3. Add signing middleware","id":"541","title":"3. Add signing middleware"},"542":{"body":"import express from 'express';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express(); app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"542","title":"Quick Start"},"543":{"body":"jacsMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign res.json() responses (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n}) If neither client nor configPath is provided, the middleware initializes a client with JacsClient.quickstart({ name: 'jacs-express', domain: 'localhost' }) on first request.","breadcrumbs":"Express Middleware » Options","id":"543","title":"Options"},"544":{"body":"Every request gets req.jacsClient -- a JacsClient instance you can use for manual signing/verification in route handlers. POST/PUT/PATCH with verify: true (default): The string body is verified as a JACS document. On success, req.jacsPayload contains the extracted payload. On failure, a 401 is returned (unless optional: true). With sign: true : res.json() is intercepted to auto-sign the response body before sending.","breadcrumbs":"Express Middleware » What the Middleware Does","id":"544","title":"What the Middleware Does"},"545":{"body":"app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client })); app.post('/api/process', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Missing payload' }); } const { action, data } = req.jacsPayload; res.json({ processed: true, action });\n}); With optional: true, unsigned requests pass through with req.jacsPayload unset: app.use(jacsMiddleware({ client, optional: true })); app.post('/api/mixed', (req, res) => { if (req.jacsPayload) { // Verified JACS request res.json({ verified: true, data: req.jacsPayload }); } else { // Unsigned request -- handle accordingly res.json({ verified: false }); }\n});","breadcrumbs":"Express Middleware » Verify Incoming Requests","id":"545","title":"Verify Incoming Requests"},"546":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Express Middleware » Auth Replay Protection (Auth Endpoints)","id":"546","title":"Auth Replay Protection (Auth Endpoints)"},"547":{"body":"Enable sign: true to intercept res.json() calls: app.use(jacsMiddleware({ client, sign: true })); app.post('/api/data', (req, res) => { // This response will be JACS-signed automatically res.json({ result: 42, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Auto-Sign Responses","id":"547","title":"Auto-Sign Responses"},"548":{"body":"Use req.jacsClient for fine-grained control: app.use(jacsMiddleware({ client })); app.post('/api/custom', async (req, res) => { const result = processData(req.jacsPayload); // Sign manually const signed = await req.jacsClient.signMessage(result); res.type('application/json').send(signed.raw);\n});","breadcrumbs":"Express Middleware » Manual Signing in Routes","id":"548","title":"Manual Signing in Routes"},"549":{"body":"Apply JACS to specific routes only: const app = express();\nconst jacs = jacsMiddleware({ client }); // Public routes -- no JACS\napp.get('/health', (req, res) => res.json({ status: 'ok' })); // Protected routes\napp.use('/api', express.text({ type: 'application/json' }), jacs); app.post('/api/secure', (req, res) => { res.json({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Per-Route Middleware","id":"549","title":"Per-Route Middleware"},"55":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"55","title":"Document Types"},"550":{"body":"Use different JacsClient instances per route group: const adminClient = await JacsClient.quickstart({ name: 'admin-agent', domain: 'admin.example.com', algorithm: 'pq2025',\n});\nconst userClient = await JacsClient.quickstart({ name: 'user-agent', domain: 'user.example.com', algorithm: 'ring-Ed25519',\n}); app.use('/admin', express.text({ type: 'application/json' }));\napp.use('/admin', jacsMiddleware({ client: adminClient })); app.use('/user', express.text({ type: 'application/json' }));\napp.use('/user', jacsMiddleware({ client: userClient }));","breadcrumbs":"Express Middleware » Multiple Agents","id":"550","title":"Multiple Agents"},"551":{"body":"The legacy JACSExpressMiddleware from @hai.ai/jacs/http still works but is deprecated. To migrate: Old New import { JACSExpressMiddleware } from '@hai.ai/jacs/http' import { jacsMiddleware } from '@hai.ai/jacs/express' JACSExpressMiddleware({ configPath: '...' }) jacsMiddleware({ configPath: '...' }) Per-request agent init Shared client, lazy-loaded once res.send() monkey-patch res.json() interception (opt-in) The new middleware is simpler, faster (no per-request init), and gives you req.jacsClient for manual operations.","breadcrumbs":"Express Middleware » Migration from JACSExpressMiddleware","id":"551","title":"Migration from JACSExpressMiddleware"},"552":{"body":"Koa Middleware - Same pattern for Koa HTTP Server - Core HTTP integration concepts Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"552","title":"Next Steps"},"553":{"body":"Sign it. Prove it. -- in your Koa app. JACS provides jacsKoaMiddleware for Koa with the same design as the Express middleware -- verify incoming signed bodies, optionally auto-sign responses.","breadcrumbs":"Koa Middleware » Koa Middleware","id":"553","title":"Koa Middleware"},"554":{"body":"import Koa from 'koa';\nimport bodyParser from 'koa-bodyparser';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = new Koa(); app.use(bodyParser({ enableTypes: ['text'] }));\napp.use(jacsKoaMiddleware({ client, verify: true })); app.use(async (ctx) => { console.log(ctx.state.jacsPayload); // verified payload ctx.body = { status: 'ok' };\n}); app.listen(3000);","breadcrumbs":"Koa Middleware » Quick Start","id":"554","title":"Quick Start"},"555":{"body":"jacsKoaMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign ctx.body after next() (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n})","breadcrumbs":"Koa Middleware » Options","id":"555","title":"Options"},"556":{"body":"Every request gets ctx.state.jacsClient for manual use. POST/PUT/PATCH with verify: true : The string body is verified. On success, ctx.state.jacsPayload is set. On failure, 401 is returned (unless optional: true). With sign: true : After downstream middleware runs, if ctx.body is a non-Buffer object, it is signed before the response is sent.","breadcrumbs":"Koa Middleware » How It Works","id":"556","title":"How It Works"},"557":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsKoaMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Koa Middleware » Auth Replay Protection (Auth Endpoints)","id":"557","title":"Auth Replay Protection (Auth Endpoints)"},"558":{"body":"app.use(jacsKoaMiddleware({ client, sign: true })); app.use(async (ctx) => { // This will be JACS-signed automatically after next() ctx.body = { result: 42, timestamp: new Date().toISOString() };\n});","breadcrumbs":"Koa Middleware » Auto-Sign Responses","id":"558","title":"Auto-Sign Responses"},"559":{"body":"app.use(jacsKoaMiddleware({ client })); app.use(async (ctx) => { const result = processData(ctx.state.jacsPayload); const signed = await ctx.state.jacsClient.signMessage(result); ctx.type = 'application/json'; ctx.body = signed.raw;\n});","breadcrumbs":"Koa Middleware » Manual Signing","id":"559","title":"Manual Signing"},"56":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"56","title":"Tasks"},"560":{"body":"Feature Express Koa Import jacsMiddleware from @hai.ai/jacs/express jacsKoaMiddleware from @hai.ai/jacs/koa Client access req.jacsClient ctx.state.jacsClient Payload req.jacsPayload ctx.state.jacsPayload Auto-sign target res.json() interception ctx.body after next()","breadcrumbs":"Koa Middleware » Comparison with Express","id":"560","title":"Comparison with Express"},"561":{"body":"Express Middleware - Express version Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Koa Middleware » Next Steps","id":"561","title":"Next Steps"},"562":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"562","title":"HTTP Server"},"563":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"563","title":"Overview"},"564":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"564","title":"Core Concepts"},"565":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"565","title":"Request/Response Flow"},"566":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"566","title":"HTTP Client"},"567":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"567","title":"Basic Client Usage"},"568":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"568","title":"Using Fetch"},"569":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"569","title":"Express Server"},"57":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"57","title":"Task Structure"},"570":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"570","title":"Using Express Middleware"},"571":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"571","title":"Middleware Configuration"},"572":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"572","title":"Manual Request/Response Handling"},"573":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"573","title":"Koa Server"},"574":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"574","title":"Using Koa Middleware"},"575":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"575","title":"API Reference"},"576":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"576","title":"jacs.signRequest(payload)"},"577":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"577","title":"jacs.verifyResponse(responseString)"},"578":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"578","title":"jacs.signResponse(payload)"},"579":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"579","title":"JACSExpressMiddleware(options)"},"58":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"58","title":"Task Lifecycle"},"580":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"580","title":"JACSKoaMiddleware(options)"},"581":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"581","title":"Complete Example"},"582":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"582","title":"Server (server.js)"},"583":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"583","title":"Client (client.js)"},"584":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"584","title":"Security Considerations"},"585":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"585","title":"Content-Type"},"586":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"586","title":"Error Handling"},"587":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"587","title":"Agent Keys"},"588":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"588","title":"Middleware Order"},"589":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"59","title":"Task Components"},"590":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"590","title":"API Reference"},"591":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"591","title":"Installation"},"592":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"API Reference » v0.7.0: Async-First API","id":"592","title":"v0.7.0: Async-First API"},"593":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"593","title":"Core Module"},"594":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"594","title":"JacsAgent Class"},"595":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() or loadSync() to initialize with a configuration. Example: const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"595","title":"Constructor"},"596":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: Promise (async) or string (sync) -- The loaded agent's JSON Example: const agent = new JacsAgent(); // Async (recommended)\nconst agentJson = await agent.load('./jacs.config.json'); // Sync\nconst agentJson = agent.loadSync('./jacs.config.json'); console.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath) / agent.loadSync(configPath)","id":"596","title":"agent.load(configPath) / agent.loadSync(configPath)"},"597":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: Promise (async) or string (sync) -- The signed document as a JSON string Example: // Basic document creation (async)\nconst doc = await agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // Without saving (sync)\nconst tempDoc = agent.createDocumentSync( JSON.stringify({ data: 'temporary' }), null, null, true\n);","breadcrumbs":"API Reference » agent.createDocument(...) / agent.createDocumentSync(...)","id":"597","title":"agent.createDocument(...) / agent.createDocumentSync(...)"},"598":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: Promise (async) or boolean (sync) -- True if the document is valid Example: const isValid = await agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n}","breadcrumbs":"API Reference » agent.verifyDocument(...) / agent.verifyDocumentSync(...)","id":"598","title":"agent.verifyDocument(...) / agent.verifyDocumentSync(...)"},"599":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifySignature(...) / agent.verifySignatureSync(...)","id":"599","title":"agent.verifySignature(...) / agent.verifySignatureSync(...)"},"6":{"body":"Best fit for LangChain, LangGraph, CrewAI, FastAPI, and local MCP/A2A helpers Strong adapter story for adding provenance inside an existing app","breadcrumbs":"Introduction » Python (jacs)","id":"6","title":"Python (jacs)"},"60":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"60","title":"Agreements"},"600":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: Promise (async) or string (sync) Example: const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`;\nconst updatedDoc = await agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title' })\n);","breadcrumbs":"API Reference » agent.updateDocument(...) / agent.updateDocumentSync(...)","id":"600","title":"agent.updateDocument(...) / agent.updateDocumentSync(...)"},"601":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.createAgreement(...) / agent.createAgreementSync(...)","id":"601","title":"agent.createAgreement(...) / agent.createAgreementSync(...)"},"602":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgreement(...) / agent.signAgreementSync(...)","id":"602","title":"agent.signAgreement(...) / agent.signAgreementSync(...)"},"603":{"body":"Check the status of an agreement. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync) -- JSON string with agreement status","breadcrumbs":"API Reference » agent.checkAgreement(...) / agent.checkAgreementSync(...)","id":"603","title":"agent.checkAgreement(...) / agent.checkAgreementSync(...)"},"604":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifactJson (string): JSON string of the artifact to sign artifactType (string): Type of artifact (e.g., \"task\", \"message\") parentSignaturesJson (string, optional): JSON string of parent signatures for chain of custody Returns: Promise (async) or string (sync) -- The signed, wrapped artifact as a JSON string Example: const signed = await agent.signArtifact( JSON.stringify({ action: 'classify', input: 'hello' }), 'task'\n);","breadcrumbs":"API Reference » agent.signArtifact(...) / agent.signArtifactSync(...)","id":"604","title":"agent.signArtifact(...) / agent.signArtifactSync(...)"},"605":{"body":"Deprecated since 0.9.0. Use signArtifact() / signArtifactSync() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to signArtifact() / signArtifactSync(). Parameters: Same as signArtifact() / signArtifactSync().","breadcrumbs":"API Reference » agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)","id":"605","title":"agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)"},"606":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: Promise (async) or string (sync) -- Base64-encoded signature","breadcrumbs":"API Reference » agent.signString(...) / agent.signStringSync(...)","id":"606","title":"agent.signString(...) / agent.signStringSync(...)"},"607":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyString(...) / agent.verifyStringSync(...)","id":"607","title":"agent.verifyString(...) / agent.verifyStringSync(...)"},"608":{"body":"Sign a request payload, wrapping it in a JACS document. This method is synchronous (no Sync suffix) because it uses V8-thread-only APIs. Parameters: params (any): The request payload object Returns: string -- JACS-signed request as a JSON string","breadcrumbs":"API Reference » agent.signRequest(params) -- V8-thread-only","id":"608","title":"agent.signRequest(params) -- V8-thread-only"},"609":{"body":"Verify a JACS-signed response and extract the payload. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object containing the verified payload","breadcrumbs":"API Reference » agent.verifyResponse(documentString) -- V8-thread-only","id":"609","title":"agent.verifyResponse(documentString) -- V8-thread-only"},"61":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"61","title":"Agreement Structure"},"610":{"body":"Verify a response and return both the payload and signer's agent ID. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object with payload and agent ID","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString) -- V8-thread-only","id":"610","title":"agent.verifyResponseWithAgentId(documentString) -- V8-thread-only"},"611":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyAgent(...) / agent.verifyAgentSync(...)","id":"611","title":"agent.verifyAgent(...) / agent.verifyAgentSync(...)"},"612":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.updateAgent(...) / agent.updateAgentSync(...)","id":"612","title":"agent.updateAgent(...) / agent.updateAgentSync(...)"},"613":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgent(...) / agent.signAgentSync(...)","id":"613","title":"agent.signAgent(...) / agent.signAgentSync(...)"},"614":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"614","title":"Utility Functions"},"615":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string -- Hexadecimal hash string import { hashString } from '@hai.ai/jacs';\nconst hash = hashString('data to hash');","breadcrumbs":"API Reference » hashString(data)","id":"615","title":"hashString(data)"},"616":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional) jacsDataDirectory (string, optional) jacsKeyDirectory (string, optional) jacsAgentPrivateKeyFilename (string, optional) jacsAgentPublicKeyFilename (string, optional) jacsAgentKeyAlgorithm (string, optional) jacsPrivateKeyPassword (string, optional) jacsAgentIdAndVersion (string, optional) jacsDefaultStorage (string, optional) Returns: string -- Configuration as JSON string","breadcrumbs":"API Reference » createConfig(options)","id":"616","title":"createConfig(options)"},"617":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"617","title":"HTTP Module"},"618":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"618","title":"JACSExpressMiddleware(options)"},"619":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"619","title":"JACSKoaMiddleware(options)"},"62":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"62","title":"Agreement Process"},"620":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"620","title":"MCP Module"},"621":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"621","title":"createJACSTransportProxy(transport, configPath, role)"},"622":{"body":"Async factory that waits for JACS to be fully loaded. Returns: Promise","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"622","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"623":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');","breadcrumbs":"API Reference » TypeScript Support","id":"623","title":"TypeScript Support"},"624":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() -> Use agent.load() / agent.loadSync() signAgent() -> Use agent.signAgent() / agent.signAgentSync() verifyString() -> Use agent.verifyString() / agent.verifyStringSync() signString() -> Use agent.signString() / agent.signStringSync() verifyAgent() -> Use agent.verifyAgent() / agent.verifyAgentSync() updateAgent() -> Use agent.updateAgent() / agent.updateAgentSync() verifyDocument() -> Use agent.verifyDocument() / agent.verifyDocumentSync() updateDocument() -> Use agent.updateDocument() / agent.updateDocumentSync() verifySignature() -> Use agent.verifySignature() / agent.verifySignatureSync() createAgreement() -> Use agent.createAgreement() / agent.createAgreementSync() signAgreement() -> Use agent.signAgreement() / agent.signAgreementSync() createDocument() -> Use agent.createDocument() / agent.createDocumentSync() checkAgreement() -> Use agent.checkAgreement() / agent.checkAgreementSync() signRequest() -> Use agent.signRequest() (V8-thread-only, sync) verifyResponse() -> Use agent.verifyResponse() (V8-thread-only, sync) verifyResponseWithAgentId() -> Use agent.verifyResponseWithAgentId() (V8-thread-only, sync) Migration Example: // Old (deprecated, v0.6.x)\nimport jacs from '@hai.ai/jacs';\njacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, async)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, sync)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"624","title":"Deprecated Functions"},"625":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const doc = await agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"625","title":"Error Handling"},"626":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"626","title":"See Also"},"627":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"627","title":"Python Installation"},"628":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"628","title":"Requirements"},"629":{"body":"","breadcrumbs":"Installation » Installation","id":"629","title":"Installation"},"63":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"63","title":"Agreement Types"},"630":{"body":"pip install jacs For framework adapters (LangChain, FastAPI, CrewAI, Anthropic, etc.) use optional extras, e.g. pip install jacs[langchain], jacs[fastapi], or jacs[all]. Optional: jacs[langgraph], jacs[ws]. See Framework Adapters and the package pyproject.toml.","breadcrumbs":"Installation » Using pip","id":"630","title":"Using pip"},"631":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"631","title":"Using conda"},"632":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"632","title":"Using poetry"},"633":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"633","title":"Development Installation"},"634":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs\nprint('JACS Python bindings loaded successfully!') # Quick check (no config file; in-memory agent)\nfrom jacs.client import JacsClient\nclient = JacsClient.ephemeral()\nsigned = client.sign_message({\"hello\": \"jacs\"})\nresult = client.verify(signed.raw_json)\nprint('Sign & verify OK:', result.valid) Or with an existing config file: import jacs\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')\nprint('Agent loaded successfully!') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"634","title":"Verify Installation"},"635":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"635","title":"Package Structure"},"636":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"636","title":"Core Module"},"637":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"637","title":"JacsAgent Methods"},"638":{"body":"","breadcrumbs":"Installation » Configuration","id":"638","title":"Configuration"},"639":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"639","title":"Configuration File"},"64":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"64","title":"Cryptographic Security"},"640":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"640","title":"Load Configuration in Python"},"641":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"641","title":"Programmatic Configuration"},"642":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"642","title":"Environment Variables"},"643":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"643","title":"Storage Backends"},"644":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"644","title":"File System (Default)"},"645":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"645","title":"Local Indexed SQLite"},"646":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"646","title":"AWS Storage"},"647":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"647","title":"Memory Storage (Testing)"},"648":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"648","title":"Cryptographic Algorithms"},"649":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"649","title":"ring-Ed25519 (Recommended)"},"65":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"65","title":"Supported Algorithms"},"650":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"650","title":"RSA-PSS"},"651":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"651","title":"pq-dilithium (Post-Quantum)"},"652":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"652","title":"pq2025 (Post-Quantum Hybrid)"},"653":{"body":"","breadcrumbs":"Installation » Development Setup","id":"653","title":"Development Setup"},"654":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"654","title":"Project Structure"},"655":{"body":"jacs>=0.9.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"655","title":"Requirements.txt Setup"},"656":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"656","title":"Basic Application"},"657":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"657","title":"Virtual Environment Setup"},"658":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"658","title":"Using venv"},"659":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"659","title":"Using conda"},"66":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"66","title":"Signature Process"},"660":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"660","title":"Using poetry"},"661":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"661","title":"Jupyter Notebook Setup"},"662":{"body":"","breadcrumbs":"Installation » Common Issues","id":"662","title":"Common Issues"},"663":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"663","title":"Module Not Found"},"664":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"664","title":"Permission Errors"},"665":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"665","title":"Binary Compatibility"},"666":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"666","title":"Windows Issues"},"667":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"667","title":"Type Hints and IDE Support"},"668":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"668","title":"Testing Setup"},"669":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"669","title":"Next Steps"},"67":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"67","title":"Key Management"},"670":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"670","title":"Examples"},"671":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"671","title":"Simplified API"},"672":{"body":"Zero-config -- one call to start signing: import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass algorithm=\"ring-Ed25519\" to override the default (pq2025). To load an existing agent explicitly, use load() instead: agent = jacs.load(\"./jacs.config.json\")\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})","breadcrumbs":"Simplified API » Quick Start","id":"672","title":"Quick Start"},"673":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"673","title":"When to Use the Simplified API"},"674":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"674","title":"API Reference"},"675":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Python quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before sign_message() or verify(). Parameters: name (str, required): Agent name used for first-time creation. domain (str, required): Agent domain used for DNS/public-key verification workflows. description (str, optional): Human-readable description. algorithm (str, optional): Signing algorithm. Default: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". config_path (str, optional): Config path (default: \"./jacs.config.json\"). Returns: AgentInfo dataclass info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config path: {info.config_path}\")\nprint(f\"Public key: {info.public_key_path}\")\nprint(f\"Private key: {info.private_key_path}\") # Or with a specific algorithm\ninfo = jacs.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", algorithm=\"ring-Ed25519\",\n)","breadcrumbs":"Simplified API » quickstart(name, domain, description=None, algorithm=None, config_path=None)","id":"675","title":"quickstart(name, domain, description=None, algorithm=None, config_path=None)"},"676":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(name=..., domain=..., ...) when you want to load a specific config file explicitly. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") strict (bool, optional): If True, verification failures raise; if None, uses JACS_STRICT_MODE env var Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None, strict=None)","id":"676","title":"load(config_path=None, strict=None)"},"677":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"677","title":"is_loaded()"},"678":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"678","title":"get_agent_info()"},"679":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"679","title":"verify_self()"},"68":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"68","title":"Versioning and Audit Trails"},"680":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"680","title":"sign_message(data)"},"681":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"681","title":"sign_file(file_path, embed=False)"},"682":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str|dict|SignedDocument): The signed document as JSON string, dict, or SignedDocument Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"682","title":"verify(signed_document)"},"683":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"683","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"684":{"body":"Verify a document by its storage ID (uuid:version) without passing the full JSON. Requires the document to be stored locally (e.g. in the agent's data directory). Parameters: document_id (str): Document ID in format \"uuid:version\" Returns: VerificationResult","breadcrumbs":"Simplified API » verify_by_id(document_id)","id":"684","title":"verify_by_id(document_id)"},"685":{"body":"Re-encrypt the loaded agent's private key with a new password. Parameters: old_password (str), new_password (str) Raises: AgentNotLoadedError if no agent loaded; JacsError if password is wrong","breadcrumbs":"Simplified API » reencrypt_key(old_password, new_password)","id":"685","title":"reencrypt_key(old_password, new_password)"},"686":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"686","title":"audit(config_path=None, recent_n=None)"},"687":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"687","title":"update_agent(new_agent_data)"},"688":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"688","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"689":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"689","title":"export_agent()"},"69":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"69","title":"Version Management"},"690":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"690","title":"get_dns_record(domain, ttl=3600)"},"691":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"691","title":"get_well_known_json()"},"692":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"692","title":"get_public_key()"},"693":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"693","title":"Type Definitions"},"694":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"694","title":"AgentInfo"},"695":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"695","title":"SignedDocument"},"696":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"696","title":"VerificationResult"},"697":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type content_hash: str # SHA-256 hash of file content content: Optional[str] = None # Base64-encoded content (if embedded) size_bytes: int = 0 # Size of the original file","breadcrumbs":"Simplified API » Attachment","id":"697","title":"Attachment"},"698":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"698","title":"Exceptions"},"699":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"699","title":"Complete Example"},"7":{"body":"Best fit for Express, Koa, Vercel AI SDK, LangChain.js, and MCP transport/tool integration Also exposes A2A helpers and Express discovery middleware","breadcrumbs":"Introduction » Node.js (@hai.ai/jacs)","id":"7","title":"Node.js (@hai.ai/jacs)"},"70":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"70","title":"Audit Trail Benefits"},"700":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"700","title":"MCP Integration"},"701":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"701","title":"Error Handling"},"702":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"702","title":"See Also"},"703":{"body":"This chapter covers fundamental JACS operations in Python. For quick signing and verification, start with the Simplified API (jacs.simple) or JacsClient ; the sections below use the JacsAgent class directly for fine-grained control.","breadcrumbs":"Basic Usage » Basic Usage","id":"703","title":"Basic Usage"},"704":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"704","title":"Initializing an Agent"},"705":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"705","title":"Create and Load Agent"},"706":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"706","title":"Configuration File"},"707":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"707","title":"Creating Documents"},"708":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"708","title":"Basic Document Creation"},"709":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"709","title":"With Custom Schema"},"71":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"71","title":"Storage and Transport"},"710":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"710","title":"With Output File"},"711":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"711","title":"Without Saving"},"712":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"712","title":"With Attachments"},"713":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"713","title":"Verifying Documents"},"714":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"714","title":"Verify Document Signature"},"715":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"715","title":"Verify Specific Signature Field"},"716":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"716","title":"Updating Documents"},"717":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"717","title":"Update Existing Document"},"718":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"718","title":"Update with New Attachments"},"719":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"719","title":"Signing and Verification"},"72":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"72","title":"Storage Options"},"720":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"720","title":"Sign Arbitrary Data"},"721":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"721","title":"Verify Arbitrary Data"},"722":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"722","title":"Working with Agreements"},"723":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"723","title":"Create an Agreement"},"724":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"724","title":"Sign an Agreement"},"725":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"725","title":"Check Agreement Status"},"726":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"726","title":"Agent Operations"},"727":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"727","title":"Verify Agent"},"728":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"728","title":"Update Agent"},"729":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"729","title":"Sign External Agent"},"73":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"73","title":"Transport Mechanisms"},"730":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"730","title":"Request/Response Signing"},"731":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"731","title":"Sign a Request"},"732":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"732","title":"Verify a Response"},"733":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"733","title":"Utility Functions"},"734":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"734","title":"Hash String"},"735":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"735","title":"Create Configuration"},"736":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"736","title":"Error Handling"},"737":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"737","title":"Complete Example"},"738":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"738","title":"Working with Document Data"},"739":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"739","title":"Parse Signed Documents"},"74":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"74","title":"Format Compatibility"},"740":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"740","title":"Document Key Format"},"741":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"741","title":"Configuration Management"},"742":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"742","title":"Load from File"},"743":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"743","title":"Environment Variables"},"744":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"744","title":"Programmatic Configuration"},"745":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"745","title":"Next Steps"},"746":{"body":"Python exposes two different MCP stories: Secure a local FastMCP transport with jacs.mcp Expose JACS operations as MCP tools with jacs.adapters.mcp Use the first when you already have an MCP server or client. Use the second when you want the model to call JACS signing, agreement, A2A, or trust helpers as normal MCP tools.","breadcrumbs":"MCP Integration (Python) » MCP Integration (Python)","id":"746","title":"MCP Integration (Python)"},"747":{"body":"Local FastMCP server wrapping with JACSMCPServer Local FastMCP client wrapping with JACSMCPClient One-line server creation with create_jacs_mcp_server() FastMCP tool registration with register_jacs_tools(), register_a2a_tools(), and register_trust_tools()","breadcrumbs":"MCP Integration (Python) » What Is Supported","id":"747","title":"What Is Supported"},"748":{"body":"JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback-only URLs Unsigned fallback is disabled by default strict=True is about config loading and failure behavior, not an opt-in to security","breadcrumbs":"MCP Integration (Python) » Important Constraints","id":"748","title":"Important Constraints"},"749":{"body":"The shortest path is the factory: from jacs.mcp import create_jacs_mcp_server mcp = create_jacs_mcp_server(\"My Server\", \"./jacs.config.json\") @mcp.tool()\ndef hello(name: str) -> str: return f\"Hello, {name}!\" If you already have a FastMCP instance: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\")","breadcrumbs":"MCP Integration (Python) » 1. Secure A FastMCP Server","id":"749","title":"1. Secure A FastMCP Server"},"75":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"75","title":"Next Steps"},"750":{"body":"from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") async with client: result = await client.call_tool(\"hello\", {\"name\": \"World\"}) To allow unsigned fallback explicitly: client = JACSMCPClient( \"http://localhost:8000/sse\", \"./jacs.config.json\", allow_unsigned_fallback=True,\n)","breadcrumbs":"MCP Integration (Python) » 2. Secure A FastMCP Client","id":"750","title":"2. Secure A FastMCP Client"},"751":{"body":"This is the better fit when the model should be able to ask for signatures, agreements, A2A cards, or trust-store operations directly. from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\") register_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client) The core tool set includes document signing, verification, agreements, audit, and agent-info helpers. The A2A and trust helpers are opt-in registrations.","breadcrumbs":"MCP Integration (Python) » 3. Register JACS As MCP Tools","id":"751","title":"3. Register JACS As MCP Tools"},"752":{"body":"From jacs.mcp: jacs_tool to sign a specific tool's response jacs_middleware() for explicit Starlette middleware jacs_call() for one-off authenticated local MCP calls","breadcrumbs":"MCP Integration (Python) » Useful Helper APIs","id":"752","title":"Useful Helper APIs"},"753":{"body":"jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacspy/examples/mcp_server.py jacspy/tests/test_adapters_mcp.py","breadcrumbs":"MCP Integration (Python) » Example Paths In This Repo","id":"753","title":"Example Paths In This Repo"},"754":{"body":"Choose Python Framework Adapters instead of MCP when: the model and tools already live in the same Python process you only need signed LangChain, LangGraph, CrewAI, or FastAPI boundaries you do not need MCP clients to connect from outside the app","breadcrumbs":"MCP Integration (Python) » When To Use Adapters Instead","id":"754","title":"When To Use Adapters Instead"},"755":{"body":"Use adapters when the model already runs inside your Python app and you want provenance at the framework boundary, not a separate MCP server.","breadcrumbs":"Framework Adapters » Framework Adapters","id":"755","title":"Framework Adapters"},"756":{"body":"If you need... API Start here Signed LangChain tool results jacs_signing_middleware, signed_tool LangChain / LangGraph section below Signed LangGraph ToolNode outputs jacs_wrap_tool_call, with_jacs_signing LangChain / LangGraph section below Signed FastAPI responses and verified inbound requests JacsMiddleware, jacs_route FastAPI section below Signed CrewAI task output jacs_guardrail, signed_task CrewAI section below Signed Anthropic tool return values jacs.adapters.anthropic.signed_tool Anthropic section below Install only the extra you need: pip install jacs[langchain]\npip install jacs[fastapi]\npip install jacs[crewai]\npip install jacs[anthropic] Optional: jacs[langgraph] (LangGraph ToolNode), jacs[ws] (WebSockets). See pyproject.toml for the full list.","breadcrumbs":"Framework Adapters » Choose The Adapter","id":"756","title":"Choose The Adapter"},"757":{"body":"This is the smallest JACS path if your model already lives in LangChain.","breadcrumbs":"Framework Adapters » LangChain / LangGraph","id":"757","title":"LangChain / LangGraph"},"758":{"body":"from langchain.agents import create_agent\nfrom jacs.client import JacsClient\nfrom jacs.adapters.langchain import jacs_signing_middleware client = JacsClient.quickstart(name=\"langchain-agent\", domain=\"langchain.local\") agent = create_agent( model=\"openai:gpt-4o\", tools=[search_tool, calc_tool], middleware=[jacs_signing_middleware(client=client)],\n)","breadcrumbs":"Framework Adapters » LangChain middleware","id":"758","title":"LangChain middleware"},"759":{"body":"from jacs.adapters.langchain import with_jacs_signing tool_node = with_jacs_signing([search_tool, calc_tool], client=client)","breadcrumbs":"Framework Adapters » LangGraph ToolNode","id":"759","title":"LangGraph ToolNode"},"76":{"body":"Get signing and verifying in under a minute. No manual setup needed.","breadcrumbs":"Quick Start » Quick Start Guide","id":"76","title":"Quick Start Guide"},"760":{"body":"from jacs.adapters.langchain import signed_tool signed_search = signed_tool(search_tool, client=client) The executable example to start from in this repo is jacspy/examples/langchain/signing_callback.py.","breadcrumbs":"Framework Adapters » Wrap one tool instead of the whole graph","id":"760","title":"Wrap one tool instead of the whole graph"},"761":{"body":"Use this when the trust boundary is an API route instead of an MCP transport. from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.adapters.fastapi import JacsMiddleware client = JacsClient.quickstart(name=\"api-agent\", domain=\"api.local\")\napp = FastAPI()\napp.add_middleware(JacsMiddleware, client=client) Useful options: strict=True to reject verification failures instead of passing through sign_responses=False or verify_requests=False to narrow the behavior a2a=True to also expose A2A discovery routes from the same FastAPI app For auth-style endpoints, replay protection is available: app.add_middleware( JacsMiddleware, client=client, strict=True, auth_replay_protection=True, auth_max_age_seconds=30, auth_clock_skew_seconds=5,\n) To sign only one route: from jacs.adapters.fastapi import jacs_route @app.get(\"/signed\")\n@jacs_route(client=client)\nasync def signed_endpoint(): return {\"ok\": True}","breadcrumbs":"Framework Adapters » FastAPI / Starlette","id":"761","title":"FastAPI / Starlette"},"762":{"body":"CrewAI support is guardrail-first: from crewai import Task\nfrom jacs.adapters.crewai import jacs_guardrail task = Task( description=\"Summarize the report\", agent=my_agent, guardrail=jacs_guardrail(client=client),\n) If you build tasks with factories, signed_task() can pre-attach the guardrail.","breadcrumbs":"Framework Adapters » CrewAI","id":"762","title":"CrewAI"},"763":{"body":"Use the Anthropic adapter when you want signed return values from normal Python tool functions: from jacs.adapters.anthropic import signed_tool @signed_tool(client=client)\ndef get_weather(location: str) -> str: return f\"Weather in {location}: sunny\"","breadcrumbs":"Framework Adapters » Anthropic / Claude SDK","id":"763","title":"Anthropic / Claude SDK"},"764":{"body":"Choose Python MCP Integration instead of adapters when: the model is outside your process and talks over MCP you want an MCP tool suite for JACS operations you need the same server to be usable by external MCP clients","breadcrumbs":"Framework Adapters » When To Use MCP Instead","id":"764","title":"When To Use MCP Instead"},"765":{"body":"Complete API documentation for the jacs Python package. For most use cases, the Simplified API (jacs.simple) and JacsClient (instance-based, multiple agents) are recommended. This page documents the lower-level JacsAgent class and module-level functions.","breadcrumbs":"API Reference » API Reference","id":"765","title":"API Reference"},"766":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"766","title":"Installation"},"767":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"767","title":"Core Module"},"768":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"768","title":"JacsAgent Class"},"769":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"769","title":"Constructor"},"77":{"body":"quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Quick Start » Zero-Config Quick Start","id":"77","title":"Zero-Config Quick Start"},"770":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"770","title":"agent.load(config_path)"},"771":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"771","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"772":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"772","title":"agent.verify_document(document_string)"},"773":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"773","title":"agent.verify_signature(document_string, signature_field=None)"},"774":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"774","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"775":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"775","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"776":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"776","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"777":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"777","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"778":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifact_json (str): JSON string of the artifact to sign artifact_type (str): Type of artifact (e.g., \"task\", \"message\") parent_signatures_json (str, optional): JSON string of parent signatures for chain of custody Returns: str - The signed, wrapped artifact as a JSON string Example: signed = agent.sign_artifact( json.dumps({\"action\": \"classify\", \"input\": \"hello\"}), \"task\"\n)","breadcrumbs":"API Reference » agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"778","title":"agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"779":{"body":"Deprecated since 0.9.0. Use sign_artifact() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to sign_artifact(). Parameters: Same as sign_artifact().","breadcrumbs":"API Reference » agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"779","title":"agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"78":{"body":"Rust CLI quickstart requires a password source. Choose one: # Option A: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations)\njacs keychain set # prompts once, then all JACS commands find the password automatically # Option C: Password file (CLI convenience)\nexport JACS_PASSWORD_FILE=/secure/path/jacs-password.txt If both JACS_PRIVATE_KEY_PASSWORD and JACS_PASSWORD_FILE are set, CLI fails fast to avoid ambiguity. The OS keychain is the lowest-priority source and is only consulted when neither env var nor password file is set. Python/Node quickstart can auto-generate a secure password if JACS_PRIVATE_KEY_PASSWORD is unset. Set JACS_SAVE_PASSWORD_FILE=true if you want the generated password persisted to ./jacs_keys/.jacs_password. In production, set JACS_PRIVATE_KEY_PASSWORD explicitly. One call and you're signing. Python pip install jacs import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") Node.js npm install @hai.ai/jacs const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); Rust CLI cargo install jacs-cli # Info mode -- prints agent ID and algorithm\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json Pass algorithm=\"ring-Ed25519\" (or { algorithm: 'ring-Ed25519' } in JS, --algorithm ring-Ed25519 in CLI) to override the default (pq2025). That's it -- you're signing. For most use cases, the quick start above is all you need. Jump to Which integration should I use? to find the right framework adapter, or read on for manual agent setup.","breadcrumbs":"Quick Start » Password bootstrap","id":"78","title":"Password bootstrap"},"780":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"780","title":"agent.sign_string(data)"},"781":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"781","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"782":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"782","title":"agent.sign_request(params)"},"783":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"783","title":"agent.verify_response(document_string)"},"784":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"784","title":"agent.verify_response_with_agent_id(document_string)"},"785":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"785","title":"agent.verify_agent(agent_file=None)"},"786":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"786","title":"agent.update_agent(new_agent_string)"},"787":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"787","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"788":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"788","title":"Module-Level Functions"},"789":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"789","title":"jacs.load(config_path)"},"79":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Quick Start » macOS Homebrew install (Rust CLI)","id":"79","title":"macOS Homebrew install (Rust CLI)"},"790":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"790","title":"jacs.sign_request(data)"},"791":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"791","title":"jacs.verify_request(data)"},"792":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"792","title":"jacs.sign_response(data)"},"793":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"793","title":"jacs.verify_response(data)"},"794":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient, create_jacs_mcp_server, jacs_call Canonical MCP documentation lives at Python MCP Integration . This API section lists the MCP entry points only: JACSMCPServer(mcp_server, config_path=\"./jacs.config.json\", strict=False) - Wrap a FastMCP server with JACS request verification and response signing. JACSMCPClient(url, config_path=\"./jacs.config.json\", strict=False, **kwargs) - Create a FastMCP client with JACS signing/verification interceptors. create_jacs_mcp_server(name, config_path=None) - One-line server factory. jacs_call(server_url, method, **params) - One-shot authenticated MCP call. For examples, strict-mode behavior, and security guidance, see Python MCP Integration .","breadcrumbs":"API Reference » MCP Module","id":"794","title":"MCP Module"},"795":{"body":"","breadcrumbs":"API Reference » Configuration","id":"795","title":"Configuration"},"796":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"796","title":"Configuration File Format"},"797":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"797","title":"Configuration Options"},"798":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"798","title":"Error Handling"},"799":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"799","title":"Common Exceptions"},"8":{"body":"Good fit for services that need signing and verification without framework adapters","breadcrumbs":"Introduction » Go (jacsgo)","id":"8","title":"Go (jacsgo)"},"80":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Quick Start » MCP server (Rust CLI)","id":"80","title":"MCP server (Rust CLI)"},"800":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"800","title":"Type Hints"},"801":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"801","title":"Thread Safety"},"802":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"802","title":"See Also"},"803":{"body":"jacsgo provides Go bindings for signing and verifying JACS documents in services, APIs, and agent runtimes. Note: Go bindings are community-maintained. Python and Node.js currently have broader framework adapter coverage. For full MCP surface use the Rust jacs-mcp server; the Go MCP examples in the repo are demo code.","breadcrumbs":"Installation & Quick Start » Go (jacsgo) Installation and Quick Start","id":"803","title":"Go (jacsgo) Installation and Quick Start"},"804":{"body":"go get github.com/HumanAssisted/JACS/jacsgo","breadcrumbs":"Installation & Quick Start » Install","id":"804","title":"Install"},"805":{"body":"Create an agent first (CLI: jacs create --name my-agent, or programmatically with jacs.Create() and JACS_PRIVATE_KEY_PASSWORD). Then: package main import ( \"fmt\" \"log\" jacs \"github.com/HumanAssisted/JACS/jacsgo\"\n) func main() { // Load agent: nil = default ./jacs.config.json if err := jacs.Load(nil); err != nil { log.Fatal(\"create an agent first: jacs create --name my-agent\") } signed, err := jacs.SignMessage(map[string]interface{}{ \"event\": \"tool-result\", \"status\": \"ok\", }) if err != nil { log.Fatal(err) } result, err := jacs.Verify(signed.Raw) if err != nil { log.Fatal(err) } fmt.Printf(\"Valid: %t signer=%s\\n\", result.Valid, result.SignerID)\n}","breadcrumbs":"Installation & Quick Start » Minimal Sign + Verify","id":"805","title":"Minimal Sign + Verify"},"806":{"body":"Use jacs.Create(name, &jacs.CreateAgentOptions{...}). Password must be set in options or via JACS_PRIVATE_KEY_PASSWORD. See the jacsgo README for the full API table and options.","breadcrumbs":"Installation & Quick Start » Programmatic agent creation","id":"806","title":"Programmatic agent creation"},"807":{"body":"For multiple agents in one process, use NewJacsAgent(), then agent.Load(path) and agent methods; call agent.Close() when done. Attestation, A2A (agent cards, trust policy), and protocol helpers are available on JacsAgent and as package-level wrappers (see godoc or the jacsgo README).","breadcrumbs":"Installation & Quick Start » Concurrent use","id":"807","title":"Concurrent use"},"808":{"body":"Sign outbound API/MCP payloads before crossing trust boundaries Verify inbound signed payloads before executing sensitive actions Sign files (SignFile) for portable chain-of-custody workflows Generate DNS TXT fingerprints (GetDnsRecord) for public identity verification","breadcrumbs":"Installation & Quick Start » Common Go Use Cases","id":"808","title":"Common Go Use Cases"},"809":{"body":"The Go repository includes runnable examples for transport-level signing: jacsgo/examples/mcp/main.go for MCP-style request/response signing jacsgo/examples/http/ for signed HTTP client/server traffic","breadcrumbs":"Installation & Quick Start » MCP and HTTP Patterns","id":"809","title":"MCP and HTTP Patterns"},"81":{"body":"For full control over agent creation, you can set up an agent manually with a config file and JACS_PRIVATE_KEY_PASSWORD environment variable. This is optional since quickstart(...) already creates a persistent agent. Rust CLI","breadcrumbs":"Quick Start » Advanced: Explicit Agent Setup","id":"81","title":"Advanced: Explicit Agent Setup"},"810":{"body":"JACS agent identity is key-based (jacsId + versioned signatures) Verification behavior follows the configured key-resolution order in the runtime (for example local and remote resolution modes supported by the underlying JACS core) DID interoperability is possible at the integration layer without requiring blockchain infrastructure See DNS-Based Verification and DID Integration (No Blockchain Required) .","breadcrumbs":"Installation & Quick Start » Identity and Trust Notes","id":"810","title":"Identity and Trust Notes"},"811":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"811","title":"JSON Schemas"},"812":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"812","title":"Schema Architecture"},"813":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"813","title":"Schema Categories"},"814":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"814","title":"Configuration Schema"},"815":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"815","title":"Document Schemas"},"816":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"816","title":"Component Schemas"},"817":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"817","title":"Schema Locations"},"818":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"818","title":"Using Schemas"},"819":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"819","title":"In Documents"},"82":{"body":"cargo install jacs-cli","breadcrumbs":"Quick Start » Install","id":"82","title":"Install"},"820":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"820","title":"In Configuration Files"},"821":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"821","title":"Custom Schema Validation"},"822":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"822","title":"HAI Extensions"},"823":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"823","title":"Versioning"},"824":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"824","title":"Schema Composition"},"825":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"825","title":"Creating Custom Schemas"},"826":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"826","title":"Validation Rules"},"827":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"827","title":"Required Fields"},"828":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"828","title":"Format Validation"},"829":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"829","title":"Enum Constraints"},"83":{"body":"# Create configuration and agent in one step\njacs init # Or step by step:\n# 1. Create config\njacs config create\n# 2. Create agent with keys\njacs agent create --create-keys true\n# 3. Verify\njacs agent verify","breadcrumbs":"Quick Start » Initialize","id":"83","title":"Initialize"},"830":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"830","title":"Schema Reference"},"831":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"831","title":"See Also"},"832":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"832","title":"Agent Schema"},"833":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"833","title":"Schema Location"},"834":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"834","title":"Overview"},"835":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"835","title":"Schema Structure"},"836":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"836","title":"Agent Types"},"837":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"837","title":"Contact Requirements"},"838":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"838","title":"Agent Properties"},"839":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"839","title":"Core Fields (from Header)"},"84":{"body":"jacs document create -f mydata.json Node.js","breadcrumbs":"Quick Start » Sign a document","id":"84","title":"Sign a document"},"840":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"840","title":"Agent-Specific Fields"},"841":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"841","title":"Services"},"842":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"842","title":"Service Schema Fields"},"843":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"843","title":"PII Types"},"844":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"844","title":"Contacts"},"845":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"845","title":"Contact Schema Fields"},"846":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"846","title":"DNS Verification"},"847":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"847","title":"Complete Example"},"848":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"848","title":"AI Agent"},"849":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"849","title":"Human Agent"},"85":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install","id":"85","title":"Install"},"850":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"850","title":"Organization Agent"},"851":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"851","title":"Creating Agents"},"852":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"852","title":"Python"},"853":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"853","title":"Node.js"},"854":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"854","title":"CLI"},"855":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"855","title":"Verifying Agents"},"856":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"856","title":"See Also"},"857":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"857","title":"Document Schema"},"858":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"858","title":"Schema Location"},"859":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"859","title":"Overview"},"86":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load from config file\nawait jacs.load('./jacs.config.json'); const signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`); Python","breadcrumbs":"Quick Start » Load and use","id":"86","title":"Load and use"},"860":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"860","title":"Core Fields"},"861":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"861","title":"Identification"},"862":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"862","title":"Versioning"},"863":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"863","title":"Document Level"},"864":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"864","title":"Cryptographic Fields"},"865":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string Yes Algorithm used (ring-Ed25519, RSA-PSS, pq2025; pq-dilithium is legacy/deprecated) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"865","title":"Signature"},"866":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"866","title":"Registration"},"867":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"867","title":"Hash"},"868":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"868","title":"Agreements"},"869":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"869","title":"Agreement Schema Fields"},"87":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install","id":"87","title":"Install"},"870":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"870","title":"File Attachments"},"871":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"871","title":"File Schema Fields"},"872":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"872","title":"Vector Embeddings"},"873":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"873","title":"Embedding Schema Fields"},"874":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"874","title":"Complete Example"},"875":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"875","title":"HAI Field Categories"},"876":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"876","title":"Working with Documents"},"877":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"877","title":"Creating Documents"},"878":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"878","title":"Verifying Documents"},"879":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"879","title":"Updating Documents"},"88":{"body":"import jacs.simple as jacs # Load from config file\njacs.load(\"./jacs.config.json\") signed = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Quick Start » Load and use","id":"88","title":"Load and use"},"880":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"880","title":"Adding Attachments"},"881":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"881","title":"Version History"},"882":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"882","title":"See Also"},"883":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"883","title":"Task Schema"},"884":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"884","title":"Schema Location"},"885":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"885","title":"Overview"},"886":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"886","title":"Schema Structure"},"887":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"887","title":"Task States"},"888":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"888","title":"State Transitions"},"889":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"889","title":"Task Properties"},"89":{"body":"For scripts, CI/CD, and server environments where you need agents created programmatically with explicit parameters (without interactive prompts), use create(). For most cases, quickstart(...) above is simpler and also creates a persistent agent. Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = await jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Programmatic Agent Creation (v0.6.0+)","id":"89","title":"Programmatic Agent Creation (v0.6.0+)"},"890":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"890","title":"Core Fields (from Header)"},"891":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"891","title":"Task-Specific Fields"},"892":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"892","title":"Relationship Fields"},"893":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"893","title":"Actions"},"894":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"894","title":"Action Schema Fields"},"895":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"895","title":"Unit Schema"},"896":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"896","title":"Agreements"},"897":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"897","title":"Start Agreement"},"898":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"898","title":"End Agreement"},"899":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"899","title":"Complete Example"},"9":{"body":"","breadcrumbs":"Introduction » Quick Start","id":"9","title":"Quick Start"},"90":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"90","title":"Understanding What Happened"},"900":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"900","title":"Task Relationships"},"901":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"901","title":"Sub-Tasks"},"902":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"902","title":"Task Copies (Branching)"},"903":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"903","title":"Merged Tasks"},"904":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"904","title":"Task Workflow"},"905":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"905","title":"1. Creating a Task"},"906":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"906","title":"2. Assigning an Agent"},"907":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"907","title":"3. Signing Start Agreement"},"908":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"908","title":"4. Completing Work"},"909":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"909","title":"5. Final Completion"},"91":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"91","title":"1. Agent Creation"},"910":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"910","title":"State Machine Rules"},"911":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"911","title":"See Also"},"912":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"912","title":"Agent State Schema"},"913":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"913","title":"Schema Location"},"914":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"914","title":"Overview"},"915":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"915","title":"Schema Structure"},"916":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"916","title":"State Types"},"917":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"917","title":"Properties"},"918":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"918","title":"Required Fields"},"919":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"919","title":"Optional Fields"},"92":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"92","title":"2. Configuration Setup"},"920":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"920","title":"Origin Tracking"},"921":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"921","title":"File References"},"922":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"922","title":"Examples"},"923":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"923","title":"Minimal Agent State"},"924":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"924","title":"Memory File with Embedding"},"925":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"925","title":"Adopted Skill"},"926":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"926","title":"General-Purpose Signed Document"},"927":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"927","title":"Rust API"},"928":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"928","title":"Creating Agent State Documents"},"929":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"929","title":"Signing and Verification"},"93":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"93","title":"3. Task Creation"},"930":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document by JACS document ID (jacs_id) jacs_load_state Load an agent state document by JACS document ID (jacs_id) jacs_update_state Update and re-sign an agent state document by JACS document ID (jacs_id) jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"930","title":"MCP Tools"},"931":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"931","title":"MCP Example: Sign a Memory File"},"932":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"932","title":"MCP Example: Sign Any Document"},"933":{"body":"All agent state documents are stored within the JACS data directory for security MCP verify/load/update flows are jacs_id-based; direct path-only access is disabled Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"933","title":"Security Notes"},"934":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"934","title":"See Also"},"935":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"935","title":"Commitment Schema"},"936":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"936","title":"Schema"},"937":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"937","title":"Required Fields"},"938":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"938","title":"Status Lifecycle"},"939":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"939","title":"Optional Fields"},"94":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature (async)\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"94","title":"Verify Everything Works"},"940":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"940","title":"Cross-References"},"941":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"941","title":"Multi-Agent Agreements"},"942":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"942","title":"Example"},"943":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"943","title":"Rust API"},"944":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"944","title":"Versioning"},"945":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"945","title":"See Also"},"946":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"946","title":"Todo List Schema"},"947":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"947","title":"Schema"},"948":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"948","title":"Required Fields"},"949":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"949","title":"Optional Fields"},"95":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nawait reviewer.load('./reviewer.config.json'); // Create agreement between agents\nconst signedAgreement = await agent.createAgreement( signedTask, [agentDoc.jacsId, reviewerDoc.jacsId], 'Do you agree to collaborate on this content task?'\n); // Both agents sign the agreement\nconst signed1 = await agent.signAgreement(signedAgreement);\nconst signed2 = await reviewer.signAgreement(signed1); // Check agreement status\nconst status = await agent.checkAgreement(signed2);\nconsole.log('Agreement status:', JSON.parse(status)); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"95","title":"Next Steps: Multi-Agent Workflow"},"950":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"950","title":"Todo Items"},"951":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"951","title":"Required Item Fields"},"952":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"952","title":"Optional Item Fields"},"953":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"953","title":"Cross-References"},"954":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"954","title":"Item Hierarchy"},"955":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"955","title":"Example"},"956":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"956","title":"Rust API"},"957":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"957","title":"Versioning"},"958":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"958","title":"See Also"},"959":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"959","title":"Conversation Schema"},"96":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"96","title":"What You've Accomplished"},"960":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"960","title":"Schema"},"961":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"961","title":"Message Fields"},"962":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"962","title":"Required"},"963":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"963","title":"Optional"},"964":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"964","title":"Threading Model"},"965":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"965","title":"Immutability"},"966":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"966","title":"Example"},"967":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"967","title":"Rust API"},"968":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"968","title":"Cross-References"},"969":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"969","title":"See Also"},"97":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"97","title":"Key Takeaways"},"970":{"body":"This page documents the jacs.config.json schema fields. For a comprehensive configuration guide including observability setup, storage backends, zero-config quickstart, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Config File Schema","id":"970","title":"Config File Schema"},"971":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Config File Schema » Schema Location","id":"971","title":"Schema Location"},"972":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Config File Schema » Minimal Configuration","id":"972","title":"Minimal Configuration"},"973":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend jacs_keychain_backend string OS keychain backend: \"auto\", \"macos-keychain\", \"linux-secret-service\", \"disabled\"","breadcrumbs":"Config File Schema » Fields","id":"973","title":"Fields"},"974":{"body":"","breadcrumbs":"Config File Schema » Configuration Options","id":"974","title":"Configuration Options"},"975":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable or jacs keychain set (OS keychain) instead. See OS Keychain Configuration .","breadcrumbs":"Config File Schema » Key Configuration","id":"975","title":"Key Configuration"},"976":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Config File Schema » Storage Configuration","id":"976","title":"Storage Configuration"},"977":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Config File Schema » Agent Identity","id":"977","title":"Agent Identity"},"978":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Config File Schema » Schema Versions","id":"978","title":"Schema Versions"},"979":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Config File Schema » DNS Configuration","id":"979","title":"DNS Configuration"},"98":{"body":"Now that you have the basics working: Verify Signed Documents - Verify any document from CLI, Python, or Node.js -- no agent required A2A Quickstart - Make your agent discoverable by other A2A agents in minutes Framework Adapters - Add auto-signing to LangChain, FastAPI, CrewAI, or Anthropic SDK in 1-3 lines Multi-Agent Agreements - Cross-trust-boundary verification with quorum and timeout Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"98","title":"Where to Go Next"},"980":{"body":"jacs_keychain_backend OS keychain backend for password storage. Controls whether JACS looks up the private key password from the OS credential store. { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect platform default (macOS Keychain or Linux Secret Service) \"macos-keychain\" macOS Keychain \"linux-secret-service\" Linux D-Bus Secret Service \"disabled\" Never consult OS keychain (recommended for CI/headless) Override with env var: JACS_KEYCHAIN_BACKEND=disabled See OS Keychain Configuration for full details. jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Config File Schema » Security","id":"980","title":"Security"},"981":{"body":"The observability object supports logs, metrics, and tracing sub-objects. For full details on all destinations, sampling options, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Observability Fields","id":"981","title":"Observability Fields"},"982":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory JACS_KEYCHAIN_BACKEND jacs_keychain_backend","breadcrumbs":"Config File Schema » Environment Variables","id":"982","title":"Environment Variables"},"983":{"body":"Configuration Reference - Full configuration guide with examples JSON Schemas Overview - Schema architecture Observability (Rust API) - Rust observability API Observability & Monitoring Guide - Structured events, OTEL collector setup","breadcrumbs":"Config File Schema » See Also","id":"983","title":"See Also"},"984":{"body":"JACS occupies a unique position as an agent-layer attestation framework. This page compares JACS with related standards and explains when to use them together.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS Attestation vs. Other Standards","id":"984","title":"JACS Attestation vs. Other Standards"},"985":{"body":"Feature JACS in-toto / SLSA Sigstore / cosign SCITT IETF RATS / EAT Primary domain AI agent runtime Build provenance Artifact signing Transparency logs Hardware/platform attestation Identity model Decentralized (key pairs) Build system certs Keyless (OIDC) Issuer certs Platform certs Agent-native Yes No No No Partial Offline verification Yes Yes (with keys) No (requires Rekor) No (requires log) Depends Multi-agent quorum Yes (M-of-N) No No No No Evidence normalization Yes (A2A, email, JWT, custom) No No No Partial (EAT claims) Transform receipts Yes (derivation chains) Yes (build steps) No No No Probabilistic claims Yes (confidence + assurance) No No No No Post-quantum Yes (ML-DSA-87) No No No Depends Central infrastructure Not required Not required Required (Fulcio + Rekor) Required (transparency log) Depends Schema format JSON Schema + JCS in-toto layout Sigstore bundle SCITT receipt CBOR/COSE","breadcrumbs":"JACS Attestation vs. Other Standards » Comparison Table","id":"985","title":"Comparison Table"},"986":{"body":"Domain difference: in-toto and SLSA focus on build provenance -- proving that a software artifact was built by a specific builder from specific source code. JACS focuses on runtime agent actions -- proving that a specific agent performed a specific action with specific evidence. Interoperability: JACS exports attestations as DSSE (Dead Simple Signing Envelope) documents, the same format used by in-toto v1.0+. This means: A JACS attestation can include an in-toto predicate type URI SLSA verifiers can validate the DSSE envelope structure JACS and in-toto attestations can coexist in the same verification pipeline When to use both: If your workflow includes both software builds (use SLSA/in-toto for build provenance) and AI agent actions (use JACS for runtime attestation), you can link them via derivation chains.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. in-toto / SLSA","id":"986","title":"JACS vs. in-toto / SLSA"},"987":{"body":"Domain difference: Sigstore provides signing infrastructure (Fulcio CA, Rekor transparency log) and cosign is a tool for signing container images and artifacts. JACS provides its own signing with decentralized identity. Key difference: Sigstore's keyless signing relies on centralized OIDC identity providers and a public transparency log. JACS uses self-managed key pairs and does not require any centralized infrastructure. When to use both: Sigstore for container image signing in CI/CD pipelines. JACS for AI agent action signing at runtime. A planned Sigstore bundle verification adapter (N+2) would let JACS attestations reference Sigstore signatures as evidence.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. Sigstore / cosign","id":"987","title":"JACS vs. Sigstore / cosign"},"988":{"body":"Most overlap. SCITT (Supply Chain Integrity, Transparency and Trust) defines a centralized transparency service for recording signed statements about artifacts. Key difference: SCITT requires a transparency log (centralized notary). JACS is fully decentralized and offline-capable. JACS verification works without contacting any server. Complementary use: JACS signs and attests. SCITT logs. An organization could use JACS to create signed attestations and then submit them to a SCITT transparency log for auditability, getting the benefits of both decentralized creation and centralized discoverability.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. SCITT","id":"988","title":"JACS vs. SCITT"},"989":{"body":"Layer difference: RATS (Remote ATtestation procedureS) and EAT (Entity Attestation Token) focus on hardware and platform attestation -- proving that a device or execution environment is in a known-good state. JACS fills the software agent layer above hardware. Alignment opportunity: JACS claim names could align with IANA-registered EAT claim types where they overlap. A JACS attestation could reference a RATS attestation result as evidence, creating a trust chain from hardware to agent. IETF drafts of interest: draft-huang-rats-agentic-eat-cap-attest-00 -- Capability attestation for agents, directly aligned with JACS claims model draft-messous-eat-ai-00 -- EAT profile for AI agents draft-jiang-seat-dynamic-attestation-00 -- Dynamic attestation for runtime assertions","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. IETF RATS / EAT","id":"989","title":"JACS vs. IETF RATS / EAT"},"99":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"99","title":"Troubleshooting"},"990":{"body":"The Cloud Security Alliance's Agentic Trust Framework defines progressive trust levels that map directly to JACS's trust model: CSA Level JACS Equivalent Verification None No JACS No signing Basic Open Valid signature accepted Standard Verified Trust store + DNS verification Enhanced Strict Attestation-level evidence required","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. CSA Agentic Trust Framework","id":"990","title":"JACS vs. CSA Agentic Trust Framework"},"991":{"body":"Use JACS when you need: Agent identity that works without PKI/CA infrastructure Non-repudiable action logging for AI agent workflows Multi-agent authorization with quorum (M-of-N approval) Offline verification without centralized services Evidence-backed trust that goes beyond simple signing Post-quantum readiness for long-lived agent identities","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS","id":"991","title":"When to Use JACS"},"992":{"body":"Scenario JACS + ... CI/CD pipeline with AI agents JACS (agent actions) + SLSA (build provenance) Enterprise with compliance requirements JACS (signing) + SCITT (transparency log) IoT/edge with hardware attestation JACS (agent layer) + RATS/EAT (hardware layer) Container-based agent deployment JACS (runtime signing) + cosign (image signing)","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS Alongside Other Tools","id":"992","title":"When to Use JACS Alongside Other Tools"},"993":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"993","title":"Security Model"},"994":{"body":"Passwords : The private key password can be provided via JACS_PRIVATE_KEY_PASSWORD environment variable, JACS_PASSWORD_FILE, or the OS keychain (macOS Keychain / Linux Secret Service). It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : Registry verification requires HTTPS for JACS_REGISTRY_URL (legacy alias: HAI_API_URL). Localhost HTTP is allowed for local testing only. No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0+)","id":"994","title":"Security Model (v0.6.0+)"},"995":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"995","title":"Core Security Principles"},"996":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"996","title":"1. Cryptographic Identity"},"997":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"997","title":"2. Document Integrity"},"998":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"998","title":"3. Non-Repudiation"},"999":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"999","title":"Security Audit (audit())"}},"length":1657,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.0},"1245":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.0},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.0}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.0}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.0},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.0},"1246":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.0},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.0},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.0},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":71,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1262":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":2.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.4142135623730951},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.0},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.449489742783178},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.0},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"241":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.0},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":62,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.0},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.4142135623730951}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":627,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1009":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"110":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.0},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.449489742783178},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":1.7320508075688772},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.0},"1282":{"tf":1.7320508075688772},"1283":{"tf":2.23606797749979},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.0},"1412":{"tf":2.8284271247461903},"1413":{"tf":3.3166247903554},"1414":{"tf":2.6457513110645907},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":2.0},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"211":{"tf":2.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":2.23606797749979},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.6457513110645907},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.449489742783178},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.4142135623730951},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":1.7320508075688772},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":1.7320508075688772},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":2.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.6457513110645907},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"81":{"tf":2.0},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.0},"834":{"tf":1.7320508075688772},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"854":{"tf":2.0},"855":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.0},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"912":{"tf":2.449489742783178},"914":{"tf":1.7320508075688772},"915":{"tf":1.4142135623730951},"916":{"tf":2.449489742783178},"918":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.7320508075688772},"921":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"931":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.4142135623730951},"946":{"tf":1.0},"95":{"tf":4.242640687119285},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.4142135623730951},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.4142135623730951},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":150,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":2.0},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.449489742783178},"1219":{"tf":2.0},"1220":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.0},"1408":{"tf":2.6457513110645907},"1409":{"tf":3.605551275463989},"1410":{"tf":3.3166247903554},"1440":{"tf":1.0},"1441":{"tf":2.23606797749979},"1442":{"tf":2.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":2.23606797749979},"1465":{"tf":2.0},"1466":{"tf":1.0},"1501":{"tf":3.1622776601683795},"1565":{"tf":1.0},"1566":{"tf":2.23606797749979},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.8284271247461903},"210":{"tf":2.6457513110645907},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.7320508075688772},"306":{"tf":2.0},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"722":{"tf":1.0},"723":{"tf":1.4142135623730951},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.0},"869":{"tf":1.0},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":45,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1391":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"29":{"tf":1.0},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":104,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1111":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1121":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":2.0},"1131":{"tf":1.0},"1133":{"tf":2.23606797749979},"1136":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":2.23606797749979},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.449489742783178},"1554":{"tf":2.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.0},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.7320508075688772},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.0},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":1.7320508075688772},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"1196":{"tf":1.4142135623730951},"120":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"318":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.4142135623730951},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":103,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.0},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"184":{"tf":1.0},"301":{"tf":1.4142135623730951},"32":{"tf":1.0},"334":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.4142135623730951},"397":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.0},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"592":{"tf":1.0},"608":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"674":{"tf":1.0},"683":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.7320508075688772},"794":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1372":{"tf":1.0},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.0},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.0},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0}}}}}},"df":63,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":2.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.0},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.4142135623730951},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.449489742783178},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.0},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.4142135623730951},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":79,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.4142135623730951},"1317":{"tf":1.7320508075688772},"1318":{"tf":1.0},"132":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":2.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":2.0},"1345":{"tf":1.7320508075688772},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":2.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.7320508075688772},"1598":{"tf":2.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.8284271247461903},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1614":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951},"989":{"tf":3.0},"990":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.0}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.0},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.0},"686":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.23606797749979},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.0},"1618":{"tf":1.0},"175":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.23606797749979},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.23606797749979},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.0},"646":{"tf":2.0},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.0},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":2.449489742783178},"1571":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1636":{"tf":1.0},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":51,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.0},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":44,"docs":{"1156":{"tf":1.0},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1461":{"tf":1.0},"1503":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1611":{"tf":1.0},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.0},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.0},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.4142135623730951},"503":{"tf":1.0},"665":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":1.7320508075688772},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.0}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.0},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"130":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.0},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.4142135623730951},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":23,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.449489742783178},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":31,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.0},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.0},"875":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.0},"1071":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.0},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.0},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1249":{"tf":1.0},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.0},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.0},"332":{"tf":1.0},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":1.7320508075688772},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.4142135623730951},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1482":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1614":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"207":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.0},"1459":{"tf":1.0},"1462":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.0},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":46,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.0},"1277":{"tf":1.0},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1629":{"tf":1.0},"212":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":1.7320508075688772},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":40,"docs":{"1062":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":1.7320508075688772},"1483":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":23,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.0},"943":{"tf":2.6457513110645907},"944":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"1502":{"tf":1.0},"1506":{"tf":1.0},"1523":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"380":{"tf":1.0},"429":{"tf":1.0},"436":{"tf":1.0},"510":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"671":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.0},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.0},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":26,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"874":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.0},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.0},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"125":{"tf":1.0},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.4142135623730951},"552":{"tf":1.0},"564":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":1.7320508075688772},"659":{"tf":2.0},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.0},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":109,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.0},"982":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":180,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":2.0},"1531":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1580":{"tf":1.4142135623730951},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"820":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.23606797749979},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1247":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"397":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.0},"1251":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.4142135623730951},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.0},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"767":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.0},"1229":{"tf":2.23606797749979},"1230":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":293,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":3.872983346207417},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.449489742783178},"1410":{"tf":2.449489742783178},"1412":{"tf":2.8284271247461903},"1416":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":3.872983346207417},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":3.1622776601683795},"200":{"tf":2.0},"202":{"tf":3.1622776601683795},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"304":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.0},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.0},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.0},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":102,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.0},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.4142135623730951},"648":{"tf":1.0},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.0},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":2.0},"1169":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"372":{"tf":1.0},"439":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"825":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.7320508075688772},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.0}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":15,"docs":{"1124":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.7320508075688772},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.0},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":29,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.4142135623730951},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.4142135623730951},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.0},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.0},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"653":{"tf":1.0},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.0},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":6,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":97,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":2.8284271247461903},"1199":{"tf":1.7320508075688772},"120":{"tf":2.8284271247461903},"1200":{"tf":2.449489742783178},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1203":{"tf":2.8284271247461903},"1204":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1557":{"tf":1.7320508075688772},"1558":{"tf":2.23606797749979},"1559":{"tf":2.0},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.6457513110645907},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.0},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":2.0},"309":{"tf":2.449489742783178},"311":{"tf":2.449489742783178},"312":{"tf":2.6457513110645907},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":3.3166247903554},"320":{"tf":3.4641016151377544},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":2.0},"332":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.0},"979":{"tf":2.0},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.23606797749979},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":473,"docs":{"1004":{"tf":2.0},"1005":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.0},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"1160":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.23606797749979},"121":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.0},"1218":{"tf":1.0},"122":{"tf":1.0},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":3.605551275463989},"1404":{"tf":3.3166247903554},"1405":{"tf":2.6457513110645907},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.23606797749979},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1432":{"tf":2.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":2.0},"1456":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":3.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":1.7320508075688772},"1497":{"tf":4.0},"1498":{"tf":3.0},"1499":{"tf":3.1622776601683795},"1500":{"tf":3.1622776601683795},"1501":{"tf":3.1622776601683795},"1503":{"tf":2.8284271247461903},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.0},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.4142135623730951},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":3.3166247903554},"203":{"tf":2.6457513110645907},"204":{"tf":3.1622776601683795},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.0},"278":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.4142135623730951},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.23606797749979},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":2.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":2.0},"74":{"tf":1.0},"740":{"tf":1.4142135623730951},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":2.0},"876":{"tf":1.0},"877":{"tf":2.449489742783178},"878":{"tf":1.0},"879":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":2.0},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.4142135623730951},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":55,"docs":{"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.449489742783178}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.0},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.0},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1383":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.0},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.0},"452":{"tf":1.7320508075688772},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.4142135623730951},"254":{"tf":1.0},"262":{"tf":1.0},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.4142135623730951},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.4142135623730951},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":124,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":3.605551275463989},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":2.449489742783178},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.7320508075688772},"1572":{"tf":1.7320508075688772},"1573":{"tf":1.4142135623730951},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"500":{"tf":2.0},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.4142135623730951},"625":{"tf":2.23606797749979},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":2.6457513110645907},"798":{"tf":1.7320508075688772},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.0},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":2.449489742783178},"1324":{"tf":2.0},"1325":{"tf":2.449489742783178},"1326":{"tf":2.23606797749979},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.23606797749979},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":2.23606797749979},"1336":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.8284271247461903},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":112,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1082":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"146":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1478":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1536":{"tf":1.0},"155":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"185":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.0},"435":{"tf":1.7320508075688772},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"581":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":1.7320508075688772},"699":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.4142135623730951},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.4142135623730951},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.23606797749979},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":40,"docs":{"1192":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1429":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":2.23606797749979},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"539":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":2.23606797749979},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.0},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.0},"729":{"tf":1.0},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.449489742783178},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.23606797749979},"262":{"tf":2.23606797749979},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"159":{"tf":1.0},"1594":{"tf":1.0},"160":{"tf":1.0},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1210":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.4142135623730951},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.0},"1332":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.0},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.0},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.0},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":1.7320508075688772},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":2.0},"890":{"tf":1.7320508075688772},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"945":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"981":{"tf":1.0},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":204,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":2.0},"1511":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"642":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.23606797749979},"871":{"tf":2.0},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.0}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.4142135623730951},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.0},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"369":{"tf":1.4142135623730951},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1127":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.0},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.23606797749979},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1577":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.0},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":35,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.0},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1334":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.0},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.4142135623730951},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.0},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.4142135623730951},"1240":{"tf":2.6457513110645907},"1241":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.0},"515":{"tf":1.0},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.0},"1506":{"tf":1.0},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.0},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.0},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.0},"1535":{"tf":1.0},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":33,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1204":{"tf":1.0},"1260":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.0},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.0},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":1.7320508075688772},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.4142135623730951},"673":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":1.7320508075688772},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.23606797749979},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":2.6457513110645907},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.0},"800":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.4142135623730951},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.0},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":40,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.0},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.0},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.0},"1650":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"617":{"tf":1.0},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.4142135623730951},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.4142135623730951},"451":{"tf":1.0},"652":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":134,"docs":{"1001":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.4142135623730951},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.0},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.0},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":13,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.0},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.0},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.0},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":80,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"165":{"tf":1.0},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.7320508075688772},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"504":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"527":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"633":{"tf":1.7320508075688772},"634":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"518":{"tf":1.0},"520":{"tf":1.4142135623730951},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.4142135623730951},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":109,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1327":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.0},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.0}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1561":{"tf":1.7320508075688772},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.0},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":2.449489742783178},"953":{"tf":1.7320508075688772},"954":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":588,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.449489742783178},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.4142135623730951},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.23606797749979},"1256":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.449489742783178},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.0},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1485":{"tf":2.449489742783178},"1486":{"tf":2.6457513110645907},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.7320508075688772},"1489":{"tf":1.7320508075688772},"149":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1493":{"tf":1.7320508075688772},"1495":{"tf":1.7320508075688772},"1496":{"tf":1.0},"1497":{"tf":3.0},"1498":{"tf":2.449489742783178},"1499":{"tf":2.23606797749979},"1500":{"tf":2.0},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1599":{"tf":1.0},"16":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.0},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.7320508075688772},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"51":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":2.449489742783178},"987":{"tf":2.23606797749979},"988":{"tf":2.23606797749979},"989":{"tf":2.23606797749979},"990":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951},"992":{"tf":2.449489742783178},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.4142135623730951},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.0},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.0},"803":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.7320508075688772}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":170,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.0},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.3166247903554},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.0},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.58257569495584},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.0},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":2.449489742783178},"1008":{"tf":2.6457513110645907},"1009":{"tf":2.23606797749979},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.449489742783178},"1065":{"tf":1.0},"1066":{"tf":2.0},"1067":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":2.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":2.23606797749979},"1075":{"tf":1.7320508075688772},"1076":{"tf":1.0},"1077":{"tf":2.23606797749979},"1078":{"tf":1.7320508075688772},"1079":{"tf":3.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":2.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.4142135623730951},"1089":{"tf":2.0},"1090":{"tf":2.0},"1091":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.7320508075688772},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.0},"1127":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":1.7320508075688772},"125":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":1.7320508075688772},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":1.7320508075688772},"1546":{"tf":2.449489742783178},"1547":{"tf":2.449489742783178},"1548":{"tf":1.7320508075688772},"1549":{"tf":2.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":1.7320508075688772},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"973":{"tf":1.7320508075688772},"975":{"tf":2.449489742783178},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.0},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":13,"docs":{"1393":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"554":{"tf":2.0},"560":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":2.6457513110645907},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":7,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1478":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"512":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"758":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.4142135623730951},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"1360":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":2.23606797749979},"141":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.0},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.0},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.0},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"957":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":2.0},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.4142135623730951},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.4142135623730951},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"871":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.0},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.605551275463989},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.449489742783178},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.23606797749979},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.4142135623730951},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.0},"1147":{"tf":1.0},"1487":{"tf":1.0},"1533":{"tf":1.4142135623730951},"910":{"tf":1.0}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"69":{"tf":1.0},"737":{"tf":1.0},"741":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.0},"218":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.0},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":96,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":2.0},"1227":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":2.6457513110645907},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"1252":{"tf":2.0},"1253":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.7320508075688772},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":2.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":2.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.0},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":2.0},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.23606797749979},"749":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.23606797749979},"794":{"tf":2.449489742783178},"80":{"tf":2.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.0},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.0},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.4142135623730951},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.0},"928":{"tf":1.7320508075688772},"931":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.0},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.4142135623730951},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.0},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.1622776601683795},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.7320508075688772},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.0},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.0},"571":{"tf":1.0},"574":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":32,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.7320508075688772},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1639":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.4142135623730951},"1654":{"tf":1.0},"1655":{"tf":1.0},"551":{"tf":1.4142135623730951},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.0},"1329":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"972":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.0},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":4.0},"1227":{"tf":2.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":22,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"1000":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1371":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":45,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.0},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.0},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.0},"1470":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.0},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":1.7320508075688772},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"1435":{"tf":1.7320508075688772},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"910":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.0},"1396":{"tf":1.0},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"1450":{"tf":1.4142135623730951},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1174":{"tf":1.0},"1188":{"tf":1.0},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.0},"1640":{"tf":1.0},"177":{"tf":1.0},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.0},"1589":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1377":{"tf":1.0},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.4142135623730951},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1604":{"tf":1.0},"1606":{"tf":1.0},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"588":{"tf":1.4142135623730951},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"836":{"tf":1.0},"850":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.0},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"259":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.0},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1181":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.4142135623730951},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.4142135623730951},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":1.7320508075688772},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.358898943540674},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.0},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.0},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1270":{"tf":1.0},"1272":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.4142135623730951},"511":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1478":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.0},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.7320508075688772},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.4142135623730951},"660":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.0},"1477":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.0}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1241":{"tf":1.0},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.0},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":1.7320508075688772},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.0},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.0},"1064":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1458":{"tf":1.0},"1469":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.4142135623730951},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.4142135623730951},"735":{"tf":1.0},"744":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.4142135623730951},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.4142135623730951},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1245":{"tf":1.0},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.4142135623730951},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.23606797749979},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.0},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"1475":{"tf":1.7320508075688772},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":2.0},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.0},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"1062":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":26,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.0},"13":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.449489742783178},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.23606797749979},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.0},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.4142135623730951},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.0},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.23606797749979},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.4142135623730951},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.4142135623730951},"1066":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.0},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":85,"docs":{"105":{"tf":1.0},"1060":{"tf":1.0},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1504":{"tf":1.0},"1512":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.0},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"751":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.0},"1260":{"tf":1.0},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.0},"900":{"tf":1.0},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.0},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.0},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.0},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.0},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.4142135623730951},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.0},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.0},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.0},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"935":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.0},"289":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":119,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.4142135623730951},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1072":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1079":{"tf":2.23606797749979},"1080":{"tf":2.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1095":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":2.0},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.0},"1144":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.4142135623730951},"183":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.0},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":61,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.7320508075688772},"34":{"tf":1.0},"367":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.0},"801":{"tf":1.0},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"1008":{"tf":1.0},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":149,"docs":{"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.7320508075688772},"1158":{"tf":1.0},"1159":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":2.0},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.0},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.23606797749979},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.7320508075688772},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"830":{"tf":3.0},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":2.449489742783178},"842":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":2.0},"858":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"886":{"tf":2.23606797749979},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.0},"911":{"tf":2.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":2.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.7320508075688772},"926":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"945":{"tf":1.7320508075688772},"946":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772},"970":{"tf":1.4142135623730951},"971":{"tf":1.0},"972":{"tf":1.0},"978":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.23606797749979},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.0},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.0},"1391":{"tf":1.0},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.0},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":130,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.0},"1013":{"tf":1.0},"1019":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1199":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.4142135623730951},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.0},"140":{"tf":1.7320508075688772},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"605":{"tf":1.0},"626":{"tf":1.0},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1112":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"1051":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":1.7320508075688772},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":10,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":87,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.449489742783178},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.0},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"842":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.0},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.4142135623730951},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.4142135623730951},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.0},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.0},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.0},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.449489742783178},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.0},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.7320508075688772},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.7320508075688772},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.0},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":437,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.23606797749979},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.23606797749979},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1125":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1206":{"tf":2.23606797749979},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1221":{"tf":2.23606797749979},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1316":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.0},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":2.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":2.0},"1394":{"tf":2.0},"1395":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":2.8284271247461903},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":1.7320508075688772},"1567":{"tf":2.0},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.0},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.0},"548":{"tf":1.7320508075688772},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":1.0},"724":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.23606797749979}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"1621":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.449489742783178},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.0},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.0},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.0},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.0},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.7320508075688772},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":1.4142135623730951},"990":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":55,"docs":{"1":{"tf":1.0},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"760":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.4142135623730951},"910":{"tf":1.7320508075688772},"938":{"tf":1.0},"967":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":37,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.7320508075688772},"912":{"tf":2.0},"914":{"tf":2.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"933":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.0},"163":{"tf":1.4142135623730951},"1635":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":60,"docs":{"1045":{"tf":1.0},"111":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":2.23606797749979},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.0},"1571":{"tf":2.0},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.0},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":2.8284271247461903},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.4142135623730951},"646":{"tf":1.0},"647":{"tf":1.0},"684":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.7320508075688772},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":2.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1487":{"tf":3.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.0},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1389":{"tf":2.23606797749979},"1391":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":1.7320508075688772},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.0},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.0},"1039":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1126":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.0},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.0},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.0},"1419":{"tf":1.0},"1619":{"tf":1.0},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.0},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.0},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":91,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":2.6457513110645907},"1494":{"tf":1.0},"1495":{"tf":2.0},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":3.4641016151377544},"25":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":2.0},"889":{"tf":1.0},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.7320508075688772},"896":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"93":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":78,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.0},"1213":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1215":{"tf":3.3166247903554},"1216":{"tf":1.0},"1217":{"tf":2.449489742783178},"1218":{"tf":2.0},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1223":{"tf":2.23606797749979},"1224":{"tf":1.7320508075688772},"1226":{"tf":2.6457513110645907},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1233":{"tf":2.449489742783178},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1236":{"tf":3.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1239":{"tf":1.0},"1241":{"tf":1.0},"1243":{"tf":2.0},"1244":{"tf":2.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1315":{"tf":1.0},"1329":{"tf":2.0},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":2.449489742783178},"1471":{"tf":1.0},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":1.7320508075688772},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.0},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"364":{"tf":1.7320508075688772},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772},"801":{"tf":2.8284271247461903},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":1.7320508075688772},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1559":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":17,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.0},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":74,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1223":{"tf":1.0},"1240":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1347":{"tf":1.0},"1349":{"tf":1.7320508075688772},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":1.7320508075688772},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.449489742783178},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":1.7320508075688772},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.449489742783178}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.4641016151377544},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.7320508075688772},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.4142135623730951},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1227":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.0},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":1.7320508075688772},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.0},"1184":{"tf":2.23606797749979},"1185":{"tf":2.23606797749979},"1186":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1196":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1360":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"1385":{"tf":1.0},"139":{"tf":2.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.23606797749979},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.0},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1313":{"tf":1.4142135623730951},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.0},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.0},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.0},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":1.7320508075688772},"270":{"tf":1.0},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.0},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1498":{"tf":2.6457513110645907},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":2.0},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"728":{"tf":2.0},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.23606797749979},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":34,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":377,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.23606797749979},"1305":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.4142135623730951},"397":{"tf":1.0},"40":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"528":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.0},"562":{"tf":1.0},"614":{"tf":1.0},"636":{"tf":1.0},"733":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":1.7320508075688772},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.0},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.0},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"1391":{"tf":1.0},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":203,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.0},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1419":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.0},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.0},"318":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.4142135623730951},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":349,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":1.4142135623730951},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.3166247903554},"1074":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"111":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1404":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.3166247903554},"1493":{"tf":1.0},"1499":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.0},"1611":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.6457513110645907},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.0},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":1.7320508075688772},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.23606797749979},"878":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":1.7320508075688772},"1070":{"tf":2.0},"1071":{"tf":1.7320508075688772},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.0},"1084":{"tf":2.23606797749979},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.23606797749979},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.0},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.7320508075688772},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.23606797749979},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.0},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"957":{"tf":1.7320508075688772},"977":{"tf":1.0},"978":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":22,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.0},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"592":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.4142135623730951},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":1.7320508075688772},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.0},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":51,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":75,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1027":{"tf":1.0},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.0},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":20,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.0},"1329":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.4142135623730951},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.4142135623730951},"436":{"tf":1.0},"508":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.4142135623730951}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.7320508075688772}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.4142135623730951},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":90,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":2.0},"1262":{"tf":2.23606797749979},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":2.449489742783178},"1274":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.7320508075688772},"1279":{"tf":2.0},"128":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.7320508075688772},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.449489742783178},"1324":{"tf":1.0},"1353":{"tf":2.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":2.0},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"137":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":2.0},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.7320508075688772},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":2.0},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":62,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":2.23606797749979},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.0},"1329":{"tf":2.23606797749979},"1330":{"tf":2.8284271247461903},"1331":{"tf":1.0},"1332":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.7320508075688772},"755":{"tf":2.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.4142135623730951},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"241":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.4142135623730951},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.7320508075688772},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.4142135623730951},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":62,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.7320508075688772},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.7320508075688772}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":649,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":2.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1009":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":2.0},"1032":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.7320508075688772},"105":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.4142135623730951},"1094":{"tf":1.0},"110":{"tf":1.7320508075688772},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.4142135623730951},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"1193":{"tf":2.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":2.0},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":2.0},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":2.0},"1283":{"tf":2.449489742783178},"1284":{"tf":1.7320508075688772},"1285":{"tf":2.0},"1286":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.7320508075688772},"1290":{"tf":2.449489742783178},"1291":{"tf":2.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1315":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1412":{"tf":3.0},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.4142135623730951},"1493":{"tf":2.23606797749979},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":2.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":2.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.6457513110645907},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":2.23606797749979},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":1.7320508075688772},"214":{"tf":2.23606797749979},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.449489742783178},"310":{"tf":1.4142135623730951},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"319":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951},"321":{"tf":2.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":2.6457513110645907},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.7320508075688772},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.4142135623730951},"705":{"tf":2.0},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"728":{"tf":2.23606797749979},"729":{"tf":1.4142135623730951},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.6457513110645907},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.4142135623730951},"807":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":2.0},"836":{"tf":2.0},"837":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"839":{"tf":2.0},"840":{"tf":2.23606797749979},"841":{"tf":1.7320508075688772},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":2.0},"849":{"tf":2.0},"850":{"tf":2.0},"851":{"tf":1.7320508075688772},"852":{"tf":2.0},"853":{"tf":1.4142135623730951},"854":{"tf":2.23606797749979},"855":{"tf":2.6457513110645907},"856":{"tf":1.7320508075688772},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.7320508075688772},"91":{"tf":2.0},"911":{"tf":1.4142135623730951},"912":{"tf":2.8284271247461903},"913":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.7320508075688772},"916":{"tf":2.6457513110645907},"917":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":2.0},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"95":{"tf":4.358898943540674},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.7320508075688772},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":154,"docs":{"1":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"1035":{"tf":1.7320508075688772},"1036":{"tf":1.7320508075688772},"1037":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.6457513110645907},"1219":{"tf":2.23606797749979},"1220":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.4142135623730951},"1408":{"tf":2.8284271247461903},"1409":{"tf":3.7416573867739413},"1410":{"tf":3.4641016151377544},"1440":{"tf":1.4142135623730951},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":1.4142135623730951},"1463":{"tf":1.4142135623730951},"1464":{"tf":2.449489742783178},"1465":{"tf":2.23606797749979},"1466":{"tf":1.4142135623730951},"1501":{"tf":3.3166247903554},"1565":{"tf":1.4142135623730951},"1566":{"tf":2.449489742783178},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":3.0},"210":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":2.449489742783178},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.7320508075688772},"292":{"tf":2.23606797749979},"293":{"tf":2.0},"294":{"tf":3.0},"295":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":2.449489742783178},"305":{"tf":2.0},"306":{"tf":2.23606797749979},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":2.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":2.449489742783178},"722":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"724":{"tf":2.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.23606797749979},"869":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":52,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1391":{"tf":2.0},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.449489742783178},"522":{"tf":1.0},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":2.0},"526":{"tf":2.0},"527":{"tf":2.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.7320508075688772},"531":{"tf":1.0},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":2.0}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":127,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.7320508075688772},"1043":{"tf":1.4142135623730951},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":2.0},"1098":{"tf":2.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1125":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":2.449489742783178},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.0},"1133":{"tf":2.6457513110645907},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":2.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":2.6457513110645907},"1142":{"tf":2.0},"1143":{"tf":2.0},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.6457513110645907},"1554":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":2.0},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.4142135623730951},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.7320508075688772},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.23606797749979},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":2.0},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1350":{"tf":1.7320508075688772},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":283,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"184":{"tf":1.0},"301":{"tf":1.7320508075688772},"32":{"tf":1.0},"334":{"tf":1.7320508075688772},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"436":{"tf":2.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.4142135623730951},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":1.0},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.7320508075688772},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":2.23606797749979},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":2.0},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.4142135623730951},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.7320508075688772},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951}}}}}},"df":66,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.23606797749979},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":2.23606797749979},"1300":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.6457513110645907},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.23606797749979},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.7320508075688772},"712":{"tf":1.7320508075688772},"718":{"tf":1.7320508075688772},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.7320508075688772},"880":{"tf":1.7320508075688772},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.7320508075688772},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":113,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.7320508075688772},"1311":{"tf":1.7320508075688772},"1312":{"tf":1.0},"1313":{"tf":2.23606797749979},"1314":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":2.23606797749979},"1318":{"tf":1.7320508075688772},"1319":{"tf":1.0},"132":{"tf":2.449489742783178},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1323":{"tf":2.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":2.449489742783178},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1341":{"tf":1.0},"1342":{"tf":2.23606797749979},"1343":{"tf":2.449489742783178},"1344":{"tf":1.0},"1345":{"tf":2.23606797749979},"1346":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.23606797749979},"1352":{"tf":1.7320508075688772},"1353":{"tf":2.0},"1354":{"tf":1.7320508075688772},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1360":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.4142135623730951},"1596":{"tf":2.0},"1597":{"tf":1.0},"1598":{"tf":2.449489742783178},"1599":{"tf":2.0},"1600":{"tf":1.4142135623730951},"1601":{"tf":2.0},"1602":{"tf":3.0},"1603":{"tf":2.0},"1604":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":2.8284271247461903},"1608":{"tf":1.0},"1609":{"tf":1.7320508075688772},"1610":{"tf":2.0},"1611":{"tf":2.0},"1612":{"tf":2.23606797749979},"1613":{"tf":1.0},"1614":{"tf":2.0},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"989":{"tf":3.1622776601683795},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.4142135623730951}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.7320508075688772},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"543":{"tf":1.0},"546":{"tf":2.23606797749979},"555":{"tf":1.0},"557":{"tf":2.23606797749979},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.449489742783178},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.4142135623730951},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1618":{"tf":1.0},"175":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.6457513110645907},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.449489742783178},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.23606797749979},"646":{"tf":2.23606797749979},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":37,"docs":{"1144":{"tf":1.7320508075688772},"1145":{"tf":2.23606797749979},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":2.0},"1533":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":2.6457513110645907},"1571":{"tf":1.7320508075688772},"1573":{"tf":1.0},"1636":{"tf":1.4142135623730951},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":75,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":120,"docs":{"1156":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":2.0},"1469":{"tf":1.4142135623730951},"1470":{"tf":2.0},"1611":{"tf":1.4142135623730951},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.4142135623730951},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1615":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.7320508075688772},"503":{"tf":1.0},"665":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.0},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.4142135623730951},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.4142135623730951},"130":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":2.0},"182":{"tf":2.0},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.7320508075688772},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":25,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1262":{"tf":1.0},"1264":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.6457513110645907},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":38,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"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},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.4142135623730951},"875":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.4142135623730951},"1071":{"tf":2.0},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"1294":{"tf":2.0},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1340":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.4142135623730951},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.4142135623730951},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.7320508075688772},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.4142135623730951},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":2.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.4142135623730951},"1022":{"tf":2.0},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.4142135623730951},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.7320508075688772},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.7320508075688772},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":149,"docs":{"10":{"tf":1.7320508075688772},"1008":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":2.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"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.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.1622776601683795},"1459":{"tf":1.4142135623730951},"1462":{"tf":2.449489742783178},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":2.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.23606797749979},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":89,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1539":{"tf":2.0},"1540":{"tf":2.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1612":{"tf":1.7320508075688772},"1629":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.23606797749979},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":2.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.4142135623730951},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":61,"docs":{"1062":{"tf":1.4142135623730951},"107":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1495":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":2.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":24,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.449489742783178},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"943":{"tf":2.8284271247461903},"944":{"tf":1.4142135623730951},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1523":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.4142135623730951},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"380":{"tf":1.0},"429":{"tf":1.4142135623730951},"436":{"tf":1.0},"510":{"tf":1.4142135623730951},"626":{"tf":1.0},"662":{"tf":1.4142135623730951},"671":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"808":{"tf":1.4142135623730951},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951}}}}}}},"t":{"df":32,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.7320508075688772},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"665":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.4142135623730951},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"874":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.7320508075688772},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.4142135623730951},"812":{"tf":1.0},"816":{"tf":1.4142135623730951},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.7320508075688772},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.4142135623730951},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.23606797749979},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":2.0},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":36,"docs":{"125":{"tf":1.4142135623730951},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"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.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":2.0},"659":{"tf":2.23606797749979},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":120,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":2.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":2.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.4142135623730951},"983":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":188,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1114":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.7320508075688772},"1518":{"tf":2.23606797749979},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1521":{"tf":2.449489742783178},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":2.449489742783178},"1531":{"tf":2.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1536":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"1541":{"tf":1.4142135623730951},"1542":{"tf":2.23606797749979},"1543":{"tf":2.0},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.7320508075688772},"1580":{"tf":1.7320508075688772},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.4142135623730951},"250":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.4142135623730951},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.7320508075688772},"820":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.449489742783178},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.4142135623730951},"1054":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1132":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1331":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"397":{"tf":1.0},"584":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.7320508075688772},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"2":{"tf":1.0},"299":{"tf":1.4142135623730951},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.7320508075688772},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"840":{"tf":1.0},"844":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.7320508075688772},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.4142135623730951},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":20,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.449489742783178},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"966":{"tf":1.0},"967":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":61,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":2.0},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"593":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"636":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"669":{"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.4142135623730951},"751":{"tf":1.0},"767":{"tf":1.4142135623730951},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.7320508075688772},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":2.449489742783178},"1230":{"tf":2.0},"1231":{"tf":2.23606797749979},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":332,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":4.0},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.6457513110645907},"1410":{"tf":2.449489742783178},"1412":{"tf":3.0},"1416":{"tf":2.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":2.23606797749979},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":4.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.7320508075688772},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.7320508075688772},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":2.0},"195":{"tf":3.3166247903554},"200":{"tf":2.23606797749979},"202":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"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.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":2.0},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"499":{"tf":1.7320508075688772},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"723":{"tf":1.4142135623730951},"735":{"tf":1.7320508075688772},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.7320508075688772},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.4142135623730951},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.4142135623730951},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.4142135623730951},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":2.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":140,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":2.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.7320508075688772},"648":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.4142135623730951},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":108,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1158":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":2.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":2.0},"361":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"439":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.23606797749979},"822":{"tf":1.0},"825":{"tf":1.7320508075688772},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.4142135623730951},"1647":{"tf":2.0},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":2.0},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":25,"docs":{"1124":{"tf":1.4142135623730951},"124":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.4142135623730951},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"371":{"tf":2.0},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":33,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.7320508075688772},"1628":{"tf":2.0},"1629":{"tf":1.7320508075688772},"1630":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":2.0},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.4142135623730951},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":2.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.23606797749979},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":11,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":101,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.4142135623730951},"1087":{"tf":2.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":3.0},"1199":{"tf":2.0},"120":{"tf":3.0},"1200":{"tf":2.6457513110645907},"1201":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":3.0},"1204":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"1413":{"tf":3.4641016151377544},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":2.449489742783178},"1559":{"tf":2.23606797749979},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":2.23606797749979},"309":{"tf":2.8284271247461903},"310":{"tf":1.0},"311":{"tf":2.8284271247461903},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.7320508075688772},"318":{"tf":1.7320508075688772},"319":{"tf":3.605551275463989},"320":{"tf":3.7416573867739413},"321":{"tf":1.4142135623730951},"322":{"tf":2.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.23606797749979},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":2.0},"856":{"tf":1.0},"979":{"tf":2.23606797749979},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.449489742783178},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.449489742783178},"323":{"tf":2.449489742783178},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.23606797749979},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":499,"docs":{"1004":{"tf":2.23606797749979},"1005":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.449489742783178},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.7320508075688772},"1074":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"109":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"110":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":2.0},"1110":{"tf":1.0},"1115":{"tf":1.0},"112":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.7320508075688772},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"1160":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"119":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.23606797749979},"1218":{"tf":1.0},"122":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.23606797749979},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.7416573867739413},"1404":{"tf":3.4641016151377544},"1405":{"tf":2.8284271247461903},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.449489742783178},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":2.0},"1432":{"tf":2.23606797749979},"1433":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1455":{"tf":2.23606797749979},"1456":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1468":{"tf":2.449489742783178},"1470":{"tf":3.1622776601683795},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":4.123105625617661},"1498":{"tf":3.1622776601683795},"1499":{"tf":3.3166247903554},"1500":{"tf":3.3166247903554},"1501":{"tf":3.1622776601683795},"1503":{"tf":3.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.4142135623730951},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.23606797749979},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.7320508075688772},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":3.4641016151377544},"203":{"tf":2.8284271247461903},"204":{"tf":3.3166247903554},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"247":{"tf":2.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"25":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"263":{"tf":1.7320508075688772},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.6457513110645907},"277":{"tf":2.449489742783178},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"346":{"tf":1.7320508075688772},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.7320508075688772},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.449489742783178},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":2.0},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":2.23606797749979},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":2.23606797749979},"74":{"tf":1.0},"740":{"tf":1.7320508075688772},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.449489742783178},"858":{"tf":1.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":2.23606797749979},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":2.8284271247461903},"878":{"tf":1.7320508075688772},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"881":{"tf":1.4142135623730951},"882":{"tf":2.23606797749979},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.4142135623730951},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.7320508075688772},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.7320508075688772},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":55,"docs":{"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.6457513110645907}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":2.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":2.0},"1380":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1383":{"tf":1.7320508075688772},"1384":{"tf":2.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.23606797749979},"452":{"tf":2.0},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.7320508075688772},"254":{"tf":1.0},"262":{"tf":1.4142135623730951},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":2.0},"873":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.7320508075688772},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1366":{"tf":2.0},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":2.0},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.23606797749979},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":130,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1447":{"tf":3.7416573867739413},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.6457513110645907},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":2.0},"1540":{"tf":1.7320508075688772},"1541":{"tf":1.7320508075688772},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1544":{"tf":1.4142135623730951},"1545":{"tf":1.7320508075688772},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.4142135623730951},"1549":{"tf":1.4142135623730951},"1550":{"tf":1.7320508075688772},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.4142135623730951},"1555":{"tf":1.7320508075688772},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.4142135623730951},"1560":{"tf":1.7320508075688772},"1561":{"tf":1.7320508075688772},"1562":{"tf":1.4142135623730951},"1563":{"tf":1.4142135623730951},"1564":{"tf":1.4142135623730951},"1565":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.4142135623730951},"1569":{"tf":1.4142135623730951},"1570":{"tf":1.7320508075688772},"1571":{"tf":2.23606797749979},"1572":{"tf":2.23606797749979},"1573":{"tf":2.0},"1574":{"tf":1.7320508075688772},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":2.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"500":{"tf":2.23606797749979},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.7320508075688772},"625":{"tf":2.449489742783178},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":2.8284271247461903},"798":{"tf":2.0},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":2.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1370":{"tf":1.7320508075688772},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":2.6457513110645907},"1324":{"tf":2.449489742783178},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1327":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1329":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":2.449489742783178},"1336":{"tf":2.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":3.0},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":2.0},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":188,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1173":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":2.23606797749979},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1536":{"tf":1.4142135623730951},"155":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"28":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"435":{"tf":2.0},"462":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"54":{"tf":1.0},"581":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":2.0},"699":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"75":{"tf":1.0},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":1.4142135623730951},"916":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.7320508075688772},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.7320508075688772},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":24,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.4142135623730951},"503":{"tf":1.0},"516":{"tf":1.7320508075688772},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.4142135623730951},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.449489742783178},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"1366":{"tf":2.0},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.4142135623730951},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":50,"docs":{"1192":{"tf":1.7320508075688772},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.449489742783178},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.4142135623730951},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":2.0},"542":{"tf":2.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.7320508075688772},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"570":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.449489742783178},"262":{"tf":2.449489742783178},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.7320508075688772},"1556":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"1594":{"tf":1.0},"160":{"tf":1.4142135623730951},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.4142135623730951},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.7320508075688772},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1597":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.23606797749979},"1332":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.23606797749979},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.449489742783178},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.449489742783178},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":2.0},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":2.0},"840":{"tf":1.7320508075688772},"842":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":2.23606797749979},"890":{"tf":2.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"945":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"951":{"tf":1.7320508075688772},"952":{"tf":1.7320508075688772},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.7320508075688772},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":216,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":2.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":2.23606797749979},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":2.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.7320508075688772},"642":{"tf":1.0},"644":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.4142135623730951},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.449489742783178},"871":{"tf":2.23606797749979},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":2.0},"924":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.4142135623730951},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.7320508075688772},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":2.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":2.0},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.7320508075688772},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.4142135623730951},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.7320508075688772},"1235":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.4142135623730951},"348":{"tf":1.0},"369":{"tf":1.7320508075688772},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.4142135623730951},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1127":{"tf":2.0},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":2.0},"1553":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"774":{"tf":1.0},"796":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.449489742783178},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.7320508075688772},"1546":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1563":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1577":{"tf":1.0},"161":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":61,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":2.23606797749979},"1352":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.23606797749979},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1632":{"tf":1.7320508075688772},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.7320508075688772},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.4142135623730951},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.7320508075688772},"1240":{"tf":2.8284271247461903},"1241":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.4142135623730951},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.4142135623730951},"515":{"tf":1.4142135623730951},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.4142135623730951},"803":{"tf":2.23606797749979},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.4142135623730951},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.4142135623730951},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.7320508075688772},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":126,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":2.0},"1616":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"163":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1632":{"tf":1.0},"1633":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1639":{"tf":1.0},"164":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.7320508075688772},"875":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.4142135623730951},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.0},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.4142135623730951},"439":{"tf":1.0},"464":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":2.0},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.7320508075688772},"673":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"798":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":2.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.449489742783178},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":2.0},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.449489742783178},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.7320508075688772},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"171":{"tf":1.0},"186":{"tf":2.8284271247461903},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.4142135623730951},"800":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.7320508075688772},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.23606797749979},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":64,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.4142135623730951},"1436":{"tf":1.7320508075688772},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1459":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1650":{"tf":1.4142135623730951},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":2.23606797749979},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.7320508075688772},"567":{"tf":2.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"617":{"tf":1.4142135623730951},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.7320508075688772},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":2.0},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.7320508075688772},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.7320508075688772},"451":{"tf":1.0},"652":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":134,"docs":{"1001":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.7320508075688772},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.4142135623730951}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.7320508075688772},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":16,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.4142135623730951},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.4142135623730951},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":157,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":2.0},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":2.0},"1649":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"504":{"tf":1.7320508075688772},"517":{"tf":2.0},"523":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"539":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.7320508075688772},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"633":{"tf":2.23606797749979},"634":{"tf":1.7320508075688772},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":1.7320508075688772},"661":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.7320508075688772},"664":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.7320508075688772},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.7320508075688772},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"764":{"tf":1.7320508075688772},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":131,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1327":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"354":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.7320508075688772},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}},"t":{"df":16,"docs":{"0":{"tf":1.0},"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},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.7320508075688772},"1561":{"tf":2.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"1653":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.6457513110645907},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":597,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.6457513110645907},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.7320508075688772},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.7320508075688772},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.449489742783178},"1256":{"tf":1.4142135623730951},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":2.6457513110645907},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.23606797749979},"1387":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.8284271247461903},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":2.0},"1485":{"tf":2.6457513110645907},"1486":{"tf":2.8284271247461903},"1487":{"tf":3.872983346207417},"1488":{"tf":2.0},"1489":{"tf":2.0},"149":{"tf":1.0},"1491":{"tf":2.0},"1493":{"tf":2.0},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":3.1622776601683795},"1498":{"tf":2.6457513110645907},"1499":{"tf":2.449489742783178},"1500":{"tf":2.23606797749979},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.4142135623730951},"16":{"tf":2.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":2.0},"1651":{"tf":2.0},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":2.0},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":2.0},"51":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.4142135623730951},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":2.23606797749979},"985":{"tf":1.4142135623730951},"986":{"tf":2.8284271247461903},"987":{"tf":2.6457513110645907},"988":{"tf":2.6457513110645907},"989":{"tf":2.6457513110645907},"990":{"tf":2.23606797749979},"991":{"tf":2.0},"992":{"tf":2.8284271247461903},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.7320508075688772},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.4142135623730951},"803":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":2.0}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":187,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.23606797749979},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.7320508075688772},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":2.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.4641016151377544},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.4142135623730951},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.69041575982343},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.1622776601683795},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":274,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1007":{"tf":2.6457513110645907},"1008":{"tf":2.8284271247461903},"1009":{"tf":2.449489742783178},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.7320508075688772},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.8284271247461903},"1065":{"tf":1.7320508075688772},"1066":{"tf":2.449489742783178},"1067":{"tf":1.4142135623730951},"1068":{"tf":2.0},"1069":{"tf":1.4142135623730951},"107":{"tf":2.0},"1070":{"tf":1.0},"1071":{"tf":2.23606797749979},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.4142135623730951},"1074":{"tf":2.6457513110645907},"1075":{"tf":2.23606797749979},"1076":{"tf":1.7320508075688772},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":3.1622776601683795},"1080":{"tf":2.23606797749979},"1081":{"tf":1.4142135623730951},"1082":{"tf":1.7320508075688772},"1083":{"tf":2.0},"1084":{"tf":2.449489742783178},"1085":{"tf":2.0},"1086":{"tf":2.0},"1087":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":2.449489742783178},"1090":{"tf":2.23606797749979},"1091":{"tf":2.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":2.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.23606797749979},"1127":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":2.0},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":2.0},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":2.0},"125":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.7320508075688772},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":1.7320508075688772},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":2.0},"1546":{"tf":2.6457513110645907},"1547":{"tf":2.6457513110645907},"1548":{"tf":2.0},"1549":{"tf":2.0},"156":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1645":{"tf":2.0},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":2.0},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.1622776601683795},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":2.0},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"973":{"tf":1.7320508075688772},"975":{"tf":2.6457513110645907},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":19,"docs":{"1393":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":2.23606797749979},"554":{"tf":2.23606797749979},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.4142135623730951},"574":{"tf":2.8284271247461903},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":14,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1392":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1478":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1478":{"tf":2.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.7320508075688772},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.449489742783178},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1360":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"140":{"tf":2.449489742783178},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.7320508075688772},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.4142135623730951},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.4142135623730951},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.4142135623730951},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":48,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":3.1622776601683795},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":2.0},"343":{"tf":1.0},"347":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":2.23606797749979},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.4142135623730951},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.7320508075688772},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"845":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"884":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"971":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.4142135623730951},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.7416573867739413},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.6457513110645907},"376":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.7320508075688772},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.7320508075688772},"198":{"tf":2.449489742783178},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.0},"1147":{"tf":1.0},"1487":{"tf":1.0},"1533":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.4142135623730951},"1030":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"69":{"tf":1.4142135623730951},"737":{"tf":1.0},"741":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.7320508075688772},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.4142135623730951},"572":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":106,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1223":{"tf":2.23606797749979},"1227":{"tf":1.7320508075688772},"1248":{"tf":2.0},"1249":{"tf":3.0},"1250":{"tf":2.0},"1251":{"tf":1.4142135623730951},"1252":{"tf":2.449489742783178},"1253":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1256":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1258":{"tf":2.23606797749979},"1259":{"tf":1.0},"1260":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.7320508075688772},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.449489742783178},"408":{"tf":1.4142135623730951},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":2.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.7320508075688772},"520":{"tf":2.23606797749979},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.7320508075688772},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.6457513110645907},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.449489742783178},"794":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.4142135623730951},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.4142135623730951},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.449489742783178},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":2.0},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.7320508075688772},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"928":{"tf":1.7320508075688772},"931":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.23606797749979},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.7320508075688772},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1620":{"tf":1.7320508075688772},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.3166247903554},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":2.0},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":63,"docs":{"1189":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1577":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.7320508075688772},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":2.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.23606797749979},"571":{"tf":1.4142135623730951},"574":{"tf":2.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":51,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":2.0},"1180":{"tf":1.7320508075688772},"1538":{"tf":1.7320508075688772},"1615":{"tf":2.23606797749979},"1616":{"tf":1.0},"1617":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.7320508075688772},"1624":{"tf":1.7320508075688772},"1625":{"tf":1.7320508075688772},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.7320508075688772},"1632":{"tf":1.0},"1633":{"tf":1.7320508075688772},"1634":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1636":{"tf":1.7320508075688772},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.0},"1639":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"1641":{"tf":1.7320508075688772},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.7320508075688772},"1645":{"tf":1.0},"1646":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"1648":{"tf":1.7320508075688772},"1649":{"tf":1.0},"1650":{"tf":1.7320508075688772},"1651":{"tf":1.0},"1652":{"tf":1.7320508075688772},"1653":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"1656":{"tf":1.0},"551":{"tf":1.7320508075688772},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1516":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"805":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"928":{"tf":1.0},"972":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1564":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.4142135623730951},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":4.123105625617661},"1227":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":2.0},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"1000":{"tf":1.7320508075688772},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1054":{"tf":1.0},"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":2.0},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.4142135623730951},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1632":{"tf":1.7320508075688772},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"624":{"tf":1.0},"636":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":27,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":50,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.7320508075688772},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.0},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.4142135623730951},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.4142135623730951},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.23606797749979},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.23606797749979},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":2.0},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1323":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"910":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":114,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1258":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"143":{"tf":2.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1450":{"tf":1.7320508075688772},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.4142135623730951},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":2.0},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.23606797749979},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1188":{"tf":1.4142135623730951},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.0},"177":{"tf":1.4142135623730951},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.4142135623730951},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.4142135623730951}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":70,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.7320508075688772},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.4142135623730951},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"949":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"588":{"tf":1.7320508075688772},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"836":{"tf":1.0},"850":{"tf":1.4142135623730951},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.4142135623730951},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1100":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1248":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1513":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.4142135623730951},"36":{"tf":1.0},"368":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"934":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.7320508075688772},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.7320508075688772},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":2.0},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.7320508075688772},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.358898943540674},"1046":{"tf":2.0},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.0},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":3.0},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1272":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.4142135623730951},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1608":{"tf":1.4142135623730951},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":2.0},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":2.0},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.7320508075688772},"176":{"tf":2.0},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.7320508075688772},"660":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1477":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.449489742783178},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.7320508075688772},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.4142135623730951}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":14,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.4142135623730951},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":2.0},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.4142135623730951},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.7320508075688772},"735":{"tf":1.0},"744":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.7320508075688772},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.7320508075688772},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.7320508075688772},"1008":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.6457513110645907},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.449489742783178},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.4142135623730951},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":133,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1257":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.4142135623730951},"627":{"tf":2.23606797749979},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":2.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.7320508075688772},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"1062":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.0},"189":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0}}}}}},"df":53,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.4142135623730951},"2":{"tf":1.0},"298":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.23606797749979}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.7320508075688772},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.4142135623730951},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.7320508075688772},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.449489742783178},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.7320508075688772},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.7320508075688772},"1066":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":225,"docs":{"105":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1398":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":2.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":2.0},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.4142135623730951},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.7320508075688772},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"943":{"tf":1.0},"953":{"tf":1.7320508075688772},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.7320508075688772},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.7320508075688772},"751":{"tf":1.4142135623730951},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.7320508075688772},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.605551275463989},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"562":{"tf":1.0},"565":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.4142135623730951},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.7320508075688772},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.23606797749979},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":2.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":2.0},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.7320508075688772},"1558":{"tf":1.7320508075688772},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.23606797749979},"289":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.7320508075688772},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.7320508075688772},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.4142135623730951},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":129,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.7320508075688772},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.7320508075688772},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1064":{"tf":2.0},"1065":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.7320508075688772},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.4142135623730951},"1079":{"tf":2.449489742783178},"1080":{"tf":2.449489742783178},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1093":{"tf":2.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.7320508075688772},"1096":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.7320508075688772},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.7320508075688772},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.7320508075688772},"1271":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.4142135623730951},"1629":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.23606797749979},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":122,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.7320508075688772},"1235":{"tf":1.7320508075688772},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.4142135623730951},"95":{"tf":1.0},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":43,"docs":{"1008":{"tf":1.0},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.23606797749979},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.7320508075688772},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1153":{"tf":2.23606797749979},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":2.0},"1158":{"tf":1.7320508075688772},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.7320508075688772},"1169":{"tf":2.449489742783178},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1177":{"tf":1.7320508075688772},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1181":{"tf":2.23606797749979},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":2.0},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.23606797749979},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":2.23606797749979},"812":{"tf":2.6457513110645907},"813":{"tf":1.7320508075688772},"814":{"tf":2.0},"815":{"tf":2.0},"816":{"tf":2.0},"817":{"tf":2.23606797749979},"818":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"821":{"tf":2.449489742783178},"822":{"tf":1.4142135623730951},"823":{"tf":2.0},"824":{"tf":2.23606797749979},"825":{"tf":2.449489742783178},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":3.3166247903554},"831":{"tf":2.0},"832":{"tf":2.0},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":2.8284271247461903},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":2.0},"857":{"tf":2.449489742783178},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"870":{"tf":1.0},"871":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.7320508075688772},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.7320508075688772},"883":{"tf":2.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.0},"886":{"tf":2.6457513110645907},"887":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"895":{"tf":2.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":2.23606797749979},"912":{"tf":2.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":2.0},"926":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.7320508075688772},"935":{"tf":1.7320508075688772},"936":{"tf":1.7320508075688772},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":2.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.7320508075688772},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":2.0},"959":{"tf":2.23606797749979},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"970":{"tf":2.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.4142135623730951},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":2.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.7320508075688772},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.449489742783178},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":168,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1025":{"tf":1.7320508075688772},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.7320508075688772},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":2.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.7320508075688772},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1049":{"tf":1.4142135623730951},"105":{"tf":1.0},"1050":{"tf":1.7320508075688772},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1054":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"273":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.7320508075688772},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.7320508075688772},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.4142135623730951},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"120":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.4142135623730951},"605":{"tf":1.0},"626":{"tf":1.4142135623730951},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.4142135623730951},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.4142135623730951},"846":{"tf":1.0},"856":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":1.7320508075688772},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.4142135623730951},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":18,"docs":{"1051":{"tf":1.0},"1220":{"tf":2.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":2.0},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":12,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":2.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":104,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":2.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":3.0},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.7320508075688772},"172":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":2.0},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.23606797749979},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":2.0},"563":{"tf":1.4142135623730951},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"569":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":2.0},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":2.0},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":2.0},"842":{"tf":2.23606797749979},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"508":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.4142135623730951},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.4142135623730951},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.7320508075688772},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.7320508075688772},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.4142135623730951},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.0},"1016":{"tf":1.7320508075688772},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.23606797749979},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.6457513110645907},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.23606797749979},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1553":{"tf":2.0},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.7320508075688772},"715":{"tf":2.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.1622776601683795},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.4142135623730951},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":467,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.449489742783178},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.6457513110645907},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.23606797749979},"1077":{"tf":1.0},"1078":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1125":{"tf":1.0},"113":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1210":{"tf":1.7320508075688772},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"122":{"tf":1.0},"1221":{"tf":2.449489742783178},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":2.0},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":2.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.0},"1293":{"tf":2.23606797749979},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1299":{"tf":2.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.0},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":2.0},"1306":{"tf":1.0},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1316":{"tf":2.23606797749979},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.449489742783178},"1379":{"tf":2.0},"1380":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":2.23606797749979},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":2.449489742783178},"1390":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1393":{"tf":2.23606797749979},"1394":{"tf":2.23606797749979},"1395":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":3.0},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.7320508075688772},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":2.0},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":2.0},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":2.0},"1567":{"tf":2.23606797749979},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.0},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":2.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":2.0},"485":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":2.0},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.23606797749979},"548":{"tf":2.0},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":2.0},"559":{"tf":1.7320508075688772},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":2.0},"721":{"tf":1.0},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"729":{"tf":1.7320508075688772},"730":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":2.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.7320508075688772},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.449489742783178}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":65,"docs":{"1621":{"tf":1.4142135623730951},"436":{"tf":2.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":2.0},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.6457513110645907},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.23606797749979},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.4142135623730951},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.4142135623730951},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.4142135623730951},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":32,"docs":{"0":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":81,"docs":{"1":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.7320508075688772},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"760":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"906":{"tf":1.0},"907":{"tf":1.7320508075688772},"91":{"tf":1.0},"910":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":48,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.4142135623730951},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":2.0},"912":{"tf":2.449489742783178},"913":{"tf":1.0},"914":{"tf":2.23606797749979},"915":{"tf":1.7320508075688772},"916":{"tf":1.7320508075688772},"917":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.23606797749979},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.23606797749979},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"323":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":2.0},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":2.0},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.7320508075688772},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1157":{"tf":2.0},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.4142135623730951},"1311":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1328":{"tf":2.0},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"1045":{"tf":1.4142135623730951},"111":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"1532":{"tf":2.449489742783178},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":2.0},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.4142135623730951},"1571":{"tf":2.23606797749979},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.4142135623730951},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":3.0},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.7320508075688772},"646":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"684":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.0},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.0},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.7320508075688772},"1032":{"tf":1.4142135623730951},"1033":{"tf":2.0},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1487":{"tf":3.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1389":{"tf":2.6457513110645907},"1390":{"tf":1.0},"1391":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":2.0},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":2.0},"41":{"tf":1.0},"518":{"tf":2.0},"531":{"tf":1.0},"535":{"tf":2.0},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.4142135623730951},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"279":{"tf":1.0},"292":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.4142135623730951},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.4142135623730951},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1619":{"tf":1.4142135623730951},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.4142135623730951},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.6457513110645907},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.4142135623730951},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.0},"667":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.4142135623730951},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.4142135623730951},"1604":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.4142135623730951},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.4142135623730951},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.7320508075688772},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":103,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1416":{"tf":2.8284271247461903},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.23606797749979},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.449489742783178},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.449489742783178},"884":{"tf":1.0},"885":{"tf":1.7320508075688772},"886":{"tf":1.7320508075688772},"887":{"tf":2.449489742783178},"888":{"tf":1.0},"889":{"tf":1.7320508075688772},"890":{"tf":1.7320508075688772},"891":{"tf":2.0},"892":{"tf":2.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":2.23606797749979},"902":{"tf":2.0},"903":{"tf":2.0},"904":{"tf":1.7320508075688772},"905":{"tf":2.0},"906":{"tf":1.4142135623730951},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.7320508075688772},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":83,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.449489742783178},"1213":{"tf":1.7320508075688772},"1214":{"tf":2.23606797749979},"1215":{"tf":3.605551275463989},"1216":{"tf":1.7320508075688772},"1217":{"tf":2.8284271247461903},"1218":{"tf":2.449489742783178},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.7320508075688772},"1221":{"tf":2.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1225":{"tf":1.0},"1226":{"tf":2.8284271247461903},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.7320508075688772},"1229":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1233":{"tf":2.6457513110645907},"1234":{"tf":2.0},"1235":{"tf":2.23606797749979},"1236":{"tf":3.1622776601683795},"1237":{"tf":2.0},"1238":{"tf":2.23606797749979},"1239":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1243":{"tf":2.449489742783178},"1244":{"tf":2.449489742783178},"1245":{"tf":1.7320508075688772},"1246":{"tf":2.23606797749979},"1247":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1329":{"tf":2.23606797749979},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":2.6457513110645907},"1471":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":2.0},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.23606797749979},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"364":{"tf":2.0},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"801":{"tf":3.0},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.4142135623730951},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1559":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":22,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.4142135623730951},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":76,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":2.0},"1347":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":2.0},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.6457513110645907},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":2.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":2.0},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.6457513110645907}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.605551275463989},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":2.0},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.7320508075688772},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1227":{"tf":2.23606797749979},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":23,"docs":{"1058":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"149":{"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},"1593":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"1652":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1030":{"tf":2.0},"1031":{"tf":2.0},"1032":{"tf":1.7320508075688772},"1033":{"tf":2.0},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":2.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.449489742783178},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.449489742783178},"1185":{"tf":2.449489742783178},"1186":{"tf":2.0},"1187":{"tf":1.7320508075688772},"1188":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1196":{"tf":2.23606797749979},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1204":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":2.23606797749979},"1287":{"tf":1.0},"1288":{"tf":2.0},"1289":{"tf":2.0},"1290":{"tf":2.6457513110645907},"1291":{"tf":2.0},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"1345":{"tf":1.0},"135":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1360":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":2.23606797749979},"1385":{"tf":1.0},"139":{"tf":2.23606797749979},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.23606797749979},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.449489742783178},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":44,"docs":{"1313":{"tf":2.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.7320508075688772},"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}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.449489742783178},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":2.0},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":2.0},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"689":{"tf":1.0},"693":{"tf":1.7320508075688772},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":2.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.7320508075688772},"433":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.4142135623730951},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":2.0},"270":{"tf":1.4142135623730951},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.4142135623730951},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.449489742783178},"1433":{"tf":2.0},"1456":{"tf":2.0},"1498":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"49":{"tf":1.0},"492":{"tf":2.23606797749979},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.7320508075688772},"718":{"tf":1.4142135623730951},"728":{"tf":2.23606797749979},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.449489742783178},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.7320508075688772},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":112,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":398,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.4142135623730951},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.23606797749979},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":2.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":2.0},"397":{"tf":1.0},"40":{"tf":2.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.4142135623730951},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"528":{"tf":1.4142135623730951},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.4142135623730951},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"562":{"tf":1.0},"614":{"tf":1.4142135623730951},"636":{"tf":1.0},"733":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1164":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.23606797749979},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":2.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"828":{"tf":1.7320508075688772},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.7320508075688772},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":2.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":22,"docs":{"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":243,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.7320508075688772},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1058":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":2.0},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1555":{"tf":1.4142135623730951},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.7320508075688772},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":2.449489742783178},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.7320508075688772},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":358,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":2.0},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.605551275463989},"1074":{"tf":1.7320508075688772},"108":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"1128":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":2.0},"1404":{"tf":3.0},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.4641016151377544},"1493":{"tf":1.0},"1499":{"tf":3.1622776601683795},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":2.0},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.7320508075688772},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"196":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":2.8284271247461903},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":2.0},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":2.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"319":{"tf":2.8284271247461903},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"48":{"tf":1.0},"485":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"496":{"tf":2.0},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":2.0},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"721":{"tf":1.7320508075688772},"727":{"tf":2.0},"732":{"tf":2.0},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.4142135623730951}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":2.0},"1070":{"tf":2.23606797749979},"1071":{"tf":2.0},"1072":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.4142135623730951},"1084":{"tf":2.23606797749979},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.7320508075688772},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1178":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.7320508075688772},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":2.0},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.449489742783178},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.23606797749979},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.1622776601683795},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":2.0},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":2.0},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.4142135623730951},"947":{"tf":1.0},"957":{"tf":2.0},"977":{"tf":1.0},"978":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":42,"docs":{"1061":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.4142135623730951},"592":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.7320508075688772},"988":{"tf":1.7320508075688772},"989":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.7320508075688772},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":2.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.4142135623730951},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":51,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.4142135623730951},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.7320508075688772}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":111,"docs":{"1015":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.4142135623730951},"916":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.4142135623730951},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":26,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"672":{"tf":1.0},"77":{"tf":1.4142135623730951},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":13,"docs":{"1045":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1315":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"749":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"996":{"tf":1.0}}},"2":{"df":13,"docs":{"1046":{"tf":1.0},"1244":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"41":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"750":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"997":{"tf":1.0}}},"3":{"df":12,"docs":{"1047":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1317":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"751":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"998":{"tf":1.0}}},"4":{"df":5,"docs":{"1048":{"tf":1.0},"1246":{"tf":1.0},"1318":{"tf":1.0},"43":{"tf":1.0},"908":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":6,"docs":{"1049":{"tf":1.0},"1321":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"909":{"tf":1.0}}},"6":{"df":2,"docs":{"1322":{"tf":1.0},"45":{"tf":1.0}}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"a":{"2":{"a":{"df":10,"docs":{"1193":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"358":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1233":{"tf":1.0},"1309":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0}}}}},"d":{"df":9,"docs":{"1262":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"41":{"tf":1.0},"541":{"tf":1.0}}},"df":5,"docs":{"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"335":{"tf":1.0},"880":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"925":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1163":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"603":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"603":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"597":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"613":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"602":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"604":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"608":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"606":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"612":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"612":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"611":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"611":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"598":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"598":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"599":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"607":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"779":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"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":{},"i":{"d":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}}},"df":108,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1069":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1206":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1309":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1581":{"tf":1.0},"159":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"44":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"515":{"tf":1.0},"550":{"tf":1.0},"587":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"855":{"tf":1.0},"89":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"694":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":60,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1501":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1569":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"304":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"941":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"1309":{"tf":1.0},"1391":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"521":{"tf":1.0},"848":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"g":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":21,"docs":{"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1123":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1639":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"1630":{"tf":1.0}},"s":{"df":1,"docs":{"1628":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1307":{"tf":1.0},"1567":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1196":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1348":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":32,"docs":{"1184":{"tf":1.0},"1287":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"301":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"467":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}},"p":{"df":2,"docs":{"1282":{"tf":1.0},"1480":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1195":{"tf":1.0},"1372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"v":{"df":1,"docs":{"44":{"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":4,"docs":{"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"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":{"1278":{"tf":1.0},"130":{"tf":1.0},"812":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1605":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1253":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1166":{"tf":1.0},"1588":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":5,"docs":{"1266":{"tf":1.0},"1292":{"tf":1.0},"1298":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"906":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1287":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":16,"docs":{"1336":{"tf":1.0},"1504":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"346":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"697":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":2,"docs":{"1017":{"tf":1.0},"1200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1603":{"tf":1.0},"1611":{"tf":1.0},"984":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":5,"docs":{"1049":{"tf":1.0},"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"46":{"tf":1.0},"546":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1568":{"tf":1.0}}}}},"o":{"df":3,"docs":{"516":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1532":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1072":{"tf":1.0}}}},"df":7,"docs":{"1148":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"314":{"tf":1.0},"418":{"tf":1.0},"646":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1538":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1023":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1026":{"tf":1.0},"1237":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"21":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"407":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"1156":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1503":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"656":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1418":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1611":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1011":{"tf":1.0},"1534":{"tf":1.0},"509":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1538":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"432":{"tf":1.0},"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1270":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1353":{"tf":1.0},"1354":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1618":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1395":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"1295":{"tf":1.0},"1328":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.0},"381":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1338":{"tf":1.0},"1384":{"tf":1.0},"533":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"1193":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1244":{"tf":1.0},"39":{"tf":1.0},"808":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"813":{"tf":1.0},"875":{"tf":1.0}}}}}}}}},"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1010":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1055":{"tf":1.0},"1071":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1320":{"tf":1.0},"1340":{"tf":1.0},"1589":{"tf":1.0},"1596":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1634":{"tf":1.0},"277":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1056":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1443":{"tf":1.0},"1466":{"tf":1.0},"1580":{"tf":1.0},"1610":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":6,"docs":{"1139":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.0},"1249":{"tf":1.0},"514":{"tf":1.0},"756":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1232":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1058":{"tf":1.0},"1060":{"tf":1.0},"127":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"594":{"tf":1.0},"768":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.0},"120":{"tf":1.0},"1397":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1598":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"583":{"tf":1.0}}}},"df":12,"docs":{"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"583":{"tf":1.0},"750":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1018":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1425":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1367":{"tf":1.0},"1368":{"tf":1.0},"388":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1062":{"tf":1.0},"1079":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"141":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1653":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"429":{"tf":1.0},"510":{"tf":1.0},"662":{"tf":1.0},"799":{"tf":1.0},"808":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"15":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1131":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1023":{"tf":1.0},"142":{"tf":1.0},"1616":{"tf":1.0},"432":{"tf":1.0},"665":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"1219":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1517":{"tf":1.0},"291":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"581":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1068":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"816":{"tf":1.0}}},"s":{"df":1,"docs":{"530":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"824":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1066":{"tf":1.0},"1135":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"807":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"631":{"tf":1.0},"659":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1164":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":6,"docs":{"1491":{"tf":1.0},"1515":{"tf":1.0},"155":{"tf":1.0},"507":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":76,"docs":{"1012":{"tf":1.0},"1016":{"tf":1.0},"1028":{"tf":1.0},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1142":{"tf":1.0},"1198":{"tf":1.0},"1367":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"1634":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"744":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"92":{"tf":1.0},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"979":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1166":{"tf":1.0},"1251":{"tf":1.0},"299":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"225":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"585":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":3,"docs":{"1306":{"tf":1.0},"138":{"tf":1.0},"285":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1175":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"529":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"959":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"902":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1145":{"tf":1.0},"1263":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"337":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"767":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"987":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1228":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1150":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1155":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1403":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1497":{"tf":1.0},"1599":{"tf":1.0},"1609":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.0},"825":{"tf":1.0},"851":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"928":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"159":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1344":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1141":{"tf":1.0},"1187":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1587":{"tf":1.0},"1594":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1067":{"tf":1.0},"1097":{"tf":1.0},"1545":{"tf":1.0},"1639":{"tf":1.0},"226":{"tf":1.0},"420":{"tf":1.0},"64":{"tf":1.0},"648":{"tf":1.0},"864":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"1271":{"tf":1.0},"287":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1169":{"tf":1.0},"1324":{"tf":1.0},"1335":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0},"825":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1646":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":6,"docs":{"30":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1578":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"1124":{"tf":1.0},"1302":{"tf":1.0},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"1011":{"tf":1.0},"1334":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1165":{"tf":1.0},"219":{"tf":1.0},"457":{"tf":1.0},"693":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1626":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.0},"1320":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1373":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1011":{"tf":1.0},"1051":{"tf":1.0},"1274":{"tf":1.0},"1524":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"633":{"tf":1.0},"653":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1190":{"tf":1.0},"1271":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1111":{"tf":1.4142135623730951},"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1544":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"137":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1026":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1196":{"tf":1.0},"120":{"tf":1.0},"1413":{"tf":1.0},"1555":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"197":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1556":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":101,"docs":{"1004":{"tf":1.0},"1005":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1444":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1560":{"tf":1.0},"1563":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"84":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1535":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"321":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1322":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1195":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1099":{"tf":1.4142135623730951},"1640":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1383":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}}}},"b":{"df":3,"docs":{"253":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.0},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"924":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1595":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1338":{"tf":1.0},"1366":{"tf":1.0},"1579":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"898":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1224":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1022":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"829":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1234":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"657":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"1024":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1539":{"tf":1.0},"1541":{"tf":1.0},"1545":{"tf":1.0},"1550":{"tf":1.0},"1555":{"tf":1.0},"1560":{"tf":1.0},"1565":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1577":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"363":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"664":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"i":{"d":{"df":7,"docs":{"128":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1080":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"146":{"tf":1.0},"1476":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"365":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"581":{"tf":1.0},"670":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"753":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"698":{"tf":1.0},"799":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1292":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"481":{"tf":1.0},"516":{"tf":1.0},"717":{"tf":1.0}}}},"t":{"df":5,"docs":{"1425":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1016":{"tf":1.0}},"i":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":4,"docs":{"1264":{"tf":1.0},"1322":{"tf":1.0},"1366":{"tf":1.0},"395":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"537":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"822":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"493":{"tf":1.0},"729":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1150":{"tf":1.0},"1406":{"tf":1.0},"1500":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"1373":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"1551":{"tf":1.0},"1556":{"tf":1.0},"156":{"tf":1.0},"1562":{"tf":1.0},"157":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"330":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1205":{"tf":1.0},"1426":{"tf":1.0},"509":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1594":{"tf":1.0},"1597":{"tf":1.0}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1192":{"tf":1.0},"1282":{"tf":1.0},"1341":{"tf":1.0},"1393":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"761":{"tf":1.0}}}}},"df":1,"docs":{"1319":{"tf":1.0}},"m":{"c":{"df":0,"docs":{},"p":{"df":3,"docs":{"1461":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"568":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":34,"docs":{"1162":{"tf":1.0},"1179":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"249":{"tf":1.0},"479":{"tf":1.0},"54":{"tf":1.0},"715":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"961":{"tf":1.0},"973":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":29,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1526":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"45":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"742":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0},"970":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1146":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"909":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1400":{"tf":1.0},"1618":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1250":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"336":{"tf":1.0},"369":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1080":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"140":{"tf":1.0},"565":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"1070":{"tf":1.0},"1127":{"tf":1.0},"1509":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1644":{"tf":1.0},"312":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"796":{"tf":1.0},"828":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.0},"1382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"1544":{"tf":1.0},"1546":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1566":{"tf":1.0},"161":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"1198":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"1192":{"tf":1.0},"1332":{"tf":1.0},"1351":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"755":{"tf":1.0},"990":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1146":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1320":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1622":{"tf":1.0},"1632":{"tf":1.0},"497":{"tf":1.0},"614":{"tf":1.0},"624":{"tf":1.0},"733":{"tf":1.0},"788":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1007":{"tf":1.0},"1087":{"tf":1.0},"1126":{"tf":1.0},"311":{"tf":1.0},"926":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"515":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1483":{"tf":1.0},"1506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":5,"docs":{"13":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1162":{"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":{"1037":{"tf":1.0},"1535":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"1123":{"tf":1.0},"1137":{"tf":1.0},"1157":{"tf":1.0},"1260":{"tf":1.0},"1332":{"tf":1.0},"1361":{"tf":1.0},"1615":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":17,"docs":{"1046":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"363":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1129":{"tf":1.0},"1319":{"tf":1.0},"295":{"tf":1.0},"498":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1522":{"tf":1.0},"249":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"1489":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"954":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"667":{"tf":1.0},"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1081":{"tf":1.0},"267":{"tf":1.0},"881":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1349":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"1224":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1480":{"tf":1.0},"1650":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"562":{"tf":1.0},"566":{"tf":1.0},"617":{"tf":1.0},"809":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1310":{"tf":1.0},"222":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"1159":{"tf":1.0},"667":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.0},"1413":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"810":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"861":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"989":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"965":{"tf":1.0}}}}},"p":{"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":1,"docs":{"4":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"1013":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"545":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{"1189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1168":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1488":{"tf":1.0}},"i":{"df":5,"docs":{"188":{"tf":1.0},"360":{"tf":1.0},"468":{"tf":1.0},"704":{"tf":1.0},"83":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":26,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"766":{"tf":1.0},"79":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"301":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"760":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":19,"docs":{"1222":{"tf":1.0},"1223":{"tf":1.0},"1232":{"tf":1.0},"1277":{"tf":1.0},"1305":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1437":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"1527":{"tf":1.0},"1648":{"tf":1.0},"332":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"513":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"997":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1261":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1543":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1561":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1176":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1243":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"1059":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"1368":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"16":{"tf":1.0},"1603":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"6":{"tf":1.0},"751":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"594":{"tf":1.0},"637":{"tf":1.0},"768":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"301":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"8":{"tf":1.0},"803":{"tf":1.0}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1561":{"tf":1.0},"244":{"tf":1.0},"45":{"tf":1.0},"811":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"y":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1487":{"tf":1.0},"1530":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1089":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"122":{"tf":1.0},"1238":{"tf":1.0},"125":{"tf":1.0},"1278":{"tf":1.0},"1514":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"156":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"740":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"o":{"a":{"df":4,"docs":{"1393":{"tf":1.0},"553":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"513":{"tf":1.0}}}},"df":8,"docs":{"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"512":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"1020":{"tf":1.0},"1029":{"tf":1.0},"1060":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1198":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"788":{"tf":1.0},"863":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"101":{"tf":1.0},"1503":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"946":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"1394":{"tf":1.0}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"640":{"tf":1.0},"705":{"tf":1.0},"742":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1147":{"tf":1.0},"1319":{"tf":1.0},"1591":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"t":{"df":6,"docs":{"817":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1569":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1049":{"tf":1.0},"1309":{"tf":1.0},"1519":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"394":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"318":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1075":{"tf":1.0},"1559":{"tf":1.0},"198":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}}}}},"o":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.0},"1415":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"741":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"179":{"tf":1.0},"218":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1065":{"tf":1.0},"1194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":37,"docs":{"1191":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"620":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}},"df":1,"docs":{"298":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1149":{"tf":1.4142135623730951},"1210":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1024":{"tf":1.0},"265":{"tf":1.0},"961":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"1619":{"tf":1.0},"1620":{"tf":1.0},"1628":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"637":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"1520":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.0},"1342":{"tf":1.0},"1480":{"tf":1.0},"1577":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":21,"docs":{"1130":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1538":{"tf":1.0},"1615":{"tf":1.0},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1639":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"1277":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"972":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"522":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1549":{"tf":1.0},"1564":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1542":{"tf":1.0},"1552":{"tf":1.0},"396":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1205":{"tf":1.0},"1352":{"tf":1.0},"320":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1199":{"tf":1.0},"325":{"tf":1.0},"525":{"tf":1.0},"964":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"1621":{"tf":1.0},"1632":{"tf":1.0},"430":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"1371":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"1086":{"tf":1.0},"1311":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"210":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1423":{"tf":1.0},"1611":{"tf":1.0},"268":{"tf":1.0},"278":{"tf":1.0},"550":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1354":{"tf":1.0},"1385":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1420":{"tf":1.0},"1627":{"tf":1.0},"407":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":27,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":18,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1269":{"tf":1.0},"1358":{"tf":1.0},"1428":{"tf":1.0},"1617":{"tf":1.0},"1642":{"tf":1.0},"303":{"tf":1.0},"398":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"853":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"998":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"df":6,"docs":{"1152":{"tf":1.0},"1188":{"tf":1.0},"1625":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"933":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"401":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1596":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1587":{"tf":1.0},"1589":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"1361":{"tf":1.0},"1518":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"981":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"1384":{"tf":1.0},"1609":{"tf":1.0},"760":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"1182":{"tf":1.0},"1217":{"tf":1.0},"1256":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"239":{"tf":1.0},"490":{"tf":1.0},"726":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1321":{"tf":1.0},"1322":{"tf":1.0},"1506":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"174":{"tf":1.0},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"449":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"72":{"tf":1.0},"797":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"38":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1187":{"tf":1.0},"42":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"1530":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1366":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"1511":{"tf":1.0},"1579":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"474":{"tf":1.0},"525":{"tf":1.0},"710":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1090":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":15,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"308":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"635":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"739":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":2,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1046":{"tf":1.0},"1548":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"1178":{"tf":1.0},"1249":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1515":{"tf":1.0},"35":{"tf":1.0},"507":{"tf":1.0},"511":{"tf":1.0},"753":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1167":{"tf":1.0},"1236":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1343":{"tf":1.0},"549":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1131":{"tf":1.0},"274":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1090":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1352":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"18":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}},"p":{"df":2,"docs":{"151":{"tf":1.0},"630":{"tf":1.0}},"e":{"df":1,"docs":{"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1311":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"143":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"176":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.0},"660":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1368":{"tf":1.0},"3":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"1048":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1095":{"tf":1.0},"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1111":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1094":{"tf":1.0}},"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":{"1314":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"995":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1075":{"tf":1.0},"1241":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1546":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1655":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1003":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1418":{"tf":1.0},"1469":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1282":{"tf":1.0},"1525":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"641":{"tf":1.0},"744":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1167":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"838":{"tf":1.0},"889":{"tf":1.0},"917":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1193":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"534":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1201":{"tf":1.0},"1202":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"1191":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":2,"docs":{"1388":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1622":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"1230":{"tf":1.0},"1254":{"tf":1.0},"1257":{"tf":1.0},"1268":{"tf":1.0},"1357":{"tf":1.0},"1451":{"tf":1.0},"1642":{"tf":1.0},"302":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":1.0},"640":{"tf":1.0},"746":{"tf":1.0},"852":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"1062":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"441":{"tf":1.0}}}}}},"df":4,"docs":{"1273":{"tf":1.0},"1485":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1207":{"tf":1.0},"1373":{"tf":1.0},"298":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1235":{"tf":1.0}}}},"t":{"df":1,"docs":{"989":{"tf":1.0}}},"w":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"1176":{"tf":1.0},"1360":{"tf":1.0},"193":{"tf":1.0}},"i":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1203":{"tf":1.0},"1240":{"tf":1.0},"1384":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"38":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1086":{"tf":1.0},"1087":{"tf":1.0},"1174":{"tf":1.0},"118":{"tf":1.0},"1557":{"tf":1.0},"313":{"tf":1.0},"329":{"tf":1.0},"380":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.0},"1066":{"tf":1.0}}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1060":{"tf":1.0},"1303":{"tf":1.0},"1362":{"tf":1.0},"1398":{"tf":1.0},"1482":{"tf":1.0},"1512":{"tf":1.0},"1598":{"tf":1.0},"253":{"tf":1.0},"440":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"674":{"tf":1.0},"765":{"tf":1.0},"830":{"tf":1.0},"921":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1256":{"tf":1.0},"1330":{"tf":1.0},"508":{"tf":1.0},"751":{"tf":1.0}},"r":{"df":1,"docs":{"866":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1162":{"tf":1.0},"1260":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"892":{"tf":1.0},"900":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1619":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"1259":{"tf":1.0},"1272":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"1038":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"730":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1039":{"tf":1.0},"1575":{"tf":1.0},"495":{"tf":1.0},"545":{"tf":1.0},"731":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"1068":{"tf":1.0},"145":{"tf":1.0},"1528":{"tf":1.0},"1548":{"tf":1.0},"1558":{"tf":1.0},"165":{"tf":1.0},"249":{"tf":1.0},"322":{"tf":1.0},"399":{"tf":1.0},"54":{"tf":1.0},"628":{"tf":1.0},"827":{"tf":1.0},"837":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1074":{"tf":1.0},"122":{"tf":1.0},"1514":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":7,"docs":{"1040":{"tf":1.0},"1576":{"tf":1.0},"289":{"tf":1.0},"496":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"732":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"1386":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1099":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"1009":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1343":{"tf":1.0},"314":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"a":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1061":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":1,"docs":{"44":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1250":{"tf":1.0},"1271":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.0},"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1147":{"tf":1.0}}}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"1229":{"tf":1.0},"1235":{"tf":1.0},"166":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"5":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"3":{"df":3,"docs":{"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"364":{"tf":1.0},"801":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1275":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"385":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"350":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":54,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1158":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1505":{"tf":1.0},"1562":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"821":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"978":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"988":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1417":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1350":{"tf":1.0},"1391":{"tf":1.0},"521":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1013":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.0},"1132":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1537":{"tf":1.0},"237":{"tf":1.0},"273":{"tf":1.0},"324":{"tf":1.0},"40":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1396":{"tf":1.0},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1656":{"tf":1.0},"465":{"tf":1.0},"626":{"tf":1.0},"702":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1043":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1597":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"582":{"tf":1.0}}}},"df":18,"docs":{"1252":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"562":{"tf":1.0},"569":{"tf":1.0},"573":{"tf":1.0},"582":{"tf":1.0},"749":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"46":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1021":{"tf":1.0},"1529":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":17,"docs":{"1214":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1643":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1594":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1056":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1381":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"1003":{"tf":1.0},"1014":{"tf":1.0},"1016":{"tf":1.0},"1073":{"tf":1.0},"1078":{"tf":1.0},"1128":{"tf":1.0},"1208":{"tf":1.0},"1319":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1550":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"160":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"66":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"865":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":70,"docs":{"1004":{"tf":1.0},"1039":{"tf":1.0},"106":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1221":{"tf":1.0},"124":{"tf":1.0},"1266":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1307":{"tf":1.0},"1316":{"tf":1.0},"1346":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1442":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0},"1554":{"tf":1.0},"1567":{"tf":1.0},"1582":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"516":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"541":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"724":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"739":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"907":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"459":{"tf":1.0},"695":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"446":{"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":1,"docs":{"987":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"1621":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1533":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"479":{"tf":1.0},"715":{"tf":1.0},"840":{"tf":1.0},"891":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1370":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"1":{"tf":1.0},"1399":{"tf":1.0},"189":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0}}},"u":{"df":8,"docs":{"1083":{"tf":1.0},"1443":{"tf":1.0},"1466":{"tf":1.0},"290":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0},"938":{"tf":1.0}}}},"y":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":38,"docs":{"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1311":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1385":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1045":{"tf":1.0},"1144":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"1647":{"tf":1.0},"229":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"643":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1030":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"1180":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1389":{"tf":1.0},"532":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1391":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":5,"docs":{"1219":{"tf":1.0},"1352":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"734":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1362":{"tf":1.0},"1585":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"901":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1388":{"tf":1.0},"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1042":{"tf":1.0},"1085":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"176":{"tf":1.0},"410":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"747":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1622":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1312":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1630":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":26,"docs":{"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"891":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1228":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1329":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1471":{"tf":1.0},"1582":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"668":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1620":{"tf":1.0},"364":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"801":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1000":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1400":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1372":{"tf":1.0},"1559":{"tf":1.0},"297":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1014":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}}},"l":{"df":1,"docs":{"1010":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"946":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1189":{"tf":1.0},"1240":{"tf":1.0},"1256":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"533":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.0},"930":{"tf":1.0},"992":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1586":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"986":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1521":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0}}},"k":{"df":3,"docs":{"1376":{"tf":1.0},"277":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":1,"docs":{"1380":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1078":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1227":{"tf":1.0},"1253":{"tf":1.0},"505":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"1594":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"1002":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1267":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"325":{"tf":1.0},"810":{"tf":1.0},"990":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"454":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"1220":{"tf":1.0},"1385":{"tf":1.0},"528":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"1298":{"tf":1.0},"220":{"tf":1.0},"263":{"tf":1.0},"337":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"585":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"693":{"tf":1.0},"800":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"623":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1425":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1216":{"tf":1.0},"895":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1554":{"tf":1.0},"270":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"348":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"879":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":6,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"466":{"tf":1.0},"567":{"tf":1.0},"703":{"tf":1.0}}}},"df":50,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1195":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.0},"1339":{"tf":1.0},"1353":{"tf":1.0},"1422":{"tf":1.0},"173":{"tf":1.0},"280":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"439":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"528":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"673":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"818":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"497":{"tf":1.0},"614":{"tf":1.0},"733":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"89":{"tf":1.0},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":3,"docs":{"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1010":{"tf":1.0},"1014":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1505":{"tf":1.0},"1556":{"tf":1.0},"1562":{"tf":1.0},"1594":{"tf":1.0},"1610":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1083":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"1234":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1200":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1579":{"tf":1.0},"259":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1391":{"tf":1.0},"521":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":39,"docs":{"1019":{"tf":1.0},"1021":{"tf":1.0},"1026":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1364":{"tf":1.0},"1378":{"tf":1.0},"1414":{"tf":1.0},"1419":{"tf":1.0},"1551":{"tf":1.0},"1555":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1584":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1654":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"719":{"tf":1.0},"846":{"tf":1.0},"929":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"460":{"tf":1.0},"696":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":56,"docs":{"1005":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1266":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1318":{"tf":1.0},"1351":{"tf":1.0},"1383":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1432":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1499":{"tf":1.0},"1514":{"tf":1.0},"1581":{"tf":1.0},"1603":{"tf":1.0},"1609":{"tf":1.0},"1611":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"349":{"tf":1.0},"404":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"545":{"tf":1.0},"634":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"805":{"tf":1.0},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"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":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1327":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"445":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1081":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"145":{"tf":1.0},"1484":{"tf":1.0},"1564":{"tf":1.0},"1616":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"823":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"657":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":14,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1352":{"tf":1.0},"253":{"tf":1.0},"51":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1629":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"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":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1015":{"tf":1.0},"1027":{"tf":1.0},"1183":{"tf":1.0},"1197":{"tf":1.0},"1390":{"tf":1.0},"1504":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"344":{"tf":1.0},"486":{"tf":1.0},"556":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"908":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"1313":{"tf":1.0},"1356":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.0},"1505":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"904":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"505":{"tf":1.0},"760":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1324":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"1515":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"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 +{"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#start-with-the-deployment","index.html#what-jacs-gives-you","index.html#best-entry-points","index.html#implementations","index.html#rust","index.html#python-jacs","index.html#nodejs-haiaijacs","index.html#go-jacsgo","index.html#quick-start","index.html#rust-cli","index.html#python","index.html#nodejs","index.html#go","index.html#what-this-book-does-not-claim","index.html#community","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/decision-tree.html#which-jacs-path-should-i-use","getting-started/decision-tree.html#start-here","getting-started/decision-tree.html#when-you-probably-do-not-need-jacs","getting-started/decision-tree.html#recommended-adoption-order","usecases.html#use-cases","usecases.html#1-secure-a-local-mcp-tool-server","usecases.html#2-add-provenance-to-langchain-or-langgraph","usecases.html#3-exchange-signed-artifacts-across-organizations","usecases.html#4-sign-http-or-api-boundaries-without-mcp","usecases.html#5-run-multi-agent-approval-workflows","usecases.html#6-keep-signed-files-or-json-as-durable-artifacts","usecases.html#7-publish-public-identity-without-a-central-auth-service","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#zero-config-quick-start","getting-started/quick-start.html#password-bootstrap","getting-started/quick-start.html#macos-homebrew-install-rust-cli","getting-started/quick-start.html#mcp-server-rust-cli","getting-started/quick-start.html#advanced-explicit-agent-setup","getting-started/quick-start.html#install","getting-started/quick-start.html#initialize","getting-started/quick-start.html#sign-a-document","getting-started/quick-start.html#install-1","getting-started/quick-start.html#load-and-use","getting-started/quick-start.html#install-2","getting-started/quick-start.html#load-and-use-1","getting-started/quick-start.html#programmatic-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","getting-started/multi-agent-agreement.html#multi-agent-agreements","getting-started/multi-agent-agreement.html#the-lifecycle","getting-started/multi-agent-agreement.html#python","getting-started/multi-agent-agreement.html#nodejs--typescript","getting-started/multi-agent-agreement.html#what-just-happened","getting-started/multi-agent-agreement.html#next-steps","getting-started/verification.html#verifying-signed-documents","getting-started/verification.html#cli-jacs-verify","getting-started/verification.html#python","getting-started/verification.html#with-an-agent-loaded","getting-started/verification.html#without-an-agent-standalone","getting-started/verification.html#verify-by-document-id","getting-started/verification.html#nodejs","getting-started/verification.html#with-an-agent-loaded-1","getting-started/verification.html#without-an-agent-standalone-1","getting-started/verification.html#verify-by-document-id-1","getting-started/verification.html#verification-links","getting-started/verification.html#dns-verification","getting-started/verification.html#publishing-a-dns-record","getting-started/verification.html#looking-up-an-agent-by-domain","getting-started/verification.html#cli-verification-with-dns","getting-started/verification.html#cross-language-verification","getting-started/verification.html#key-resolution-order","getting-started/attestation.html#what-is-an-attestation","getting-started/attestation.html#signing-vs-attestation","getting-started/attestation.html#key-concepts","getting-started/attestation.html#subject","getting-started/attestation.html#claims","getting-started/attestation.html#evidence","getting-started/attestation.html#derivation-chain","getting-started/attestation.html#architecture-layers","getting-started/attestation.html#quick-example","getting-started/attestation.html#attestation-vs-a2a-trust-policy","getting-started/attestation.html#when-to-use-attestations","getting-started/trust-layers.html#jacs-trust-layers","getting-started/trust-layers.html#the-three-layers","getting-started/trust-layers.html#layer-a-identity--integrity-jacs-core","getting-started/trust-layers.html#layer-b-exchange--discovery-a2a-integration","getting-started/trust-layers.html#layer-c-trust-context-attestation","getting-started/trust-layers.html#terminology-glossary","getting-started/trust-layers.html#quick-decision-flow","getting-started/trust-layers.html#common-misconceptions","getting-started/deployment.html#deployment-compatibility","getting-started/deployment.html#supported-platforms","getting-started/deployment.html#not-yet-supported","getting-started/deployment.html#version-requirements","getting-started/deployment.html#docker-example","getting-started/deployment.html#lambda-deployment","getting-started/deployment.html#building-from-source","getting-started/troubleshooting.html#troubleshooting","getting-started/troubleshooting.html#installation-issues","getting-started/troubleshooting.html#pip-install-fails","getting-started/troubleshooting.html#npm-install-fails","getting-started/troubleshooting.html#alpine-linux--musl-libc","getting-started/troubleshooting.html#configuration-issues","getting-started/troubleshooting.html#config-not-found","getting-started/troubleshooting.html#private-key-decryption-failed","getting-started/troubleshooting.html#algorithm-detection-failed","getting-started/troubleshooting.html#runtime-issues","getting-started/troubleshooting.html#agent-creation-fails","getting-started/troubleshooting.html#signature-verification-fails","getting-started/troubleshooting.html#documents-not-found","getting-started/troubleshooting.html#building-from-source","getting-started/troubleshooting.html#getting-help","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-homebrew-macos","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#mcp-server","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-tutorial","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#mcp-server","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#detailed-service-example","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#agreement-options-v062","rust/agreements.html#timeout","rust/agreements.html#quorum-m-of-n-signing","rust/agreements.html#algorithm-constraints","rust/agreements.html#combined-options","rust/agreements.html#using-jacsclient-instance-based-api","rust/agreements.html#python","rust/agreements.html#nodejs","rust/agreements.html#mcp-tools-for-agreements","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability-rust-api","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-and-simple-api","nodejs/installation.html#instance-based-client-recommended-for-new-code","nodejs/installation.html#mcp-haiaijacsmcp","nodejs/installation.html#http--framework-adapters","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#local-indexed-sqlite","nodejs/installation.html#aws-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#v070-async-first-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#quickstartoptions","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#v070-async-first-api","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#mcp-integration-nodejs","nodejs/mcp.html#install","nodejs/mcp.html#1-wrap-a-transport","nodejs/mcp.html#with-a-loaded-client","nodejs/mcp.html#with-only-a-config-path","nodejs/mcp.html#2-register-jacs-tools-on-your-mcp-server","nodejs/mcp.html#failure-behavior","nodejs/mcp.html#common-pattern","nodejs/mcp.html#example-paths-in-this-repo","nodejs/mcp.html#when-to-use-langchain-instead","nodejs/langchain.html#langchainjs-integration","nodejs/langchain.html#choose-the-pattern","nodejs/langchain.html#give-the-agent-jacs-tools","nodejs/langchain.html#auto-sign-existing-tools","nodejs/langchain.html#install","nodejs/langchain.html#strict-mode","nodejs/langchain.html#examples-in-this-repo","nodejs/langchain.html#when-to-use-mcp-instead","nodejs/vercel-ai.html#vercel-ai-sdk","nodejs/vercel-ai.html#5-minute-quickstart","nodejs/vercel-ai.html#1-install","nodejs/vercel-ai.html#2-create-a-jacs-client","nodejs/vercel-ai.html#3-sign-every-model-output","nodejs/vercel-ai.html#quick-start","nodejs/vercel-ai.html#installation","nodejs/vercel-ai.html#two-ways-to-use","nodejs/vercel-ai.html#withprovenance-convenience","nodejs/vercel-ai.html#jacsprovenance-composable","nodejs/vercel-ai.html#options","nodejs/vercel-ai.html#streaming","nodejs/vercel-ai.html#tool-call-signing","nodejs/vercel-ai.html#provenance-record","nodejs/vercel-ai.html#strict-mode","nodejs/vercel-ai.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#5-minute-quickstart","nodejs/express.html#1-install","nodejs/express.html#2-create-a-jacs-client","nodejs/express.html#3-add-signing-middleware","nodejs/express.html#quick-start","nodejs/express.html#options","nodejs/express.html#what-the-middleware-does","nodejs/express.html#verify-incoming-requests","nodejs/express.html#auth-replay-protection-auth-endpoints","nodejs/express.html#auto-sign-responses","nodejs/express.html#manual-signing-in-routes","nodejs/express.html#per-route-middleware","nodejs/express.html#multiple-agents","nodejs/express.html#migration-from-jacsexpressmiddleware","nodejs/express.html#next-steps","nodejs/koa.html#koa-middleware","nodejs/koa.html#quick-start","nodejs/koa.html#options","nodejs/koa.html#how-it-works","nodejs/koa.html#auth-replay-protection-auth-endpoints","nodejs/koa.html#auto-sign-responses","nodejs/koa.html#manual-signing","nodejs/koa.html#comparison-with-express","nodejs/koa.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#v070-async-first-api","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath--agentloadsyncconfigpath","nodejs/api.html#agentcreatedocument--agentcreatedocumentsync","nodejs/api.html#agentverifydocument--agentverifydocumentsync","nodejs/api.html#agentverifysignature--agentverifysignaturesync","nodejs/api.html#agentupdatedocument--agentupdatedocumentsync","nodejs/api.html#agentcreateagreement--agentcreateagreementsync","nodejs/api.html#agentsignagreement--agentsignagreementsync","nodejs/api.html#agentcheckagreement--agentcheckagreementsync","nodejs/api.html#agentsignartifact--agentsignartifactsync","nodejs/api.html#agentwrapa2aartifact--agentwrapa2aartifactsync","nodejs/api.html#agentsignstring--agentsignstringsync","nodejs/api.html#agentverifystring--agentverifystringsync","nodejs/api.html#agentsignrequestparams----v8-thread-only","nodejs/api.html#agentverifyresponsedocumentstring----v8-thread-only","nodejs/api.html#agentverifyresponsewithagentiddocumentstring----v8-thread-only","nodejs/api.html#agentverifyagent--agentverifyagentsync","nodejs/api.html#agentupdateagent--agentupdateagentsync","nodejs/api.html#agentsignagent--agentsignagentsync","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#local-indexed-sqlite","python/installation.html#aws-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#quickstartname-domain-descriptionnone-algorithmnone-config_pathnone","python/simple-api.html#loadconfig_pathnone-strictnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#verify_by_iddocument_id","python/simple-api.html#reencrypt_keyold_password-new_password","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration-python","python/mcp.html#what-is-supported","python/mcp.html#important-constraints","python/mcp.html#1-secure-a-fastmcp-server","python/mcp.html#2-secure-a-fastmcp-client","python/mcp.html#3-register-jacs-as-mcp-tools","python/mcp.html#useful-helper-apis","python/mcp.html#example-paths-in-this-repo","python/mcp.html#when-to-use-adapters-instead","python/adapters.html#framework-adapters","python/adapters.html#choose-the-adapter","python/adapters.html#langchain--langgraph","python/adapters.html#langchain-middleware","python/adapters.html#langgraph-toolnode","python/adapters.html#wrap-one-tool-instead-of-the-whole-graph","python/adapters.html#fastapi--starlette","python/adapters.html#crewai","python/adapters.html#anthropic--claude-sdk","python/adapters.html#when-to-use-mcp-instead","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentwrap_a2a_artifactartifact_json-artifact_type-parent_signatures_jsonnone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","go/installation.html#go-jacsgo-installation-and-quick-start","go/installation.html#install","go/installation.html#minimal-sign--verify","go/installation.html#programmatic-agent-creation","go/installation.html#concurrent-use","go/installation.html#common-go-use-cases","go/installation.html#mcp-and-http-patterns","go/installation.html#identity-and-trust-notes","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#config-file-schema","schemas/configuration.html#schema-location","schemas/configuration.html#minimal-configuration","schemas/configuration.html#fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-fields","schemas/configuration.html#environment-variables","schemas/configuration.html#see-also","concepts/attestation-comparison.html#jacs-attestation-vs-other-standards","concepts/attestation-comparison.html#comparison-table","concepts/attestation-comparison.html#jacs-vs-in-toto--slsa","concepts/attestation-comparison.html#jacs-vs-sigstore--cosign","concepts/attestation-comparison.html#jacs-vs-scitt","concepts/attestation-comparison.html#jacs-vs-ietf-rats--eat","concepts/attestation-comparison.html#jacs-vs-csa-agentic-trust-framework","concepts/attestation-comparison.html#when-to-use-jacs","concepts/attestation-comparison.html#when-to-use-jacs-alongside-other-tools","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/algorithm-guide.html#algorithm-selection-guide","advanced/algorithm-guide.html#supported-algorithms","advanced/algorithm-guide.html#how-to-choose","advanced/algorithm-guide.html#when-to-choose-post-quantum","advanced/algorithm-guide.html#cross-algorithm-verification","advanced/algorithm-guide.html#configuration","advanced/algorithm-guide.html#current-limitations","advanced/storage.html#storage-backends","advanced/storage.html#built-in-core-backends","advanced/storage.html#filesystem-fs","advanced/storage.html#local-indexed-sqlite-rusqlite","advanced/storage.html#aws-aws","advanced/storage.html#memory-memory","advanced/storage.html#extracted-backend-crates","advanced/storage.html#choosing-a-backend","advanced/storage.html#migration-notes","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/trust-store.html#trust-store-operations","advanced/trust-store.html#how-it-works","advanced/trust-store.html#api","advanced/trust-store.html#python-example","advanced/trust-store.html#nodejs-example","advanced/trust-store.html#cross-organization-scenario","advanced/trust-store.html#security-notes","advanced/infrastructure.html#infrastructure-vs-tools-jacs-as-middleware","advanced/infrastructure.html#the-difference","advanced/infrastructure.html#transport-level-mcp-proxies","advanced/infrastructure.html#framework-level-express--fastapi-middleware","advanced/infrastructure.html#protocol-level-a2a-agent-cards","advanced/infrastructure.html#why-this-matters","advanced/infrastructure.html#when-to-use-each-approach","advanced/dns-trust.html#dns-trust-anchoring","advanced/dns-trust.html#how-it-works","advanced/dns-trust.html#four-configuration-levels","advanced/dns-trust.html#security-model-assumptions","advanced/dns-trust.html#known-attack-vectors","advanced/dns-trust.html#what-jacs-provides","advanced/dns-trust.html#what-jacs-does-not-yet-provide","advanced/dns-trust.html#recommendations","advanced/dns-trust.html#see-also","advanced/failure-modes.html#failure-modes","advanced/failure-modes.html#partial-signing-agent-crash","advanced/failure-modes.html#quorum-not-met","advanced/failure-modes.html#tampered-signature","advanced/failure-modes.html#tampered-document-body","advanced/failure-modes.html#in-memory-consistency-after-signing","advanced/failure-modes.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#mcp-overview","integrations/mcp.html#choose-the-mcp-path","integrations/mcp.html#best-fit-by-runtime","integrations/mcp.html#important-constraints","integrations/mcp.html#1-ready-made-server-jacs-mcp","integrations/mcp.html#2-transport-security-around-your-existing-mcp-code","integrations/mcp.html#python","integrations/mcp.html#nodejs","integrations/mcp.html#3-register-jacs-operations-as-mcp-tools","integrations/mcp.html#python-1","integrations/mcp.html#nodejs-1","integrations/mcp.html#example-paths-in-this-repo","integrations/mcp.html#related-guides","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds-to-a2a","integrations/a2a.html#the-core-flow","integrations/a2a.html#1-export-an-agent-card","integrations/a2a.html#2-serve-discovery-documents","integrations/a2a.html#3-sign-and-verify-artifacts","integrations/a2a.html#trust-policies","integrations/a2a.html#python","integrations/a2a.html#nodejs","integrations/a2a.html#bootstrap-patterns","integrations/a2a.html#current-runtime-differences","integrations/a2a.html#example-paths-in-this-repo","guides/a2a-quickstart.html#a2a-quickstart","guides/a2a-quickstart.html#jacs-for-a2a-developers","guides/a2a-quickstart.html#what-stays-the-same","guides/a2a-quickstart.html#what-jacs-adds","guides/a2a-quickstart.html#minimal-integration-add-jacs-to-existing-a2a-code","guides/a2a-quickstart.html#dual-key-architecture","guides/a2a-quickstart.html#troubleshooting-faq","guides/a2a-quickstart.html#next-steps","guides/a2a-serve.html#serve-your-agent-card","guides/a2a-serve.html#production-mount-into-your-own-fastapi-app","guides/a2a-serve.html#what-gets-served","guides/a2a-serve.html#next-steps","guides/a2a-discover.html#discover--trust-remote-agents","guides/a2a-discover.html#add-to-your-trust-store","guides/a2a-discover.html#async-api","guides/a2a-discover.html#add-to-your-trust-store-1","guides/a2a-discover.html#trust-policies","guides/a2a-discover.html#how-trust-flows","guides/a2a-discover.html#next-steps","guides/a2a-exchange.html#exchange-signed-artifacts","guides/a2a-exchange.html#sign-and-verify","guides/a2a-exchange.html#chain-of-custody","guides/a2a-exchange.html#build-an-audit-trail","guides/a2a-exchange.html#sign-and-verify-1","guides/a2a-exchange.html#chain-of-custody-1","guides/a2a-exchange.html#artifact-types","guides/a2a-exchange.html#what-gets-signed","guides/a2a-exchange.html#next-steps","guides/sign-vs-attest.html#sign-vs-attest-when-to-use-which","guides/sign-vs-attest.html#decision-tree","guides/sign-vs-attest.html#quick-reference","guides/sign-vs-attest.html#examples","guides/sign-vs-attest.html#just-need-integrity-use-signing","guides/sign-vs-attest.html#need-trust-context-use-attestation","guides/sign-vs-attest.html#already-signed-lift-to-attestation","guides/sign-vs-attest.html#common-patterns","guides/sign-vs-attest.html#ai-agent-action-logging","guides/sign-vs-attest.html#human-review-attestation","guides/sign-vs-attest.html#multi-step-pipeline","guides/sign-vs-attest.html#cross-system-verification","guides/attestation-tutorial.html#tutorial-add-attestations-to-your-workflow","guides/attestation-tutorial.html#prerequisites","guides/attestation-tutorial.html#step-1-create-an-agent","guides/attestation-tutorial.html#step-2-sign-a-document","guides/attestation-tutorial.html#step-3-create-an-attestation","guides/attestation-tutorial.html#step-4-verify-the-attestation","guides/attestation-tutorial.html#local-verification-fast----signature--hash-only","guides/attestation-tutorial.html#full-verification-thorough----includes-evidence--derivation-chain","guides/attestation-tutorial.html#step-5-add-evidence-optional","guides/attestation-tutorial.html#step-6-export-as-dsse-optional","guides/attestation-tutorial.html#whats-next","guides/custom-adapters.html#writing-a-custom-evidence-adapter","guides/custom-adapters.html#what-is-an-evidenceadapter","guides/custom-adapters.html#the-normalize-contract","guides/custom-adapters.html#the-verify_evidence-contract","guides/custom-adapters.html#step-by-step-building-a-jwt-adapter","guides/custom-adapters.html#testing-your-adapter","guides/custom-adapters.html#registering-your-adapter-with-the-agent","guides/custom-adapters.html#privacy-considerations","guides/framework-attestation.html#framework-adapter-attestation-guide","guides/framework-attestation.html#common-patterns","guides/framework-attestation.html#default-claims","guides/framework-attestation.html#custom-claims","guides/framework-attestation.html#evidence-attachment","guides/framework-attestation.html#langchain","guides/framework-attestation.html#enabling-attestation-on-tool-calls","guides/framework-attestation.html#using-the-signed_tool-decorator","guides/framework-attestation.html#with-langchain-chains","guides/framework-attestation.html#fastapi","guides/framework-attestation.html#attestation-middleware","guides/framework-attestation.html#per-route-attestation","guides/framework-attestation.html#crewai","guides/framework-attestation.html#attestation-guardrails","guides/framework-attestation.html#signed-tasks","guides/framework-attestation.html#jacssignedtool","guides/framework-attestation.html#anthropic","guides/framework-attestation.html#tool-hook-attestation","guides/framework-attestation.html#with-the-anthropic-sdk","guides/framework-attestation.html#verifying-framework-attestations","guides/framework-attestation.html#strict-vs-permissive-mode","guides/a2a-attestation-composition.html#a2a--attestation-using-both-together","guides/a2a-attestation-composition.html#when-you-need-both","guides/a2a-attestation-composition.html#the-composition-rule","guides/a2a-attestation-composition.html#example-workflow","guides/a2a-attestation-composition.html#python","guides/a2a-attestation-composition.html#nodejs","guides/a2a-attestation-composition.html#what-not-to-do","guides/a2a-attestation-composition.html#further-reading","guides/observability.html#observability--monitoring-guide","guides/observability.html#structured-event-reference","guides/observability.html#signing-events","guides/observability.html#verification-events","guides/observability.html#agreement-events","guides/observability.html#enabling-otel-export","guides/observability.html#otel-collector-configuration","guides/observability.html#pointing-jacs-at-the-collector","guides/observability.html#feeding-events-to-datadog","guides/observability.html#feeding-events-to-splunk","guides/observability.html#agreement-monitoring","guides/observability.html#agreements-approaching-timeout","guides/observability.html#failed-quorum-detection","guides/observability.html#signature-velocity","guides/observability.html#expiry-alerts","guides/observability.html#latency-tracking","guides/observability.html#next-steps","guides/email-signing.html#email-signing-and-verification","guides/email-signing.html#signing-an-email","guides/email-signing.html#the-emailsigner-trait","guides/email-signing.html#what-sign_email-does-internally","guides/email-signing.html#forwarding-re-signing","guides/email-signing.html#verifying-an-email","guides/email-signing.html#one-call-api-recommended","guides/email-signing.html#two-step-api-when-you-need-the-jacs-document","guides/email-signing.html#field-level-results","guides/email-signing.html#the-jacs-signature-document","guides/email-signing.html#public-api-summary","guides/streaming.html#streaming-signing","guides/streaming.html#how-it-works-by-framework","guides/streaming.html#vercel-ai-sdk-streamtext","guides/streaming.html#langchain--langgraph","guides/streaming.html#express--koa--fastapi","guides/streaming.html#raw-llm-apis-no-framework-adapter","guides/streaming.html#when-not-to-buffer","guides/streaming.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#mcp","examples/integrations.html#langchain--langgraph","examples/integrations.html#a2a","examples/integrations.html#http--app-middleware","examples/integrations.html#rule-of-thumb","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-quickstart","reference/cli-commands.html#jacs-verify","reference/cli-commands.html#jacs-keychain","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#zero-config-path","reference/configuration.html#minimal-configuration","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#os-keychain-configuration","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#documentservice-guarantees","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/attestation-errors.html#attestation-verification-results","reference/attestation-errors.html#result-structure","reference/attestation-errors.html#top-level-fields","reference/attestation-errors.html#crypto-object","reference/attestation-errors.html#evidence-array-full-tier-only","reference/attestation-errors.html#chain-object-full-tier-only","reference/attestation-errors.html#verification-tiers","reference/attestation-errors.html#local-tier-verify_attestation","reference/attestation-errors.html#full-tier-verify_attestationfulltrue","reference/attestation-errors.html#troubleshooting","reference/attestation-errors.html#valid-is-false-but-crypto-shows-all-true","reference/attestation-errors.html#evidence-is-empty","reference/attestation-errors.html#chain-is-null","reference/attestation-errors.html#signature_valid-is-false-after-serialization","reference/attest-cli.html#cli-reference-jacs-attest","reference/attest-cli.html#jacs-attest-create","reference/attest-cli.html#synopsis","reference/attest-cli.html#options","reference/attest-cli.html#examples","reference/attest-cli.html#jacs-attest-verify","reference/attest-cli.html#synopsis-1","reference/attest-cli.html#arguments","reference/attest-cli.html#options-1","reference/attest-cli.html#examples-1","reference/attest-cli.html#piping-and-scripting-patterns","reference/attest-cli.html#create-and-verify-in-one-pipeline","reference/attest-cli.html#check-validity-in-a-script","reference/attest-cli.html#batch-verify-multiple-attestations","reference/attest-cli.html#exit-codes","reference/attest-cli.html#environment-variables","reference/attest-cli.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-nodejs-from-06x-to-070","reference/migration.html#breaking-change-async-first-api","reference/migration.html#method-renaming-summary","reference/migration.html#v8-thread-only-methods-no-change","reference/migration.html#simplified-api-module-level","reference/migration.html#pure-sync-functions-no-change","reference/migration.html#migration-steps","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#deprecated-method-aliases-090","reference/migration.html#runtime-deprecation-warnings","reference/migration.html#deprecated-alias-table","reference/migration.html#migration-examples","reference/migration.html#module-level-function-deprecation-reminder","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps-1","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":18,"breadcrumbs":6,"title":5},"1":{"body":67,"breadcrumbs":3,"title":2},"10":{"body":10,"breadcrumbs":3,"title":2},"100":{"body":42,"breadcrumbs":6,"title":3},"1000":{"body":0,"breadcrumbs":4,"title":2},"1001":{"body":53,"breadcrumbs":4,"title":2},"1002":{"body":11,"breadcrumbs":4,"title":2},"1003":{"body":0,"breadcrumbs":4,"title":2},"1004":{"body":45,"breadcrumbs":4,"title":2},"1005":{"body":23,"breadcrumbs":4,"title":2},"1006":{"body":0,"breadcrumbs":4,"title":2},"1007":{"body":23,"breadcrumbs":4,"title":2},"1008":{"body":310,"breadcrumbs":4,"title":2},"1009":{"body":23,"breadcrumbs":4,"title":2},"101":{"body":11,"breadcrumbs":4,"title":1},"1010":{"body":9,"breadcrumbs":5,"title":3},"1011":{"body":21,"breadcrumbs":5,"title":3},"1012":{"body":35,"breadcrumbs":4,"title":2},"1013":{"body":34,"breadcrumbs":4,"title":2},"1014":{"body":10,"breadcrumbs":5,"title":3},"1015":{"body":37,"breadcrumbs":3,"title":1},"1016":{"body":24,"breadcrumbs":5,"title":3},"1017":{"body":41,"breadcrumbs":6,"title":4},"1018":{"body":24,"breadcrumbs":4,"title":2},"1019":{"body":11,"breadcrumbs":4,"title":2},"102":{"body":122,"breadcrumbs":4,"title":1},"1020":{"body":43,"breadcrumbs":4,"title":2},"1021":{"body":12,"breadcrumbs":5,"title":3},"1022":{"body":74,"breadcrumbs":4,"title":2},"1023":{"body":19,"breadcrumbs":4,"title":2},"1024":{"body":41,"breadcrumbs":4,"title":2},"1025":{"body":33,"breadcrumbs":4,"title":2},"1026":{"body":6,"breadcrumbs":5,"title":3},"1027":{"body":22,"breadcrumbs":3,"title":1},"1028":{"body":6,"breadcrumbs":3,"title":1},"1029":{"body":23,"breadcrumbs":4,"title":2},"103":{"body":119,"breadcrumbs":5,"title":2},"1030":{"body":8,"breadcrumbs":5,"title":3},"1031":{"body":17,"breadcrumbs":4,"title":2},"1032":{"body":20,"breadcrumbs":4,"title":2},"1033":{"body":119,"breadcrumbs":5,"title":3},"1034":{"body":31,"breadcrumbs":4,"title":2},"1035":{"body":6,"breadcrumbs":4,"title":2},"1036":{"body":23,"breadcrumbs":4,"title":2},"1037":{"body":26,"breadcrumbs":4,"title":2},"1038":{"body":3,"breadcrumbs":4,"title":2},"1039":{"body":22,"breadcrumbs":4,"title":2},"104":{"body":53,"breadcrumbs":4,"title":1},"1040":{"body":8,"breadcrumbs":4,"title":2},"1041":{"body":0,"breadcrumbs":4,"title":2},"1042":{"body":23,"breadcrumbs":4,"title":2},"1043":{"body":28,"breadcrumbs":4,"title":2},"1044":{"body":0,"breadcrumbs":5,"title":3},"1045":{"body":17,"breadcrumbs":5,"title":3},"1046":{"body":38,"breadcrumbs":5,"title":3},"1047":{"body":15,"breadcrumbs":5,"title":3},"1048":{"body":6,"breadcrumbs":5,"title":3},"1049":{"body":10,"breadcrumbs":5,"title":3},"105":{"body":22,"breadcrumbs":5,"title":2},"1050":{"body":0,"breadcrumbs":4,"title":2},"1051":{"body":14,"breadcrumbs":3,"title":1},"1052":{"body":80,"breadcrumbs":3,"title":1},"1053":{"body":15,"breadcrumbs":3,"title":1},"1054":{"body":0,"breadcrumbs":4,"title":2},"1055":{"body":11,"breadcrumbs":4,"title":2},"1056":{"body":13,"breadcrumbs":4,"title":2},"1057":{"body":12,"breadcrumbs":3,"title":1},"1058":{"body":0,"breadcrumbs":5,"title":3},"1059":{"body":168,"breadcrumbs":5,"title":3},"106":{"body":30,"breadcrumbs":6,"title":3},"1060":{"body":34,"breadcrumbs":5,"title":3},"1061":{"body":26,"breadcrumbs":6,"title":4},"1062":{"body":22,"breadcrumbs":5,"title":3},"1063":{"body":16,"breadcrumbs":3,"title":1},"1064":{"body":25,"breadcrumbs":4,"title":2},"1065":{"body":0,"breadcrumbs":5,"title":3},"1066":{"body":19,"breadcrumbs":5,"title":3},"1067":{"body":22,"breadcrumbs":4,"title":2},"1068":{"body":24,"breadcrumbs":4,"title":2},"1069":{"body":12,"breadcrumbs":4,"title":2},"107":{"body":116,"breadcrumbs":6,"title":3},"1070":{"body":52,"breadcrumbs":4,"title":2},"1071":{"body":27,"breadcrumbs":4,"title":2},"1072":{"body":12,"breadcrumbs":5,"title":3},"1073":{"body":28,"breadcrumbs":4,"title":2},"1074":{"body":42,"breadcrumbs":5,"title":3},"1075":{"body":35,"breadcrumbs":5,"title":3},"1076":{"body":0,"breadcrumbs":5,"title":3},"1077":{"body":33,"breadcrumbs":5,"title":3},"1078":{"body":24,"breadcrumbs":4,"title":2},"1079":{"body":56,"breadcrumbs":5,"title":3},"108":{"body":0,"breadcrumbs":4,"title":1},"1080":{"body":80,"breadcrumbs":5,"title":3},"1081":{"body":9,"breadcrumbs":6,"title":4},"1082":{"body":70,"breadcrumbs":4,"title":2},"1083":{"body":22,"breadcrumbs":5,"title":3},"1084":{"body":42,"breadcrumbs":5,"title":3},"1085":{"body":7,"breadcrumbs":6,"title":4},"1086":{"body":33,"breadcrumbs":6,"title":4},"1087":{"body":9,"breadcrumbs":5,"title":3},"1088":{"body":0,"breadcrumbs":4,"title":2},"1089":{"body":22,"breadcrumbs":4,"title":2},"109":{"body":11,"breadcrumbs":5,"title":2},"1090":{"body":24,"breadcrumbs":4,"title":2},"1091":{"body":14,"breadcrumbs":4,"title":2},"1092":{"body":0,"breadcrumbs":4,"title":2},"1093":{"body":15,"breadcrumbs":4,"title":2},"1094":{"body":19,"breadcrumbs":5,"title":3},"1095":{"body":21,"breadcrumbs":5,"title":3},"1096":{"body":15,"breadcrumbs":3,"title":1},"1097":{"body":18,"breadcrumbs":4,"title":2},"1098":{"body":54,"breadcrumbs":4,"title":2},"1099":{"body":4,"breadcrumbs":5,"title":3},"11":{"body":3,"breadcrumbs":2,"title":1},"110":{"body":23,"breadcrumbs":6,"title":3},"1100":{"body":13,"breadcrumbs":3,"title":1},"1101":{"body":24,"breadcrumbs":3,"title":1},"1102":{"body":3,"breadcrumbs":3,"title":1},"1103":{"body":11,"breadcrumbs":4,"title":2},"1104":{"body":21,"breadcrumbs":3,"title":1},"1105":{"body":7,"breadcrumbs":4,"title":2},"1106":{"body":14,"breadcrumbs":3,"title":1},"1107":{"body":24,"breadcrumbs":3,"title":1},"1108":{"body":3,"breadcrumbs":3,"title":1},"1109":{"body":10,"breadcrumbs":4,"title":2},"111":{"body":9,"breadcrumbs":6,"title":3},"1110":{"body":12,"breadcrumbs":3,"title":1},"1111":{"body":7,"breadcrumbs":5,"title":3},"1112":{"body":18,"breadcrumbs":3,"title":1},"1113":{"body":27,"breadcrumbs":3,"title":1},"1114":{"body":3,"breadcrumbs":3,"title":1},"1115":{"body":14,"breadcrumbs":4,"title":2},"1116":{"body":13,"breadcrumbs":3,"title":1},"1117":{"body":8,"breadcrumbs":4,"title":2},"1118":{"body":18,"breadcrumbs":3,"title":1},"1119":{"body":20,"breadcrumbs":3,"title":1},"112":{"body":0,"breadcrumbs":4,"title":1},"1120":{"body":2,"breadcrumbs":3,"title":1},"1121":{"body":12,"breadcrumbs":4,"title":2},"1122":{"body":8,"breadcrumbs":3,"title":1},"1123":{"body":0,"breadcrumbs":5,"title":3},"1124":{"body":26,"breadcrumbs":4,"title":2},"1125":{"body":41,"breadcrumbs":4,"title":2},"1126":{"body":20,"breadcrumbs":4,"title":2},"1127":{"body":30,"breadcrumbs":4,"title":2},"1128":{"body":46,"breadcrumbs":4,"title":2},"1129":{"body":20,"breadcrumbs":3,"title":1},"113":{"body":13,"breadcrumbs":5,"title":2},"1130":{"body":56,"breadcrumbs":4,"title":2},"1131":{"body":32,"breadcrumbs":4,"title":2},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":15,"breadcrumbs":4,"title":2},"1134":{"body":13,"breadcrumbs":4,"title":2},"1135":{"body":19,"breadcrumbs":4,"title":2},"1136":{"body":14,"breadcrumbs":3,"title":1},"1137":{"body":18,"breadcrumbs":6,"title":3},"1138":{"body":53,"breadcrumbs":5,"title":2},"1139":{"body":45,"breadcrumbs":4,"title":1},"114":{"body":15,"breadcrumbs":6,"title":3},"1140":{"body":77,"breadcrumbs":6,"title":3},"1141":{"body":37,"breadcrumbs":6,"title":3},"1142":{"body":45,"breadcrumbs":4,"title":1},"1143":{"body":32,"breadcrumbs":5,"title":2},"1144":{"body":61,"breadcrumbs":4,"title":2},"1145":{"body":60,"breadcrumbs":5,"title":3},"1146":{"body":33,"breadcrumbs":4,"title":2},"1147":{"body":53,"breadcrumbs":6,"title":4},"1148":{"body":44,"breadcrumbs":4,"title":2},"1149":{"body":13,"breadcrumbs":4,"title":2},"115":{"body":6,"breadcrumbs":6,"title":3},"1150":{"body":29,"breadcrumbs":5,"title":3},"1151":{"body":26,"breadcrumbs":4,"title":2},"1152":{"body":28,"breadcrumbs":4,"title":2},"1153":{"body":18,"breadcrumbs":4,"title":2},"1154":{"body":24,"breadcrumbs":3,"title":1},"1155":{"body":0,"breadcrumbs":5,"title":3},"1156":{"body":48,"breadcrumbs":4,"title":2},"1157":{"body":161,"breadcrumbs":5,"title":3},"1158":{"body":0,"breadcrumbs":5,"title":3},"1159":{"body":7,"breadcrumbs":5,"title":3},"116":{"body":46,"breadcrumbs":5,"title":2},"1160":{"body":16,"breadcrumbs":4,"title":2},"1161":{"body":19,"breadcrumbs":5,"title":3},"1162":{"body":33,"breadcrumbs":5,"title":3},"1163":{"body":0,"breadcrumbs":5,"title":3},"1164":{"body":31,"breadcrumbs":4,"title":2},"1165":{"body":28,"breadcrumbs":4,"title":2},"1166":{"body":13,"breadcrumbs":4,"title":2},"1167":{"body":13,"breadcrumbs":4,"title":2},"1168":{"body":0,"breadcrumbs":4,"title":2},"1169":{"body":56,"breadcrumbs":5,"title":3},"117":{"body":30,"breadcrumbs":5,"title":2},"1170":{"body":0,"breadcrumbs":3,"title":1},"1171":{"body":31,"breadcrumbs":4,"title":2},"1172":{"body":42,"breadcrumbs":4,"title":2},"1173":{"body":0,"breadcrumbs":4,"title":2},"1174":{"body":58,"breadcrumbs":4,"title":2},"1175":{"body":59,"breadcrumbs":4,"title":2},"1176":{"body":54,"breadcrumbs":5,"title":3},"1177":{"body":0,"breadcrumbs":4,"title":2},"1178":{"body":2,"breadcrumbs":4,"title":2},"1179":{"body":6,"breadcrumbs":4,"title":2},"118":{"body":19,"breadcrumbs":6,"title":3},"1180":{"body":15,"breadcrumbs":4,"title":2},"1181":{"body":12,"breadcrumbs":3,"title":1},"1182":{"body":28,"breadcrumbs":5,"title":3},"1183":{"body":32,"breadcrumbs":3,"title":1},"1184":{"body":37,"breadcrumbs":3,"title":1},"1185":{"body":46,"breadcrumbs":4,"title":2},"1186":{"body":26,"breadcrumbs":4,"title":2},"1187":{"body":82,"breadcrumbs":5,"title":3},"1188":{"body":41,"breadcrumbs":4,"title":2},"1189":{"body":29,"breadcrumbs":8,"title":5},"119":{"body":16,"breadcrumbs":7,"title":4},"1190":{"body":18,"breadcrumbs":4,"title":1},"1191":{"body":41,"breadcrumbs":7,"title":4},"1192":{"body":40,"breadcrumbs":8,"title":5},"1193":{"body":24,"breadcrumbs":8,"title":5},"1194":{"body":61,"breadcrumbs":4,"title":1},"1195":{"body":49,"breadcrumbs":6,"title":3},"1196":{"body":26,"breadcrumbs":6,"title":3},"1197":{"body":45,"breadcrumbs":4,"title":1},"1198":{"body":92,"breadcrumbs":6,"title":3},"1199":{"body":52,"breadcrumbs":6,"title":3},"12":{"body":3,"breadcrumbs":2,"title":1},"120":{"body":32,"breadcrumbs":6,"title":3},"1200":{"body":56,"breadcrumbs":6,"title":3},"1201":{"body":48,"breadcrumbs":5,"title":2},"1202":{"body":40,"breadcrumbs":5,"title":2},"1203":{"body":54,"breadcrumbs":4,"title":1},"1204":{"body":20,"breadcrumbs":4,"title":1},"1205":{"body":18,"breadcrumbs":4,"title":2},"1206":{"body":46,"breadcrumbs":6,"title":4},"1207":{"body":44,"breadcrumbs":4,"title":2},"1208":{"body":59,"breadcrumbs":4,"title":2},"1209":{"body":56,"breadcrumbs":5,"title":3},"121":{"body":59,"breadcrumbs":6,"title":3},"1210":{"body":49,"breadcrumbs":5,"title":3},"1211":{"body":18,"breadcrumbs":3,"title":1},"1212":{"body":14,"breadcrumbs":2,"title":1},"1213":{"body":0,"breadcrumbs":3,"title":2},"1214":{"body":23,"breadcrumbs":4,"title":3},"1215":{"body":169,"breadcrumbs":3,"title":2},"1216":{"body":0,"breadcrumbs":3,"title":2},"1217":{"body":63,"breadcrumbs":4,"title":3},"1218":{"body":64,"breadcrumbs":3,"title":2},"1219":{"body":33,"breadcrumbs":5,"title":4},"122":{"body":35,"breadcrumbs":6,"title":3},"1220":{"body":187,"breadcrumbs":7,"title":6},"1221":{"body":28,"breadcrumbs":4,"title":3},"1222":{"body":0,"breadcrumbs":3,"title":2},"1223":{"body":125,"breadcrumbs":4,"title":3},"1224":{"body":63,"breadcrumbs":4,"title":3},"1225":{"body":0,"breadcrumbs":2,"title":1},"1226":{"body":93,"breadcrumbs":4,"title":3},"1227":{"body":27,"breadcrumbs":4,"title":3},"1228":{"body":0,"breadcrumbs":3,"title":2},"1229":{"body":96,"breadcrumbs":3,"title":2},"123":{"body":22,"breadcrumbs":2,"title":1},"1230":{"body":13,"breadcrumbs":3,"title":2},"1231":{"body":10,"breadcrumbs":3,"title":2},"1232":{"body":0,"breadcrumbs":3,"title":2},"1233":{"body":55,"breadcrumbs":3,"title":2},"1234":{"body":7,"breadcrumbs":4,"title":3},"1235":{"body":22,"breadcrumbs":5,"title":4},"1236":{"body":140,"breadcrumbs":3,"title":2},"1237":{"body":15,"breadcrumbs":4,"title":3},"1238":{"body":39,"breadcrumbs":4,"title":3},"1239":{"body":12,"breadcrumbs":2,"title":1},"124":{"body":31,"breadcrumbs":4,"title":3},"1240":{"body":22,"breadcrumbs":5,"title":4},"1241":{"body":31,"breadcrumbs":5,"title":4},"1242":{"body":0,"breadcrumbs":3,"title":2},"1243":{"body":17,"breadcrumbs":4,"title":3},"1244":{"body":33,"breadcrumbs":5,"title":4},"1245":{"body":21,"breadcrumbs":5,"title":4},"1246":{"body":20,"breadcrumbs":5,"title":4},"1247":{"body":15,"breadcrumbs":2,"title":1},"1248":{"body":16,"breadcrumbs":4,"title":2},"1249":{"body":44,"breadcrumbs":5,"title":3},"125":{"body":0,"breadcrumbs":3,"title":2},"1250":{"body":38,"breadcrumbs":5,"title":3},"1251":{"body":35,"breadcrumbs":4,"title":2},"1252":{"body":42,"breadcrumbs":8,"title":6},"1253":{"body":0,"breadcrumbs":9,"title":7},"1254":{"body":54,"breadcrumbs":3,"title":1},"1255":{"body":52,"breadcrumbs":3,"title":1},"1256":{"body":16,"breadcrumbs":8,"title":6},"1257":{"body":24,"breadcrumbs":3,"title":1},"1258":{"body":47,"breadcrumbs":3,"title":1},"1259":{"body":6,"breadcrumbs":5,"title":3},"126":{"body":16,"breadcrumbs":2,"title":1},"1260":{"body":11,"breadcrumbs":4,"title":2},"1261":{"body":17,"breadcrumbs":4,"title":2},"1262":{"body":24,"breadcrumbs":5,"title":3},"1263":{"body":0,"breadcrumbs":4,"title":2},"1264":{"body":26,"breadcrumbs":6,"title":4},"1265":{"body":63,"breadcrumbs":6,"title":4},"1266":{"body":28,"breadcrumbs":6,"title":4},"1267":{"body":55,"breadcrumbs":4,"title":2},"1268":{"body":9,"breadcrumbs":3,"title":1},"1269":{"body":11,"breadcrumbs":3,"title":1},"127":{"body":19,"breadcrumbs":2,"title":1},"1270":{"body":25,"breadcrumbs":4,"title":2},"1271":{"body":27,"breadcrumbs":5,"title":3},"1272":{"body":9,"breadcrumbs":5,"title":3},"1273":{"body":52,"breadcrumbs":4,"title":2},"1274":{"body":9,"breadcrumbs":5,"title":3},"1275":{"body":33,"breadcrumbs":4,"title":2},"1276":{"body":47,"breadcrumbs":4,"title":2},"1277":{"body":72,"breadcrumbs":9,"title":7},"1278":{"body":36,"breadcrumbs":5,"title":3},"1279":{"body":166,"breadcrumbs":4,"title":2},"128":{"body":18,"breadcrumbs":2,"title":1},"1280":{"body":51,"breadcrumbs":4,"title":2},"1281":{"body":28,"breadcrumbs":8,"title":3},"1282":{"body":50,"breadcrumbs":9,"title":4},"1283":{"body":55,"breadcrumbs":7,"title":2},"1284":{"body":21,"breadcrumbs":7,"title":2},"1285":{"body":16,"breadcrumbs":10,"title":4},"1286":{"body":40,"breadcrumbs":9,"title":3},"1287":{"body":25,"breadcrumbs":8,"title":2},"1288":{"body":34,"breadcrumbs":9,"title":3},"1289":{"body":23,"breadcrumbs":8,"title":2},"129":{"body":19,"breadcrumbs":3,"title":2},"1290":{"body":50,"breadcrumbs":8,"title":2},"1291":{"body":20,"breadcrumbs":8,"title":2},"1292":{"body":8,"breadcrumbs":8,"title":3},"1293":{"body":28,"breadcrumbs":7,"title":2},"1294":{"body":45,"breadcrumbs":7,"title":2},"1295":{"body":11,"breadcrumbs":8,"title":3},"1296":{"body":31,"breadcrumbs":7,"title":2},"1297":{"body":43,"breadcrumbs":7,"title":2},"1298":{"body":27,"breadcrumbs":7,"title":2},"1299":{"body":44,"breadcrumbs":7,"title":2},"13":{"body":18,"breadcrumbs":2,"title":1},"130":{"body":45,"breadcrumbs":3,"title":2},"1300":{"body":27,"breadcrumbs":7,"title":2},"1301":{"body":8,"breadcrumbs":9,"title":4},"1302":{"body":90,"breadcrumbs":7,"title":2},"1303":{"body":63,"breadcrumbs":7,"title":2},"1304":{"body":0,"breadcrumbs":6,"title":1},"1305":{"body":7,"breadcrumbs":9,"title":4},"1306":{"body":21,"breadcrumbs":10,"title":5},"1307":{"body":16,"breadcrumbs":9,"title":4},"1308":{"body":0,"breadcrumbs":7,"title":2},"1309":{"body":14,"breadcrumbs":9,"title":4},"131":{"body":42,"breadcrumbs":3,"title":2},"1310":{"body":14,"breadcrumbs":8,"title":3},"1311":{"body":14,"breadcrumbs":8,"title":3},"1312":{"body":13,"breadcrumbs":8,"title":3},"1313":{"body":22,"breadcrumbs":6,"title":4},"1314":{"body":11,"breadcrumbs":3,"title":1},"1315":{"body":42,"breadcrumbs":6,"title":4},"1316":{"body":32,"breadcrumbs":6,"title":4},"1317":{"body":70,"breadcrumbs":6,"title":4},"1318":{"body":0,"breadcrumbs":6,"title":4},"1319":{"body":30,"breadcrumbs":7,"title":5},"132":{"body":44,"breadcrumbs":6,"title":5},"1320":{"body":29,"breadcrumbs":9,"title":7},"1321":{"body":90,"breadcrumbs":7,"title":5},"1322":{"body":35,"breadcrumbs":7,"title":5},"1323":{"body":17,"breadcrumbs":4,"title":2},"1324":{"body":24,"breadcrumbs":8,"title":4},"1325":{"body":83,"breadcrumbs":5,"title":1},"1326":{"body":55,"breadcrumbs":6,"title":2},"1327":{"body":43,"breadcrumbs":6,"title":2},"1328":{"body":215,"breadcrumbs":9,"title":5},"1329":{"body":72,"breadcrumbs":6,"title":2},"133":{"body":40,"breadcrumbs":3,"title":2},"1330":{"body":39,"breadcrumbs":7,"title":3},"1331":{"body":41,"breadcrumbs":6,"title":2},"1332":{"body":21,"breadcrumbs":8,"title":4},"1333":{"body":5,"breadcrumbs":6,"title":2},"1334":{"body":27,"breadcrumbs":6,"title":2},"1335":{"body":17,"breadcrumbs":6,"title":2},"1336":{"body":23,"breadcrumbs":6,"title":2},"1337":{"body":0,"breadcrumbs":5,"title":1},"1338":{"body":38,"breadcrumbs":8,"title":4},"1339":{"body":21,"breadcrumbs":7,"title":3},"134":{"body":22,"breadcrumbs":5,"title":3},"1340":{"body":12,"breadcrumbs":6,"title":2},"1341":{"body":0,"breadcrumbs":5,"title":1},"1342":{"body":32,"breadcrumbs":6,"title":2},"1343":{"body":42,"breadcrumbs":7,"title":3},"1344":{"body":0,"breadcrumbs":5,"title":1},"1345":{"body":28,"breadcrumbs":6,"title":2},"1346":{"body":19,"breadcrumbs":6,"title":2},"1347":{"body":29,"breadcrumbs":5,"title":1},"1348":{"body":0,"breadcrumbs":5,"title":1},"1349":{"body":50,"breadcrumbs":7,"title":3},"135":{"body":0,"breadcrumbs":4,"title":2},"1350":{"body":30,"breadcrumbs":6,"title":2},"1351":{"body":20,"breadcrumbs":7,"title":3},"1352":{"body":36,"breadcrumbs":8,"title":4},"1353":{"body":9,"breadcrumbs":8,"title":5},"1354":{"body":46,"breadcrumbs":5,"title":2},"1355":{"body":40,"breadcrumbs":5,"title":2},"1356":{"body":26,"breadcrumbs":5,"title":2},"1357":{"body":74,"breadcrumbs":4,"title":1},"1358":{"body":66,"breadcrumbs":4,"title":1},"1359":{"body":59,"breadcrumbs":3,"title":0},"136":{"body":62,"breadcrumbs":7,"title":5},"1360":{"body":22,"breadcrumbs":5,"title":2},"1361":{"body":29,"breadcrumbs":6,"title":3},"1362":{"body":11,"breadcrumbs":6,"title":3},"1363":{"body":22,"breadcrumbs":5,"title":2},"1364":{"body":26,"breadcrumbs":5,"title":2},"1365":{"body":31,"breadcrumbs":5,"title":2},"1366":{"body":78,"breadcrumbs":6,"title":3},"1367":{"body":106,"breadcrumbs":6,"title":3},"1368":{"body":50,"breadcrumbs":6,"title":3},"1369":{"body":41,"breadcrumbs":6,"title":3},"137":{"body":67,"breadcrumbs":8,"title":6},"1370":{"body":17,"breadcrumbs":6,"title":3},"1371":{"body":14,"breadcrumbs":5,"title":2},"1372":{"body":14,"breadcrumbs":6,"title":3},"1373":{"body":9,"breadcrumbs":6,"title":3},"1374":{"body":15,"breadcrumbs":5,"title":2},"1375":{"body":15,"breadcrumbs":5,"title":2},"1376":{"body":43,"breadcrumbs":5,"title":2},"1377":{"body":23,"breadcrumbs":5,"title":2},"1378":{"body":61,"breadcrumbs":6,"title":3},"1379":{"body":32,"breadcrumbs":5,"title":2},"138":{"body":51,"breadcrumbs":7,"title":5},"1380":{"body":70,"breadcrumbs":5,"title":2},"1381":{"body":40,"breadcrumbs":5,"title":2},"1382":{"body":35,"breadcrumbs":6,"title":3},"1383":{"body":0,"breadcrumbs":5,"title":2},"1384":{"body":73,"breadcrumbs":7,"title":4},"1385":{"body":63,"breadcrumbs":9,"title":6},"1386":{"body":50,"breadcrumbs":6,"title":3},"1387":{"body":97,"breadcrumbs":6,"title":3},"1388":{"body":82,"breadcrumbs":6,"title":3},"1389":{"body":52,"breadcrumbs":4,"title":2},"139":{"body":70,"breadcrumbs":4,"title":2},"1390":{"body":0,"breadcrumbs":4,"title":2},"1391":{"body":53,"breadcrumbs":6,"title":4},"1392":{"body":46,"breadcrumbs":4,"title":2},"1393":{"body":33,"breadcrumbs":5,"title":3},"1394":{"body":71,"breadcrumbs":7,"title":5},"1395":{"body":32,"breadcrumbs":3,"title":1},"1396":{"body":9,"breadcrumbs":3,"title":1},"1397":{"body":9,"breadcrumbs":4,"title":2},"1398":{"body":31,"breadcrumbs":4,"title":2},"1399":{"body":0,"breadcrumbs":4,"title":2},"14":{"body":45,"breadcrumbs":3,"title":2},"140":{"body":48,"breadcrumbs":5,"title":3},"1400":{"body":30,"breadcrumbs":5,"title":3},"1401":{"body":29,"breadcrumbs":4,"title":2},"1402":{"body":0,"breadcrumbs":4,"title":2},"1403":{"body":118,"breadcrumbs":4,"title":2},"1404":{"body":73,"breadcrumbs":4,"title":2},"1405":{"body":69,"breadcrumbs":4,"title":2},"1406":{"body":21,"breadcrumbs":5,"title":3},"1407":{"body":0,"breadcrumbs":4,"title":2},"1408":{"body":72,"breadcrumbs":4,"title":2},"1409":{"body":65,"breadcrumbs":4,"title":2},"141":{"body":56,"breadcrumbs":4,"title":2},"1410":{"body":159,"breadcrumbs":5,"title":3},"1411":{"body":0,"breadcrumbs":4,"title":2},"1412":{"body":54,"breadcrumbs":5,"title":3},"1413":{"body":93,"breadcrumbs":5,"title":3},"1414":{"body":47,"breadcrumbs":4,"title":2},"1415":{"body":0,"breadcrumbs":4,"title":2},"1416":{"body":45,"breadcrumbs":4,"title":2},"1417":{"body":0,"breadcrumbs":4,"title":2},"1418":{"body":43,"breadcrumbs":5,"title":3},"1419":{"body":59,"breadcrumbs":4,"title":2},"142":{"body":17,"breadcrumbs":4,"title":2},"1420":{"body":52,"breadcrumbs":5,"title":3},"1421":{"body":0,"breadcrumbs":4,"title":2},"1422":{"body":36,"breadcrumbs":5,"title":3},"1423":{"body":32,"breadcrumbs":4,"title":2},"1424":{"body":0,"breadcrumbs":4,"title":2},"1425":{"body":36,"breadcrumbs":5,"title":3},"1426":{"body":56,"breadcrumbs":4,"title":2},"1427":{"body":16,"breadcrumbs":3,"title":1},"1428":{"body":8,"breadcrumbs":4,"title":2},"1429":{"body":37,"breadcrumbs":3,"title":1},"143":{"body":43,"breadcrumbs":4,"title":2},"1430":{"body":0,"breadcrumbs":5,"title":3},"1431":{"body":58,"breadcrumbs":5,"title":3},"1432":{"body":49,"breadcrumbs":4,"title":2},"1433":{"body":68,"breadcrumbs":4,"title":2},"1434":{"body":0,"breadcrumbs":5,"title":3},"1435":{"body":173,"breadcrumbs":5,"title":3},"1436":{"body":85,"breadcrumbs":4,"title":2},"1437":{"body":0,"breadcrumbs":4,"title":2},"1438":{"body":152,"breadcrumbs":4,"title":2},"1439":{"body":106,"breadcrumbs":4,"title":2},"144":{"body":39,"breadcrumbs":3,"title":1},"1440":{"body":0,"breadcrumbs":3,"title":1},"1441":{"body":91,"breadcrumbs":6,"title":4},"1442":{"body":56,"breadcrumbs":4,"title":2},"1443":{"body":45,"breadcrumbs":5,"title":3},"1444":{"body":0,"breadcrumbs":4,"title":2},"1445":{"body":152,"breadcrumbs":6,"title":4},"1446":{"body":0,"breadcrumbs":4,"title":2},"1447":{"body":130,"breadcrumbs":6,"title":4},"1448":{"body":0,"breadcrumbs":3,"title":1},"1449":{"body":137,"breadcrumbs":5,"title":3},"145":{"body":13,"breadcrumbs":4,"title":2},"1450":{"body":18,"breadcrumbs":3,"title":1},"1451":{"body":9,"breadcrumbs":4,"title":2},"1452":{"body":15,"breadcrumbs":3,"title":1},"1453":{"body":0,"breadcrumbs":5,"title":3},"1454":{"body":56,"breadcrumbs":5,"title":3},"1455":{"body":48,"breadcrumbs":4,"title":2},"1456":{"body":63,"breadcrumbs":4,"title":2},"1457":{"body":0,"breadcrumbs":5,"title":3},"1458":{"body":208,"breadcrumbs":5,"title":3},"1459":{"body":69,"breadcrumbs":4,"title":2},"146":{"body":22,"breadcrumbs":4,"title":2},"1460":{"body":0,"breadcrumbs":4,"title":2},"1461":{"body":108,"breadcrumbs":5,"title":3},"1462":{"body":58,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":3,"title":1},"1464":{"body":88,"breadcrumbs":6,"title":4},"1465":{"body":53,"breadcrumbs":4,"title":2},"1466":{"body":42,"breadcrumbs":5,"title":3},"1467":{"body":0,"breadcrumbs":4,"title":2},"1468":{"body":143,"breadcrumbs":6,"title":4},"1469":{"body":0,"breadcrumbs":4,"title":2},"147":{"body":40,"breadcrumbs":4,"title":2},"1470":{"body":163,"breadcrumbs":5,"title":3},"1471":{"body":0,"breadcrumbs":3,"title":1},"1472":{"body":142,"breadcrumbs":4,"title":2},"1473":{"body":0,"breadcrumbs":4,"title":2},"1474":{"body":145,"breadcrumbs":6,"title":4},"1475":{"body":15,"breadcrumbs":3,"title":1},"1476":{"body":20,"breadcrumbs":4,"title":2},"1477":{"body":32,"breadcrumbs":3,"title":1},"1478":{"body":26,"breadcrumbs":4,"title":2},"1479":{"body":31,"breadcrumbs":3,"title":1},"148":{"body":27,"breadcrumbs":4,"title":2},"1480":{"body":14,"breadcrumbs":5,"title":3},"1481":{"body":18,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":6,"title":3},"1483":{"body":0,"breadcrumbs":5,"title":2},"1484":{"body":8,"breadcrumbs":5,"title":2},"1485":{"body":145,"breadcrumbs":5,"title":2},"1486":{"body":141,"breadcrumbs":5,"title":2},"1487":{"body":218,"breadcrumbs":5,"title":2},"1488":{"body":14,"breadcrumbs":5,"title":2},"1489":{"body":8,"breadcrumbs":5,"title":2},"149":{"body":6,"breadcrumbs":2,"title":1},"1490":{"body":0,"breadcrumbs":5,"title":2},"1491":{"body":15,"breadcrumbs":5,"title":2},"1492":{"body":0,"breadcrumbs":5,"title":2},"1493":{"body":20,"breadcrumbs":5,"title":2},"1494":{"body":0,"breadcrumbs":5,"title":2},"1495":{"body":20,"breadcrumbs":5,"title":2},"1496":{"body":8,"breadcrumbs":5,"title":2},"1497":{"body":157,"breadcrumbs":6,"title":3},"1498":{"body":112,"breadcrumbs":6,"title":3},"1499":{"body":105,"breadcrumbs":6,"title":3},"15":{"body":4,"breadcrumbs":2,"title":1},"150":{"body":0,"breadcrumbs":3,"title":2},"1500":{"body":86,"breadcrumbs":6,"title":3},"1501":{"body":61,"breadcrumbs":5,"title":2},"1502":{"body":0,"breadcrumbs":5,"title":2},"1503":{"body":49,"breadcrumbs":6,"title":3},"1504":{"body":42,"breadcrumbs":5,"title":2},"1505":{"body":21,"breadcrumbs":6,"title":3},"1506":{"body":24,"breadcrumbs":5,"title":2},"1507":{"body":22,"breadcrumbs":5,"title":2},"1508":{"body":18,"breadcrumbs":5,"title":2},"1509":{"body":0,"breadcrumbs":5,"title":2},"151":{"body":23,"breadcrumbs":4,"title":3},"1510":{"body":27,"breadcrumbs":5,"title":2},"1511":{"body":14,"breadcrumbs":5,"title":2},"1512":{"body":20,"breadcrumbs":4,"title":2},"1513":{"body":0,"breadcrumbs":3,"title":1},"1514":{"body":55,"breadcrumbs":5,"title":3},"1515":{"body":98,"breadcrumbs":5,"title":3},"1516":{"body":25,"breadcrumbs":4,"title":2},"1517":{"body":76,"breadcrumbs":5,"title":3},"1518":{"body":15,"breadcrumbs":4,"title":2},"1519":{"body":91,"breadcrumbs":4,"title":2},"152":{"body":23,"breadcrumbs":4,"title":3},"1520":{"body":91,"breadcrumbs":4,"title":2},"1521":{"body":117,"breadcrumbs":4,"title":2},"1522":{"body":35,"breadcrumbs":4,"title":2},"1523":{"body":0,"breadcrumbs":4,"title":2},"1524":{"body":15,"breadcrumbs":4,"title":2},"1525":{"body":41,"breadcrumbs":4,"title":2},"1526":{"body":21,"breadcrumbs":5,"title":3},"1527":{"body":8,"breadcrumbs":5,"title":3},"1528":{"body":22,"breadcrumbs":5,"title":3},"1529":{"body":56,"breadcrumbs":5,"title":3},"153":{"body":19,"breadcrumbs":5,"title":4},"1530":{"body":110,"breadcrumbs":5,"title":3},"1531":{"body":15,"breadcrumbs":4,"title":2},"1532":{"body":81,"breadcrumbs":5,"title":3},"1533":{"body":117,"breadcrumbs":5,"title":3},"1534":{"body":41,"breadcrumbs":4,"title":2},"1535":{"body":36,"breadcrumbs":4,"title":2},"1536":{"body":30,"breadcrumbs":4,"title":2},"1537":{"body":37,"breadcrumbs":4,"title":2},"1538":{"body":36,"breadcrumbs":6,"title":4},"1539":{"body":8,"breadcrumbs":4,"title":2},"154":{"body":0,"breadcrumbs":3,"title":2},"1540":{"body":40,"breadcrumbs":5,"title":3},"1541":{"body":0,"breadcrumbs":4,"title":2},"1542":{"body":25,"breadcrumbs":4,"title":2},"1543":{"body":28,"breadcrumbs":4,"title":2},"1544":{"body":22,"breadcrumbs":5,"title":3},"1545":{"body":0,"breadcrumbs":4,"title":2},"1546":{"body":23,"breadcrumbs":5,"title":3},"1547":{"body":27,"breadcrumbs":5,"title":3},"1548":{"body":21,"breadcrumbs":5,"title":3},"1549":{"body":27,"breadcrumbs":4,"title":2},"155":{"body":15,"breadcrumbs":3,"title":2},"1550":{"body":0,"breadcrumbs":4,"title":2},"1551":{"body":20,"breadcrumbs":4,"title":2},"1552":{"body":20,"breadcrumbs":4,"title":2},"1553":{"body":20,"breadcrumbs":5,"title":3},"1554":{"body":22,"breadcrumbs":5,"title":3},"1555":{"body":0,"breadcrumbs":5,"title":3},"1556":{"body":35,"breadcrumbs":5,"title":3},"1557":{"body":37,"breadcrumbs":5,"title":3},"1558":{"body":30,"breadcrumbs":4,"title":2},"1559":{"body":22,"breadcrumbs":5,"title":3},"156":{"body":41,"breadcrumbs":5,"title":4},"1560":{"body":0,"breadcrumbs":4,"title":2},"1561":{"body":24,"breadcrumbs":4,"title":2},"1562":{"body":27,"breadcrumbs":5,"title":3},"1563":{"body":23,"breadcrumbs":4,"title":2},"1564":{"body":21,"breadcrumbs":4,"title":2},"1565":{"body":0,"breadcrumbs":4,"title":2},"1566":{"body":24,"breadcrumbs":4,"title":2},"1567":{"body":18,"breadcrumbs":4,"title":2},"1568":{"body":16,"breadcrumbs":3,"title":1},"1569":{"body":17,"breadcrumbs":4,"title":2},"157":{"body":15,"breadcrumbs":4,"title":3},"1570":{"body":0,"breadcrumbs":4,"title":2},"1571":{"body":23,"breadcrumbs":5,"title":3},"1572":{"body":23,"breadcrumbs":5,"title":3},"1573":{"body":22,"breadcrumbs":4,"title":2},"1574":{"body":0,"breadcrumbs":4,"title":2},"1575":{"body":24,"breadcrumbs":5,"title":3},"1576":{"body":19,"breadcrumbs":5,"title":3},"1577":{"body":18,"breadcrumbs":5,"title":3},"1578":{"body":0,"breadcrumbs":4,"title":2},"1579":{"body":13,"breadcrumbs":5,"title":3},"158":{"body":0,"breadcrumbs":3,"title":2},"1580":{"body":6,"breadcrumbs":4,"title":2},"1581":{"body":8,"breadcrumbs":4,"title":2},"1582":{"body":13,"breadcrumbs":4,"title":2},"1583":{"body":13,"breadcrumbs":3,"title":1},"1584":{"body":7,"breadcrumbs":6,"title":3},"1585":{"body":22,"breadcrumbs":5,"title":2},"1586":{"body":41,"breadcrumbs":6,"title":3},"1587":{"body":40,"breadcrumbs":5,"title":2},"1588":{"body":60,"breadcrumbs":7,"title":4},"1589":{"body":52,"breadcrumbs":7,"title":4},"159":{"body":9,"breadcrumbs":4,"title":3},"1590":{"body":0,"breadcrumbs":5,"title":2},"1591":{"body":14,"breadcrumbs":6,"title":3},"1592":{"body":26,"breadcrumbs":6,"title":3},"1593":{"body":0,"breadcrumbs":4,"title":1},"1594":{"body":18,"breadcrumbs":8,"title":5},"1595":{"body":13,"breadcrumbs":5,"title":2},"1596":{"body":12,"breadcrumbs":5,"title":2},"1597":{"body":22,"breadcrumbs":6,"title":3},"1598":{"body":19,"breadcrumbs":7,"title":4},"1599":{"body":4,"breadcrumbs":6,"title":3},"16":{"body":19,"breadcrumbs":2,"title":1},"160":{"body":16,"breadcrumbs":4,"title":3},"1600":{"body":6,"breadcrumbs":4,"title":1},"1601":{"body":66,"breadcrumbs":4,"title":1},"1602":{"body":128,"breadcrumbs":4,"title":1},"1603":{"body":3,"breadcrumbs":6,"title":3},"1604":{"body":5,"breadcrumbs":4,"title":1},"1605":{"body":10,"breadcrumbs":4,"title":1},"1606":{"body":37,"breadcrumbs":4,"title":1},"1607":{"body":104,"breadcrumbs":4,"title":1},"1608":{"body":0,"breadcrumbs":6,"title":3},"1609":{"body":27,"breadcrumbs":7,"title":4},"161":{"body":9,"breadcrumbs":3,"title":2},"1610":{"body":31,"breadcrumbs":6,"title":3},"1611":{"body":14,"breadcrumbs":7,"title":4},"1612":{"body":20,"breadcrumbs":5,"title":2},"1613":{"body":28,"breadcrumbs":5,"title":2},"1614":{"body":13,"breadcrumbs":4,"title":1},"1615":{"body":9,"breadcrumbs":4,"title":2},"1616":{"body":22,"breadcrumbs":4,"title":2},"1617":{"body":0,"breadcrumbs":6,"title":4},"1618":{"body":61,"breadcrumbs":7,"title":5},"1619":{"body":46,"breadcrumbs":5,"title":3},"162":{"body":37,"breadcrumbs":3,"title":2},"1620":{"body":18,"breadcrumbs":6,"title":4},"1621":{"body":44,"breadcrumbs":6,"title":4},"1622":{"body":23,"breadcrumbs":6,"title":4},"1623":{"body":31,"breadcrumbs":4,"title":2},"1624":{"body":0,"breadcrumbs":5,"title":3},"1625":{"body":32,"breadcrumbs":4,"title":2},"1626":{"body":9,"breadcrumbs":5,"title":3},"1627":{"body":32,"breadcrumbs":5,"title":3},"1628":{"body":19,"breadcrumbs":6,"title":4},"1629":{"body":20,"breadcrumbs":5,"title":3},"163":{"body":12,"breadcrumbs":3,"title":2},"1630":{"body":61,"breadcrumbs":5,"title":3},"1631":{"body":52,"breadcrumbs":4,"title":2},"1632":{"body":25,"breadcrumbs":7,"title":5},"1633":{"body":0,"breadcrumbs":5,"title":3},"1634":{"body":23,"breadcrumbs":4,"title":2},"1635":{"body":34,"breadcrumbs":4,"title":2},"1636":{"body":0,"breadcrumbs":5,"title":3},"1637":{"body":51,"breadcrumbs":5,"title":3},"1638":{"body":22,"breadcrumbs":5,"title":3},"1639":{"body":0,"breadcrumbs":5,"title":3},"164":{"body":7,"breadcrumbs":2,"title":1},"1640":{"body":78,"breadcrumbs":5,"title":3},"1641":{"body":0,"breadcrumbs":5,"title":3},"1642":{"body":26,"breadcrumbs":4,"title":2},"1643":{"body":21,"breadcrumbs":6,"title":4},"1644":{"body":0,"breadcrumbs":5,"title":3},"1645":{"body":38,"breadcrumbs":5,"title":3},"1646":{"body":0,"breadcrumbs":4,"title":2},"1647":{"body":98,"breadcrumbs":5,"title":3},"1648":{"body":0,"breadcrumbs":5,"title":3},"1649":{"body":51,"breadcrumbs":7,"title":5},"165":{"body":10,"breadcrumbs":2,"title":1},"1650":{"body":0,"breadcrumbs":5,"title":3},"1651":{"body":49,"breadcrumbs":7,"title":5},"1652":{"body":0,"breadcrumbs":4,"title":2},"1653":{"body":46,"breadcrumbs":4,"title":2},"1654":{"body":36,"breadcrumbs":4,"title":2},"1655":{"body":35,"breadcrumbs":4,"title":2},"1656":{"body":12,"breadcrumbs":3,"title":1},"166":{"body":12,"breadcrumbs":4,"title":3},"167":{"body":0,"breadcrumbs":3,"title":2},"168":{"body":4,"breadcrumbs":3,"title":2},"169":{"body":7,"breadcrumbs":3,"title":2},"17":{"body":67,"breadcrumbs":4,"title":3},"170":{"body":10,"breadcrumbs":2,"title":1},"171":{"body":2,"breadcrumbs":3,"title":2},"172":{"body":16,"breadcrumbs":3,"title":2},"173":{"body":6,"breadcrumbs":3,"title":2},"174":{"body":49,"breadcrumbs":3,"title":2},"175":{"body":55,"breadcrumbs":3,"title":2},"176":{"body":29,"breadcrumbs":3,"title":2},"177":{"body":20,"breadcrumbs":3,"title":2},"178":{"body":20,"breadcrumbs":2,"title":1},"179":{"body":19,"breadcrumbs":3,"title":2},"18":{"body":0,"breadcrumbs":4,"title":3},"180":{"body":47,"breadcrumbs":3,"title":2},"181":{"body":0,"breadcrumbs":2,"title":1},"182":{"body":34,"breadcrumbs":3,"title":2},"183":{"body":30,"breadcrumbs":3,"title":2},"184":{"body":16,"breadcrumbs":3,"title":2},"185":{"body":30,"breadcrumbs":4,"title":2},"186":{"body":16,"breadcrumbs":4,"title":2},"187":{"body":39,"breadcrumbs":4,"title":2},"188":{"body":0,"breadcrumbs":3,"title":1},"189":{"body":18,"breadcrumbs":4,"title":2},"19":{"body":31,"breadcrumbs":4,"title":3},"190":{"body":16,"breadcrumbs":4,"title":2},"191":{"body":0,"breadcrumbs":4,"title":2},"192":{"body":11,"breadcrumbs":4,"title":2},"193":{"body":13,"breadcrumbs":4,"title":2},"194":{"body":0,"breadcrumbs":4,"title":2},"195":{"body":51,"breadcrumbs":4,"title":2},"196":{"body":69,"breadcrumbs":4,"title":2},"197":{"body":76,"breadcrumbs":4,"title":2},"198":{"body":27,"breadcrumbs":4,"title":2},"199":{"body":0,"breadcrumbs":4,"title":2},"2":{"body":56,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":4,"title":3},"200":{"body":62,"breadcrumbs":4,"title":2},"201":{"body":0,"breadcrumbs":4,"title":2},"202":{"body":118,"breadcrumbs":4,"title":2},"203":{"body":65,"breadcrumbs":4,"title":2},"204":{"body":62,"breadcrumbs":4,"title":2},"205":{"body":17,"breadcrumbs":5,"title":3},"206":{"body":59,"breadcrumbs":4,"title":2},"207":{"body":29,"breadcrumbs":4,"title":2},"208":{"body":0,"breadcrumbs":4,"title":2},"209":{"body":23,"breadcrumbs":5,"title":3},"21":{"body":22,"breadcrumbs":3,"title":2},"210":{"body":46,"breadcrumbs":5,"title":3},"211":{"body":18,"breadcrumbs":5,"title":3},"212":{"body":19,"breadcrumbs":4,"title":2},"213":{"body":15,"breadcrumbs":4,"title":2},"214":{"body":15,"breadcrumbs":4,"title":2},"215":{"body":20,"breadcrumbs":3,"title":1},"216":{"body":0,"breadcrumbs":5,"title":3},"217":{"body":16,"breadcrumbs":5,"title":3},"218":{"body":17,"breadcrumbs":4,"title":2},"219":{"body":50,"breadcrumbs":5,"title":3},"22":{"body":0,"breadcrumbs":3,"title":2},"220":{"body":28,"breadcrumbs":4,"title":2},"221":{"body":26,"breadcrumbs":5,"title":3},"222":{"body":35,"breadcrumbs":5,"title":3},"223":{"body":17,"breadcrumbs":4,"title":2},"224":{"body":25,"breadcrumbs":5,"title":3},"225":{"body":18,"breadcrumbs":4,"title":2},"226":{"body":0,"breadcrumbs":4,"title":2},"227":{"body":43,"breadcrumbs":4,"title":2},"228":{"body":15,"breadcrumbs":5,"title":3},"229":{"body":16,"breadcrumbs":4,"title":2},"23":{"body":16,"breadcrumbs":2,"title":1},"230":{"body":0,"breadcrumbs":4,"title":2},"231":{"body":3,"breadcrumbs":4,"title":2},"232":{"body":4,"breadcrumbs":6,"title":4},"233":{"body":17,"breadcrumbs":4,"title":2},"234":{"body":20,"breadcrumbs":4,"title":2},"235":{"body":105,"breadcrumbs":5,"title":3},"236":{"body":0,"breadcrumbs":4,"title":2},"237":{"body":26,"breadcrumbs":3,"title":1},"238":{"body":22,"breadcrumbs":4,"title":2},"239":{"body":18,"breadcrumbs":3,"title":1},"24":{"body":21,"breadcrumbs":2,"title":1},"240":{"body":14,"breadcrumbs":4,"title":2},"241":{"body":16,"breadcrumbs":4,"title":2},"242":{"body":22,"breadcrumbs":4,"title":2},"243":{"body":0,"breadcrumbs":4,"title":2},"244":{"body":32,"breadcrumbs":4,"title":2},"245":{"body":9,"breadcrumbs":3,"title":1},"246":{"body":12,"breadcrumbs":4,"title":2},"247":{"body":29,"breadcrumbs":4,"title":2},"248":{"body":72,"breadcrumbs":4,"title":2},"249":{"body":46,"breadcrumbs":5,"title":3},"25":{"body":14,"breadcrumbs":2,"title":1},"250":{"body":32,"breadcrumbs":4,"title":2},"251":{"body":0,"breadcrumbs":4,"title":2},"252":{"body":20,"breadcrumbs":4,"title":2},"253":{"body":33,"breadcrumbs":5,"title":3},"254":{"body":17,"breadcrumbs":4,"title":2},"255":{"body":0,"breadcrumbs":4,"title":2},"256":{"body":22,"breadcrumbs":4,"title":2},"257":{"body":7,"breadcrumbs":4,"title":2},"258":{"body":5,"breadcrumbs":4,"title":2},"259":{"body":6,"breadcrumbs":4,"title":2},"26":{"body":20,"breadcrumbs":2,"title":1},"260":{"body":34,"breadcrumbs":4,"title":2},"261":{"body":10,"breadcrumbs":4,"title":2},"262":{"body":17,"breadcrumbs":5,"title":3},"263":{"body":0,"breadcrumbs":4,"title":2},"264":{"body":19,"breadcrumbs":4,"title":2},"265":{"body":16,"breadcrumbs":4,"title":2},"266":{"body":17,"breadcrumbs":4,"title":2},"267":{"body":28,"breadcrumbs":4,"title":2},"268":{"body":0,"breadcrumbs":5,"title":3},"269":{"body":10,"breadcrumbs":6,"title":4},"27":{"body":64,"breadcrumbs":3,"title":2},"270":{"body":12,"breadcrumbs":6,"title":4},"271":{"body":0,"breadcrumbs":4,"title":2},"272":{"body":23,"breadcrumbs":4,"title":2},"273":{"body":19,"breadcrumbs":3,"title":1},"274":{"body":18,"breadcrumbs":3,"title":1},"275":{"body":0,"breadcrumbs":4,"title":2},"276":{"body":23,"breadcrumbs":5,"title":3},"277":{"body":35,"breadcrumbs":5,"title":3},"278":{"body":17,"breadcrumbs":5,"title":3},"279":{"body":13,"breadcrumbs":4,"title":2},"28":{"body":0,"breadcrumbs":4,"title":3},"280":{"body":17,"breadcrumbs":6,"title":3},"281":{"body":18,"breadcrumbs":4,"title":1},"282":{"body":34,"breadcrumbs":5,"title":2},"283":{"body":0,"breadcrumbs":5,"title":2},"284":{"body":15,"breadcrumbs":5,"title":2},"285":{"body":19,"breadcrumbs":4,"title":1},"286":{"body":0,"breadcrumbs":5,"title":2},"287":{"body":7,"breadcrumbs":6,"title":3},"288":{"body":10,"breadcrumbs":6,"title":3},"289":{"body":39,"breadcrumbs":5,"title":2},"29":{"body":17,"breadcrumbs":4,"title":3},"290":{"body":0,"breadcrumbs":6,"title":3},"291":{"body":16,"breadcrumbs":5,"title":2},"292":{"body":63,"breadcrumbs":5,"title":2},"293":{"body":31,"breadcrumbs":5,"title":2},"294":{"body":64,"breadcrumbs":7,"title":4},"295":{"body":25,"breadcrumbs":5,"title":2},"296":{"body":0,"breadcrumbs":6,"title":3},"297":{"body":22,"breadcrumbs":4,"title":1},"298":{"body":24,"breadcrumbs":7,"title":4},"299":{"body":27,"breadcrumbs":5,"title":2},"3":{"body":14,"breadcrumbs":4,"title":3},"30":{"body":17,"breadcrumbs":4,"title":3},"300":{"body":18,"breadcrumbs":5,"title":2},"301":{"body":11,"breadcrumbs":8,"title":5},"302":{"body":20,"breadcrumbs":4,"title":1},"303":{"body":20,"breadcrumbs":4,"title":1},"304":{"body":33,"breadcrumbs":6,"title":3},"305":{"body":54,"breadcrumbs":5,"title":2},"306":{"body":24,"breadcrumbs":5,"title":2},"307":{"body":22,"breadcrumbs":7,"title":4},"308":{"body":33,"breadcrumbs":4,"title":1},"309":{"body":48,"breadcrumbs":5,"title":2},"31":{"body":17,"breadcrumbs":4,"title":3},"310":{"body":0,"breadcrumbs":6,"title":3},"311":{"body":51,"breadcrumbs":6,"title":3},"312":{"body":48,"breadcrumbs":6,"title":3},"313":{"body":23,"breadcrumbs":6,"title":3},"314":{"body":51,"breadcrumbs":8,"title":5},"315":{"body":26,"breadcrumbs":6,"title":3},"316":{"body":18,"breadcrumbs":7,"title":4},"317":{"body":0,"breadcrumbs":6,"title":3},"318":{"body":25,"breadcrumbs":7,"title":4},"319":{"body":58,"breadcrumbs":6,"title":3},"32":{"body":80,"breadcrumbs":4,"title":3},"320":{"body":46,"breadcrumbs":6,"title":3},"321":{"body":23,"breadcrumbs":6,"title":3},"322":{"body":26,"breadcrumbs":5,"title":2},"323":{"body":20,"breadcrumbs":6,"title":3},"324":{"body":0,"breadcrumbs":5,"title":2},"325":{"body":22,"breadcrumbs":5,"title":2},"326":{"body":32,"breadcrumbs":5,"title":2},"327":{"body":21,"breadcrumbs":4,"title":1},"328":{"body":0,"breadcrumbs":4,"title":1},"329":{"body":20,"breadcrumbs":6,"title":3},"33":{"body":41,"breadcrumbs":3,"title":2},"330":{"body":20,"breadcrumbs":6,"title":3},"331":{"body":20,"breadcrumbs":5,"title":2},"332":{"body":51,"breadcrumbs":5,"title":2},"333":{"body":19,"breadcrumbs":5,"title":2},"334":{"body":15,"breadcrumbs":6,"title":3},"335":{"body":6,"breadcrumbs":6,"title":3},"336":{"body":54,"breadcrumbs":5,"title":2},"337":{"body":0,"breadcrumbs":5,"title":2},"338":{"body":36,"breadcrumbs":4,"title":1},"339":{"body":41,"breadcrumbs":4,"title":1},"34":{"body":19,"breadcrumbs":3,"title":2},"340":{"body":0,"breadcrumbs":5,"title":2},"341":{"body":41,"breadcrumbs":5,"title":2},"342":{"body":21,"breadcrumbs":5,"title":2},"343":{"body":19,"breadcrumbs":6,"title":3},"344":{"body":0,"breadcrumbs":5,"title":2},"345":{"body":35,"breadcrumbs":5,"title":2},"346":{"body":16,"breadcrumbs":6,"title":3},"347":{"body":20,"breadcrumbs":5,"title":2},"348":{"body":23,"breadcrumbs":5,"title":2},"349":{"body":37,"breadcrumbs":5,"title":2},"35":{"body":6,"breadcrumbs":4,"title":3},"350":{"body":18,"breadcrumbs":5,"title":2},"351":{"body":28,"breadcrumbs":5,"title":2},"352":{"body":0,"breadcrumbs":5,"title":2},"353":{"body":25,"breadcrumbs":5,"title":2},"354":{"body":35,"breadcrumbs":4,"title":1},"355":{"body":14,"breadcrumbs":6,"title":3},"356":{"body":0,"breadcrumbs":4,"title":1},"357":{"body":47,"breadcrumbs":5,"title":2},"358":{"body":13,"breadcrumbs":5,"title":2},"359":{"body":0,"breadcrumbs":4,"title":1},"36":{"body":129,"breadcrumbs":3,"title":2},"360":{"body":16,"breadcrumbs":6,"title":3},"361":{"body":47,"breadcrumbs":6,"title":3},"362":{"body":38,"breadcrumbs":5,"title":2},"363":{"body":21,"breadcrumbs":5,"title":2},"364":{"body":34,"breadcrumbs":5,"title":2},"365":{"body":70,"breadcrumbs":5,"title":2},"366":{"body":15,"breadcrumbs":5,"title":2},"367":{"body":45,"breadcrumbs":6,"title":3},"368":{"body":21,"breadcrumbs":4,"title":1},"369":{"body":39,"breadcrumbs":5,"title":2},"37":{"body":23,"breadcrumbs":4,"title":3},"370":{"body":0,"breadcrumbs":5,"title":2},"371":{"body":29,"breadcrumbs":5,"title":2},"372":{"body":43,"breadcrumbs":5,"title":2},"373":{"body":0,"breadcrumbs":4,"title":1},"374":{"body":9,"breadcrumbs":5,"title":2},"375":{"body":44,"breadcrumbs":5,"title":2},"376":{"body":22,"breadcrumbs":5,"title":2},"377":{"body":0,"breadcrumbs":4,"title":1},"378":{"body":13,"breadcrumbs":5,"title":2},"379":{"body":45,"breadcrumbs":5,"title":2},"38":{"body":43,"breadcrumbs":4,"title":3},"380":{"body":41,"breadcrumbs":5,"title":2},"381":{"body":17,"breadcrumbs":5,"title":2},"382":{"body":0,"breadcrumbs":5,"title":2},"383":{"body":43,"breadcrumbs":5,"title":2},"384":{"body":12,"breadcrumbs":5,"title":2},"385":{"body":23,"breadcrumbs":5,"title":2},"386":{"body":27,"breadcrumbs":6,"title":3},"387":{"body":52,"breadcrumbs":5,"title":2},"388":{"body":51,"breadcrumbs":6,"title":3},"389":{"body":19,"breadcrumbs":5,"title":2},"39":{"body":8,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":5,"title":2},"391":{"body":24,"breadcrumbs":4,"title":1},"392":{"body":62,"breadcrumbs":4,"title":1},"393":{"body":0,"breadcrumbs":4,"title":1},"394":{"body":16,"breadcrumbs":5,"title":2},"395":{"body":13,"breadcrumbs":5,"title":2},"396":{"body":15,"breadcrumbs":5,"title":2},"397":{"body":15,"breadcrumbs":5,"title":2},"398":{"body":19,"breadcrumbs":3,"title":2},"399":{"body":14,"breadcrumbs":2,"title":1},"4":{"body":0,"breadcrumbs":2,"title":1},"40":{"body":47,"breadcrumbs":8,"title":6},"400":{"body":0,"breadcrumbs":2,"title":1},"401":{"body":3,"breadcrumbs":3,"title":2},"402":{"body":3,"breadcrumbs":3,"title":2},"403":{"body":3,"breadcrumbs":3,"title":2},"404":{"body":40,"breadcrumbs":3,"title":2},"405":{"body":5,"breadcrumbs":3,"title":2},"406":{"body":13,"breadcrumbs":4,"title":3},"407":{"body":3,"breadcrumbs":7,"title":6},"408":{"body":5,"breadcrumbs":3,"title":2},"409":{"body":11,"breadcrumbs":4,"title":3},"41":{"body":37,"breadcrumbs":7,"title":5},"410":{"body":58,"breadcrumbs":3,"title":2},"411":{"body":0,"breadcrumbs":2,"title":1},"412":{"body":32,"breadcrumbs":3,"title":2},"413":{"body":24,"breadcrumbs":3,"title":2},"414":{"body":17,"breadcrumbs":3,"title":2},"415":{"body":3,"breadcrumbs":3,"title":2},"416":{"body":6,"breadcrumbs":4,"title":3},"417":{"body":14,"breadcrumbs":4,"title":3},"418":{"body":9,"breadcrumbs":3,"title":2},"419":{"body":2,"breadcrumbs":4,"title":3},"42":{"body":33,"breadcrumbs":7,"title":5},"420":{"body":0,"breadcrumbs":3,"title":2},"421":{"body":13,"breadcrumbs":4,"title":3},"422":{"body":12,"breadcrumbs":3,"title":2},"423":{"body":10,"breadcrumbs":5,"title":4},"424":{"body":14,"breadcrumbs":5,"title":4},"425":{"body":0,"breadcrumbs":3,"title":2},"426":{"body":15,"breadcrumbs":3,"title":2},"427":{"body":22,"breadcrumbs":3,"title":2},"428":{"body":40,"breadcrumbs":3,"title":2},"429":{"body":0,"breadcrumbs":3,"title":2},"43":{"body":33,"breadcrumbs":9,"title":7},"430":{"body":19,"breadcrumbs":3,"title":2},"431":{"body":20,"breadcrumbs":3,"title":2},"432":{"body":15,"breadcrumbs":3,"title":2},"433":{"body":12,"breadcrumbs":3,"title":2},"434":{"body":31,"breadcrumbs":3,"title":2},"435":{"body":17,"breadcrumbs":2,"title":1},"436":{"body":18,"breadcrumbs":4,"title":2},"437":{"body":42,"breadcrumbs":6,"title":4},"438":{"body":119,"breadcrumbs":4,"title":2},"439":{"body":29,"breadcrumbs":5,"title":3},"44":{"body":28,"breadcrumbs":8,"title":6},"440":{"body":157,"breadcrumbs":4,"title":2},"441":{"body":109,"breadcrumbs":3,"title":1},"442":{"body":39,"breadcrumbs":3,"title":1},"443":{"body":9,"breadcrumbs":3,"title":1},"444":{"body":15,"breadcrumbs":3,"title":1},"445":{"body":25,"breadcrumbs":3,"title":1},"446":{"body":51,"breadcrumbs":3,"title":1},"447":{"body":44,"breadcrumbs":4,"title":2},"448":{"body":28,"breadcrumbs":3,"title":1},"449":{"body":43,"breadcrumbs":4,"title":2},"45":{"body":35,"breadcrumbs":9,"title":7},"450":{"body":44,"breadcrumbs":3,"title":1},"451":{"body":49,"breadcrumbs":3,"title":1},"452":{"body":58,"breadcrumbs":6,"title":4},"453":{"body":24,"breadcrumbs":3,"title":1},"454":{"body":21,"breadcrumbs":4,"title":2},"455":{"body":13,"breadcrumbs":3,"title":1},"456":{"body":20,"breadcrumbs":3,"title":1},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":22,"breadcrumbs":3,"title":1},"459":{"body":23,"breadcrumbs":3,"title":1},"46":{"body":35,"breadcrumbs":10,"title":8},"460":{"body":27,"breadcrumbs":3,"title":1},"461":{"body":25,"breadcrumbs":3,"title":1},"462":{"body":105,"breadcrumbs":4,"title":2},"463":{"body":48,"breadcrumbs":4,"title":2},"464":{"body":47,"breadcrumbs":4,"title":2},"465":{"body":15,"breadcrumbs":3,"title":1},"466":{"body":13,"breadcrumbs":4,"title":2},"467":{"body":34,"breadcrumbs":6,"title":4},"468":{"body":0,"breadcrumbs":4,"title":2},"469":{"body":21,"breadcrumbs":5,"title":3},"47":{"body":16,"breadcrumbs":4,"title":2},"470":{"body":17,"breadcrumbs":4,"title":2},"471":{"body":0,"breadcrumbs":4,"title":2},"472":{"body":30,"breadcrumbs":5,"title":3},"473":{"body":14,"breadcrumbs":4,"title":2},"474":{"body":11,"breadcrumbs":4,"title":2},"475":{"body":14,"breadcrumbs":4,"title":2},"476":{"body":20,"breadcrumbs":3,"title":1},"477":{"body":0,"breadcrumbs":4,"title":2},"478":{"body":11,"breadcrumbs":5,"title":3},"479":{"body":13,"breadcrumbs":6,"title":4},"48":{"body":10,"breadcrumbs":3,"title":1},"480":{"body":0,"breadcrumbs":4,"title":2},"481":{"body":39,"breadcrumbs":5,"title":3},"482":{"body":13,"breadcrumbs":5,"title":3},"483":{"body":0,"breadcrumbs":4,"title":2},"484":{"body":11,"breadcrumbs":5,"title":3},"485":{"body":23,"breadcrumbs":5,"title":3},"486":{"body":0,"breadcrumbs":4,"title":2},"487":{"body":28,"breadcrumbs":4,"title":2},"488":{"body":13,"breadcrumbs":4,"title":2},"489":{"body":12,"breadcrumbs":5,"title":3},"49":{"body":50,"breadcrumbs":4,"title":2},"490":{"body":0,"breadcrumbs":4,"title":2},"491":{"body":11,"breadcrumbs":4,"title":2},"492":{"body":20,"breadcrumbs":4,"title":2},"493":{"body":14,"breadcrumbs":5,"title":3},"494":{"body":7,"breadcrumbs":4,"title":2},"495":{"body":17,"breadcrumbs":4,"title":2},"496":{"body":19,"breadcrumbs":4,"title":2},"497":{"body":0,"breadcrumbs":4,"title":2},"498":{"body":13,"breadcrumbs":4,"title":2},"499":{"body":42,"breadcrumbs":4,"title":2},"5":{"body":17,"breadcrumbs":2,"title":1},"50":{"body":24,"breadcrumbs":4,"title":2},"500":{"body":41,"breadcrumbs":4,"title":2},"501":{"body":91,"breadcrumbs":4,"title":2},"502":{"body":20,"breadcrumbs":4,"title":2},"503":{"body":27,"breadcrumbs":6,"title":3},"504":{"body":4,"breadcrumbs":4,"title":1},"505":{"body":10,"breadcrumbs":6,"title":3},"506":{"body":27,"breadcrumbs":5,"title":2},"507":{"body":20,"breadcrumbs":5,"title":2},"508":{"body":72,"breadcrumbs":9,"title":6},"509":{"body":21,"breadcrumbs":5,"title":2},"51":{"body":73,"breadcrumbs":6,"title":4},"510":{"body":45,"breadcrumbs":5,"title":2},"511":{"body":4,"breadcrumbs":6,"title":3},"512":{"body":21,"breadcrumbs":6,"title":3},"513":{"body":13,"breadcrumbs":3,"title":2},"514":{"body":0,"breadcrumbs":3,"title":2},"515":{"body":52,"breadcrumbs":5,"title":4},"516":{"body":41,"breadcrumbs":5,"title":4},"517":{"body":10,"breadcrumbs":2,"title":1},"518":{"body":18,"breadcrumbs":3,"title":2},"519":{"body":4,"breadcrumbs":3,"title":2},"52":{"body":10,"breadcrumbs":3,"title":1},"520":{"body":26,"breadcrumbs":4,"title":3},"521":{"body":29,"breadcrumbs":6,"title":3},"522":{"body":0,"breadcrumbs":6,"title":3},"523":{"body":6,"breadcrumbs":5,"title":2},"524":{"body":11,"breadcrumbs":7,"title":4},"525":{"body":28,"breadcrumbs":7,"title":4},"526":{"body":53,"breadcrumbs":5,"title":2},"527":{"body":11,"breadcrumbs":4,"title":1},"528":{"body":0,"breadcrumbs":6,"title":3},"529":{"body":15,"breadcrumbs":5,"title":2},"53":{"body":58,"breadcrumbs":4,"title":2},"530":{"body":23,"breadcrumbs":5,"title":2},"531":{"body":36,"breadcrumbs":4,"title":1},"532":{"body":37,"breadcrumbs":4,"title":1},"533":{"body":48,"breadcrumbs":6,"title":3},"534":{"body":51,"breadcrumbs":5,"title":2},"535":{"body":19,"breadcrumbs":5,"title":2},"536":{"body":16,"breadcrumbs":5,"title":2},"537":{"body":24,"breadcrumbs":4,"title":2},"538":{"body":0,"breadcrumbs":5,"title":3},"539":{"body":4,"breadcrumbs":4,"title":2},"54":{"body":75,"breadcrumbs":5,"title":3},"540":{"body":11,"breadcrumbs":6,"title":4},"541":{"body":26,"breadcrumbs":6,"title":4},"542":{"body":37,"breadcrumbs":4,"title":2},"543":{"body":74,"breadcrumbs":3,"title":1},"544":{"body":40,"breadcrumbs":3,"title":1},"545":{"body":53,"breadcrumbs":5,"title":3},"546":{"body":54,"breadcrumbs":7,"title":5},"547":{"body":23,"breadcrumbs":5,"title":3},"548":{"body":21,"breadcrumbs":5,"title":3},"549":{"body":33,"breadcrumbs":5,"title":3},"55":{"body":51,"breadcrumbs":4,"title":2},"550":{"body":46,"breadcrumbs":4,"title":2},"551":{"body":45,"breadcrumbs":4,"title":2},"552":{"body":23,"breadcrumbs":4,"title":2},"553":{"body":20,"breadcrumbs":4,"title":2},"554":{"body":41,"breadcrumbs":4,"title":2},"555":{"body":60,"breadcrumbs":3,"title":1},"556":{"body":33,"breadcrumbs":3,"title":1},"557":{"body":54,"breadcrumbs":7,"title":5},"558":{"body":16,"breadcrumbs":5,"title":3},"559":{"body":15,"breadcrumbs":4,"title":2},"56":{"body":8,"breadcrumbs":3,"title":1},"560":{"body":22,"breadcrumbs":4,"title":2},"561":{"body":16,"breadcrumbs":4,"title":2},"562":{"body":18,"breadcrumbs":4,"title":2},"563":{"body":41,"breadcrumbs":3,"title":1},"564":{"body":0,"breadcrumbs":4,"title":2},"565":{"body":24,"breadcrumbs":4,"title":2},"566":{"body":0,"breadcrumbs":4,"title":2},"567":{"body":105,"breadcrumbs":5,"title":3},"568":{"body":56,"breadcrumbs":4,"title":2},"569":{"body":0,"breadcrumbs":4,"title":2},"57":{"body":40,"breadcrumbs":4,"title":2},"570":{"body":96,"breadcrumbs":5,"title":3},"571":{"body":7,"breadcrumbs":4,"title":2},"572":{"body":66,"breadcrumbs":5,"title":3},"573":{"body":0,"breadcrumbs":4,"title":2},"574":{"body":86,"breadcrumbs":5,"title":3},"575":{"body":0,"breadcrumbs":4,"title":2},"576":{"body":18,"breadcrumbs":3,"title":1},"577":{"body":16,"breadcrumbs":3,"title":1},"578":{"body":18,"breadcrumbs":3,"title":1},"579":{"body":40,"breadcrumbs":3,"title":1},"58":{"body":32,"breadcrumbs":4,"title":2},"580":{"body":36,"breadcrumbs":3,"title":1},"581":{"body":0,"breadcrumbs":4,"title":2},"582":{"body":81,"breadcrumbs":4,"title":2},"583":{"body":67,"breadcrumbs":4,"title":2},"584":{"body":0,"breadcrumbs":4,"title":2},"585":{"body":11,"breadcrumbs":4,"title":2},"586":{"body":21,"breadcrumbs":4,"title":2},"587":{"body":16,"breadcrumbs":4,"title":2},"588":{"body":27,"breadcrumbs":4,"title":2},"589":{"body":17,"breadcrumbs":4,"title":2},"59":{"body":37,"breadcrumbs":4,"title":2},"590":{"body":6,"breadcrumbs":4,"title":2},"591":{"body":3,"breadcrumbs":3,"title":1},"592":{"body":34,"breadcrumbs":6,"title":4},"593":{"body":5,"breadcrumbs":4,"title":2},"594":{"body":17,"breadcrumbs":4,"title":2},"595":{"body":19,"breadcrumbs":3,"title":1},"596":{"body":38,"breadcrumbs":4,"title":2},"597":{"body":83,"breadcrumbs":4,"title":2},"598":{"body":29,"breadcrumbs":4,"title":2},"599":{"body":27,"breadcrumbs":4,"title":2},"6":{"body":17,"breadcrumbs":3,"title":2},"60":{"body":8,"breadcrumbs":3,"title":1},"600":{"body":54,"breadcrumbs":4,"title":2},"601":{"body":42,"breadcrumbs":4,"title":2},"602":{"body":23,"breadcrumbs":4,"title":2},"603":{"body":26,"breadcrumbs":4,"title":2},"604":{"body":52,"breadcrumbs":4,"title":2},"605":{"body":31,"breadcrumbs":4,"title":2},"606":{"body":20,"breadcrumbs":4,"title":2},"607":{"body":32,"breadcrumbs":4,"title":2},"608":{"body":26,"breadcrumbs":5,"title":3},"609":{"body":19,"breadcrumbs":5,"title":3},"61":{"body":67,"breadcrumbs":4,"title":2},"610":{"body":21,"breadcrumbs":5,"title":3},"611":{"body":21,"breadcrumbs":4,"title":2},"612":{"body":18,"breadcrumbs":4,"title":2},"613":{"body":26,"breadcrumbs":4,"title":2},"614":{"body":0,"breadcrumbs":4,"title":2},"615":{"body":22,"breadcrumbs":3,"title":1},"616":{"body":39,"breadcrumbs":3,"title":1},"617":{"body":4,"breadcrumbs":4,"title":2},"618":{"body":16,"breadcrumbs":3,"title":1},"619":{"body":16,"breadcrumbs":3,"title":1},"62":{"body":33,"breadcrumbs":4,"title":2},"620":{"body":5,"breadcrumbs":4,"title":2},"621":{"body":23,"breadcrumbs":5,"title":3},"622":{"body":8,"breadcrumbs":5,"title":3},"623":{"body":22,"breadcrumbs":4,"title":2},"624":{"body":129,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":4,"title":2},"626":{"body":21,"breadcrumbs":3,"title":1},"627":{"body":21,"breadcrumbs":3,"title":2},"628":{"body":16,"breadcrumbs":2,"title":1},"629":{"body":0,"breadcrumbs":2,"title":1},"63":{"body":26,"breadcrumbs":4,"title":2},"630":{"body":27,"breadcrumbs":3,"title":2},"631":{"body":6,"breadcrumbs":3,"title":2},"632":{"body":3,"breadcrumbs":3,"title":2},"633":{"body":24,"breadcrumbs":3,"title":2},"634":{"body":49,"breadcrumbs":3,"title":2},"635":{"body":8,"breadcrumbs":3,"title":2},"636":{"body":19,"breadcrumbs":3,"title":2},"637":{"body":20,"breadcrumbs":3,"title":2},"638":{"body":0,"breadcrumbs":2,"title":1},"639":{"body":18,"breadcrumbs":3,"title":2},"64":{"body":7,"breadcrumbs":4,"title":2},"640":{"body":9,"breadcrumbs":4,"title":3},"641":{"body":14,"breadcrumbs":3,"title":2},"642":{"body":17,"breadcrumbs":3,"title":2},"643":{"body":3,"breadcrumbs":3,"title":2},"644":{"body":6,"breadcrumbs":4,"title":3},"645":{"body":14,"breadcrumbs":4,"title":3},"646":{"body":9,"breadcrumbs":3,"title":2},"647":{"body":2,"breadcrumbs":4,"title":3},"648":{"body":0,"breadcrumbs":3,"title":2},"649":{"body":13,"breadcrumbs":4,"title":3},"65":{"body":28,"breadcrumbs":4,"title":2},"650":{"body":12,"breadcrumbs":3,"title":2},"651":{"body":10,"breadcrumbs":5,"title":4},"652":{"body":14,"breadcrumbs":5,"title":4},"653":{"body":0,"breadcrumbs":3,"title":2},"654":{"body":17,"breadcrumbs":3,"title":2},"655":{"body":10,"breadcrumbs":3,"title":2},"656":{"body":42,"breadcrumbs":3,"title":2},"657":{"body":0,"breadcrumbs":4,"title":3},"658":{"body":22,"breadcrumbs":3,"title":2},"659":{"body":20,"breadcrumbs":3,"title":2},"66":{"body":27,"breadcrumbs":4,"title":2},"660":{"body":19,"breadcrumbs":3,"title":2},"661":{"body":42,"breadcrumbs":4,"title":3},"662":{"body":0,"breadcrumbs":3,"title":2},"663":{"body":25,"breadcrumbs":3,"title":2},"664":{"body":20,"breadcrumbs":3,"title":2},"665":{"body":18,"breadcrumbs":3,"title":2},"666":{"body":20,"breadcrumbs":3,"title":2},"667":{"body":28,"breadcrumbs":5,"title":4},"668":{"body":62,"breadcrumbs":3,"title":2},"669":{"body":27,"breadcrumbs":3,"title":2},"67":{"body":30,"breadcrumbs":4,"title":2},"670":{"body":20,"breadcrumbs":2,"title":1},"671":{"body":18,"breadcrumbs":4,"title":2},"672":{"body":104,"breadcrumbs":4,"title":2},"673":{"body":29,"breadcrumbs":5,"title":3},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":108,"breadcrumbs":7,"title":5},"676":{"body":50,"breadcrumbs":4,"title":2},"677":{"body":8,"breadcrumbs":3,"title":1},"678":{"body":14,"breadcrumbs":3,"title":1},"679":{"body":20,"breadcrumbs":3,"title":1},"68":{"body":7,"breadcrumbs":5,"title":3},"680":{"body":40,"breadcrumbs":3,"title":1},"681":{"body":43,"breadcrumbs":4,"title":2},"682":{"body":29,"breadcrumbs":3,"title":1},"683":{"body":25,"breadcrumbs":6,"title":4},"684":{"body":26,"breadcrumbs":3,"title":1},"685":{"body":20,"breadcrumbs":4,"title":2},"686":{"body":31,"breadcrumbs":4,"title":2},"687":{"body":85,"breadcrumbs":3,"title":1},"688":{"body":82,"breadcrumbs":6,"title":4},"689":{"body":25,"breadcrumbs":3,"title":1},"69":{"body":22,"breadcrumbs":4,"title":2},"690":{"body":17,"breadcrumbs":4,"title":2},"691":{"body":18,"breadcrumbs":3,"title":1},"692":{"body":27,"breadcrumbs":3,"title":1},"693":{"body":5,"breadcrumbs":4,"title":2},"694":{"body":19,"breadcrumbs":3,"title":1},"695":{"body":24,"breadcrumbs":3,"title":1},"696":{"body":24,"breadcrumbs":3,"title":1},"697":{"body":31,"breadcrumbs":3,"title":1},"698":{"body":15,"breadcrumbs":3,"title":1},"699":{"body":105,"breadcrumbs":4,"title":2},"7":{"body":17,"breadcrumbs":3,"title":2},"70":{"body":20,"breadcrumbs":5,"title":3},"700":{"body":58,"breadcrumbs":4,"title":2},"701":{"body":48,"breadcrumbs":4,"title":2},"702":{"body":15,"breadcrumbs":3,"title":1},"703":{"body":23,"breadcrumbs":4,"title":2},"704":{"body":0,"breadcrumbs":4,"title":2},"705":{"body":12,"breadcrumbs":5,"title":3},"706":{"body":17,"breadcrumbs":4,"title":2},"707":{"body":0,"breadcrumbs":4,"title":2},"708":{"body":25,"breadcrumbs":5,"title":3},"709":{"body":12,"breadcrumbs":4,"title":2},"71":{"body":6,"breadcrumbs":4,"title":2},"710":{"body":9,"breadcrumbs":4,"title":2},"711":{"body":12,"breadcrumbs":4,"title":2},"712":{"body":18,"breadcrumbs":3,"title":1},"713":{"body":0,"breadcrumbs":4,"title":2},"714":{"body":9,"breadcrumbs":5,"title":3},"715":{"body":11,"breadcrumbs":6,"title":4},"716":{"body":0,"breadcrumbs":4,"title":2},"717":{"body":38,"breadcrumbs":5,"title":3},"718":{"body":11,"breadcrumbs":5,"title":3},"719":{"body":0,"breadcrumbs":4,"title":2},"72":{"body":23,"breadcrumbs":4,"title":2},"720":{"body":9,"breadcrumbs":5,"title":3},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":0,"breadcrumbs":4,"title":2},"723":{"body":26,"breadcrumbs":4,"title":2},"724":{"body":11,"breadcrumbs":4,"title":2},"725":{"body":10,"breadcrumbs":5,"title":3},"726":{"body":0,"breadcrumbs":4,"title":2},"727":{"body":16,"breadcrumbs":4,"title":2},"728":{"body":18,"breadcrumbs":4,"title":2},"729":{"body":12,"breadcrumbs":5,"title":3},"73":{"body":19,"breadcrumbs":4,"title":2},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":15,"breadcrumbs":4,"title":2},"732":{"body":17,"breadcrumbs":4,"title":2},"733":{"body":0,"breadcrumbs":4,"title":2},"734":{"body":11,"breadcrumbs":4,"title":2},"735":{"body":16,"breadcrumbs":4,"title":2},"736":{"body":35,"breadcrumbs":4,"title":2},"737":{"body":78,"breadcrumbs":4,"title":2},"738":{"body":0,"breadcrumbs":5,"title":3},"739":{"body":29,"breadcrumbs":5,"title":3},"74":{"body":19,"breadcrumbs":4,"title":2},"740":{"body":21,"breadcrumbs":5,"title":3},"741":{"body":0,"breadcrumbs":4,"title":2},"742":{"body":5,"breadcrumbs":4,"title":2},"743":{"body":17,"breadcrumbs":4,"title":2},"744":{"body":26,"breadcrumbs":4,"title":2},"745":{"body":17,"breadcrumbs":4,"title":2},"746":{"body":37,"breadcrumbs":6,"title":3},"747":{"body":21,"breadcrumbs":4,"title":1},"748":{"body":17,"breadcrumbs":5,"title":2},"749":{"body":31,"breadcrumbs":7,"title":4},"75":{"body":28,"breadcrumbs":4,"title":2},"750":{"body":22,"breadcrumbs":7,"title":4},"751":{"body":53,"breadcrumbs":8,"title":5},"752":{"body":16,"breadcrumbs":6,"title":3},"753":{"body":4,"breadcrumbs":6,"title":3},"754":{"body":26,"breadcrumbs":6,"title":3},"755":{"body":15,"breadcrumbs":4,"title":2},"756":{"body":78,"breadcrumbs":4,"title":2},"757":{"body":7,"breadcrumbs":4,"title":2},"758":{"body":20,"breadcrumbs":4,"title":2},"759":{"body":7,"breadcrumbs":4,"title":2},"76":{"body":7,"breadcrumbs":5,"title":3},"760":{"body":11,"breadcrumbs":8,"title":6},"761":{"body":73,"breadcrumbs":4,"title":2},"762":{"body":23,"breadcrumbs":3,"title":1},"763":{"body":23,"breadcrumbs":5,"title":3},"764":{"body":25,"breadcrumbs":5,"title":3},"765":{"body":26,"breadcrumbs":4,"title":2},"766":{"body":3,"breadcrumbs":3,"title":1},"767":{"body":5,"breadcrumbs":4,"title":2},"768":{"body":17,"breadcrumbs":4,"title":2},"769":{"body":14,"breadcrumbs":3,"title":1},"77":{"body":56,"breadcrumbs":6,"title":4},"770":{"body":25,"breadcrumbs":3,"title":1},"771":{"body":89,"breadcrumbs":8,"title":6},"772":{"body":27,"breadcrumbs":3,"title":1},"773":{"body":41,"breadcrumbs":4,"title":2},"774":{"body":60,"breadcrumbs":6,"title":4},"775":{"body":66,"breadcrumbs":7,"title":5},"776":{"body":30,"breadcrumbs":4,"title":2},"777":{"body":39,"breadcrumbs":4,"title":2},"778":{"body":46,"breadcrumbs":5,"title":3},"779":{"body":28,"breadcrumbs":5,"title":3},"78":{"body":223,"breadcrumbs":4,"title":2},"780":{"body":23,"breadcrumbs":3,"title":1},"781":{"body":41,"breadcrumbs":6,"title":4},"782":{"body":30,"breadcrumbs":3,"title":1},"783":{"body":26,"breadcrumbs":3,"title":1},"784":{"body":28,"breadcrumbs":3,"title":1},"785":{"body":34,"breadcrumbs":3,"title":1},"786":{"body":27,"breadcrumbs":3,"title":1},"787":{"body":33,"breadcrumbs":5,"title":3},"788":{"body":14,"breadcrumbs":5,"title":3},"789":{"body":8,"breadcrumbs":3,"title":1},"79":{"body":7,"breadcrumbs":7,"title":5},"790":{"body":9,"breadcrumbs":3,"title":1},"791":{"body":8,"breadcrumbs":3,"title":1},"792":{"body":8,"breadcrumbs":3,"title":1},"793":{"body":10,"breadcrumbs":3,"title":1},"794":{"body":64,"breadcrumbs":4,"title":2},"795":{"body":0,"breadcrumbs":3,"title":1},"796":{"body":21,"breadcrumbs":5,"title":3},"797":{"body":48,"breadcrumbs":4,"title":2},"798":{"body":33,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":4,"title":2},"8":{"body":9,"breadcrumbs":3,"title":2},"80":{"body":16,"breadcrumbs":6,"title":4},"800":{"body":43,"breadcrumbs":4,"title":2},"801":{"body":42,"breadcrumbs":4,"title":2},"802":{"body":17,"breadcrumbs":3,"title":1},"803":{"body":38,"breadcrumbs":8,"title":5},"804":{"body":2,"breadcrumbs":4,"title":1},"805":{"body":58,"breadcrumbs":6,"title":3},"806":{"body":15,"breadcrumbs":6,"title":3},"807":{"body":29,"breadcrumbs":5,"title":2},"808":{"body":31,"breadcrumbs":7,"title":4},"809":{"body":18,"breadcrumbs":6,"title":3},"81":{"body":22,"breadcrumbs":6,"title":4},"810":{"body":40,"breadcrumbs":6,"title":3},"811":{"body":22,"breadcrumbs":4,"title":2},"812":{"body":27,"breadcrumbs":4,"title":2},"813":{"body":0,"breadcrumbs":4,"title":2},"814":{"body":7,"breadcrumbs":4,"title":2},"815":{"body":55,"breadcrumbs":4,"title":2},"816":{"body":36,"breadcrumbs":4,"title":2},"817":{"body":15,"breadcrumbs":4,"title":2},"818":{"body":0,"breadcrumbs":4,"title":2},"819":{"body":21,"breadcrumbs":3,"title":1},"82":{"body":4,"breadcrumbs":3,"title":1},"820":{"body":11,"breadcrumbs":4,"title":2},"821":{"body":46,"breadcrumbs":5,"title":3},"822":{"body":36,"breadcrumbs":4,"title":2},"823":{"body":28,"breadcrumbs":3,"title":1},"824":{"body":35,"breadcrumbs":4,"title":2},"825":{"body":71,"breadcrumbs":5,"title":3},"826":{"body":0,"breadcrumbs":4,"title":2},"827":{"body":43,"breadcrumbs":4,"title":2},"828":{"body":21,"breadcrumbs":4,"title":2},"829":{"body":27,"breadcrumbs":4,"title":2},"83":{"body":30,"breadcrumbs":3,"title":1},"830":{"body":49,"breadcrumbs":4,"title":2},"831":{"body":16,"breadcrumbs":3,"title":1},"832":{"body":17,"breadcrumbs":4,"title":2},"833":{"body":1,"breadcrumbs":4,"title":2},"834":{"body":27,"breadcrumbs":3,"title":1},"835":{"body":30,"breadcrumbs":4,"title":2},"836":{"body":35,"breadcrumbs":4,"title":2},"837":{"body":15,"breadcrumbs":4,"title":2},"838":{"body":0,"breadcrumbs":4,"title":2},"839":{"body":61,"breadcrumbs":5,"title":3},"84":{"body":6,"breadcrumbs":4,"title":2},"840":{"body":27,"breadcrumbs":5,"title":3},"841":{"body":45,"breadcrumbs":3,"title":1},"842":{"body":70,"breadcrumbs":5,"title":3},"843":{"body":62,"breadcrumbs":4,"title":2},"844":{"body":28,"breadcrumbs":3,"title":1},"845":{"body":52,"breadcrumbs":5,"title":3},"846":{"body":24,"breadcrumbs":4,"title":2},"847":{"body":0,"breadcrumbs":4,"title":2},"848":{"body":93,"breadcrumbs":4,"title":2},"849":{"body":62,"breadcrumbs":4,"title":2},"85":{"body":3,"breadcrumbs":3,"title":1},"850":{"body":81,"breadcrumbs":4,"title":2},"851":{"body":0,"breadcrumbs":4,"title":2},"852":{"body":26,"breadcrumbs":3,"title":1},"853":{"body":19,"breadcrumbs":3,"title":1},"854":{"body":12,"breadcrumbs":3,"title":1},"855":{"body":26,"breadcrumbs":4,"title":2},"856":{"body":21,"breadcrumbs":3,"title":1},"857":{"body":18,"breadcrumbs":4,"title":2},"858":{"body":1,"breadcrumbs":4,"title":2},"859":{"body":39,"breadcrumbs":3,"title":1},"86":{"body":23,"breadcrumbs":4,"title":2},"860":{"body":0,"breadcrumbs":4,"title":2},"861":{"body":35,"breadcrumbs":3,"title":1},"862":{"body":73,"breadcrumbs":3,"title":1},"863":{"body":24,"breadcrumbs":4,"title":2},"864":{"body":0,"breadcrumbs":4,"title":2},"865":{"body":111,"breadcrumbs":3,"title":1},"866":{"body":31,"breadcrumbs":3,"title":1},"867":{"body":12,"breadcrumbs":3,"title":1},"868":{"body":43,"breadcrumbs":3,"title":1},"869":{"body":21,"breadcrumbs":5,"title":3},"87":{"body":3,"breadcrumbs":3,"title":1},"870":{"body":32,"breadcrumbs":4,"title":2},"871":{"body":34,"breadcrumbs":5,"title":3},"872":{"body":17,"breadcrumbs":4,"title":2},"873":{"body":15,"breadcrumbs":5,"title":3},"874":{"body":81,"breadcrumbs":4,"title":2},"875":{"body":35,"breadcrumbs":5,"title":3},"876":{"body":0,"breadcrumbs":4,"title":2},"877":{"body":35,"breadcrumbs":4,"title":2},"878":{"body":5,"breadcrumbs":4,"title":2},"879":{"body":25,"breadcrumbs":4,"title":2},"88":{"body":16,"breadcrumbs":4,"title":2},"880":{"body":22,"breadcrumbs":4,"title":2},"881":{"body":26,"breadcrumbs":4,"title":2},"882":{"body":19,"breadcrumbs":3,"title":1},"883":{"body":17,"breadcrumbs":4,"title":2},"884":{"body":1,"breadcrumbs":4,"title":2},"885":{"body":30,"breadcrumbs":3,"title":1},"886":{"body":25,"breadcrumbs":4,"title":2},"887":{"body":37,"breadcrumbs":4,"title":2},"888":{"body":11,"breadcrumbs":4,"title":2},"889":{"body":0,"breadcrumbs":4,"title":2},"89":{"body":102,"breadcrumbs":6,"title":4},"890":{"body":9,"breadcrumbs":5,"title":3},"891":{"body":59,"breadcrumbs":5,"title":3},"892":{"body":19,"breadcrumbs":4,"title":2},"893":{"body":28,"breadcrumbs":3,"title":1},"894":{"body":30,"breadcrumbs":5,"title":3},"895":{"body":15,"breadcrumbs":4,"title":2},"896":{"body":5,"breadcrumbs":3,"title":1},"897":{"body":21,"breadcrumbs":4,"title":2},"898":{"body":20,"breadcrumbs":4,"title":2},"899":{"body":211,"breadcrumbs":4,"title":2},"9":{"body":0,"breadcrumbs":3,"title":2},"90":{"body":7,"breadcrumbs":4,"title":2},"900":{"body":0,"breadcrumbs":4,"title":2},"901":{"body":9,"breadcrumbs":4,"title":2},"902":{"body":7,"breadcrumbs":5,"title":3},"903":{"body":10,"breadcrumbs":4,"title":2},"904":{"body":0,"breadcrumbs":4,"title":2},"905":{"body":28,"breadcrumbs":5,"title":3},"906":{"body":9,"breadcrumbs":5,"title":3},"907":{"body":8,"breadcrumbs":6,"title":4},"908":{"body":8,"breadcrumbs":5,"title":3},"909":{"body":7,"breadcrumbs":5,"title":3},"91":{"body":19,"breadcrumbs":5,"title":3},"910":{"body":23,"breadcrumbs":5,"title":3},"911":{"body":17,"breadcrumbs":3,"title":1},"912":{"body":28,"breadcrumbs":6,"title":3},"913":{"body":1,"breadcrumbs":5,"title":2},"914":{"body":62,"breadcrumbs":4,"title":1},"915":{"body":35,"breadcrumbs":5,"title":2},"916":{"body":50,"breadcrumbs":5,"title":2},"917":{"body":0,"breadcrumbs":4,"title":1},"918":{"body":21,"breadcrumbs":5,"title":2},"919":{"body":53,"breadcrumbs":5,"title":2},"92":{"body":10,"breadcrumbs":5,"title":3},"920":{"body":25,"breadcrumbs":5,"title":2},"921":{"body":41,"breadcrumbs":5,"title":2},"922":{"body":0,"breadcrumbs":4,"title":1},"923":{"body":11,"breadcrumbs":6,"title":3},"924":{"body":39,"breadcrumbs":6,"title":3},"925":{"body":19,"breadcrumbs":5,"title":2},"926":{"body":27,"breadcrumbs":7,"title":4},"927":{"body":0,"breadcrumbs":5,"title":2},"928":{"body":62,"breadcrumbs":7,"title":4},"929":{"body":14,"breadcrumbs":5,"title":2},"93":{"body":20,"breadcrumbs":5,"title":3},"930":{"body":58,"breadcrumbs":5,"title":2},"931":{"body":21,"breadcrumbs":8,"title":5},"932":{"body":14,"breadcrumbs":7,"title":4},"933":{"body":48,"breadcrumbs":5,"title":2},"934":{"body":19,"breadcrumbs":4,"title":1},"935":{"body":30,"breadcrumbs":4,"title":2},"936":{"body":14,"breadcrumbs":3,"title":1},"937":{"body":13,"breadcrumbs":4,"title":2},"938":{"body":34,"breadcrumbs":4,"title":2},"939":{"body":79,"breadcrumbs":4,"title":2},"94":{"body":86,"breadcrumbs":5,"title":3},"940":{"body":28,"breadcrumbs":4,"title":2},"941":{"body":16,"breadcrumbs":5,"title":3},"942":{"body":32,"breadcrumbs":3,"title":1},"943":{"body":38,"breadcrumbs":4,"title":2},"944":{"body":21,"breadcrumbs":3,"title":1},"945":{"body":15,"breadcrumbs":3,"title":1},"946":{"body":18,"breadcrumbs":6,"title":3},"947":{"body":18,"breadcrumbs":4,"title":1},"948":{"body":14,"breadcrumbs":5,"title":2},"949":{"body":9,"breadcrumbs":5,"title":2},"95":{"body":211,"breadcrumbs":7,"title":5},"950":{"body":7,"breadcrumbs":5,"title":2},"951":{"body":29,"breadcrumbs":6,"title":3},"952":{"body":41,"breadcrumbs":6,"title":3},"953":{"body":32,"breadcrumbs":5,"title":2},"954":{"body":29,"breadcrumbs":5,"title":2},"955":{"body":57,"breadcrumbs":4,"title":1},"956":{"body":55,"breadcrumbs":5,"title":2},"957":{"body":25,"breadcrumbs":4,"title":1},"958":{"body":13,"breadcrumbs":4,"title":1},"959":{"body":20,"breadcrumbs":4,"title":2},"96":{"body":27,"breadcrumbs":4,"title":2},"960":{"body":15,"breadcrumbs":3,"title":1},"961":{"body":0,"breadcrumbs":4,"title":2},"962":{"body":18,"breadcrumbs":3,"title":1},"963":{"body":18,"breadcrumbs":3,"title":1},"964":{"body":43,"breadcrumbs":4,"title":2},"965":{"body":20,"breadcrumbs":3,"title":1},"966":{"body":32,"breadcrumbs":3,"title":1},"967":{"body":44,"breadcrumbs":4,"title":2},"968":{"body":23,"breadcrumbs":4,"title":2},"969":{"body":16,"breadcrumbs":3,"title":1},"97":{"body":29,"breadcrumbs":4,"title":2},"970":{"body":21,"breadcrumbs":6,"title":3},"971":{"body":1,"breadcrumbs":5,"title":2},"972":{"body":17,"breadcrumbs":5,"title":2},"973":{"body":45,"breadcrumbs":4,"title":1},"974":{"body":0,"breadcrumbs":5,"title":2},"975":{"body":78,"breadcrumbs":5,"title":2},"976":{"body":26,"breadcrumbs":5,"title":2},"977":{"body":16,"breadcrumbs":5,"title":2},"978":{"body":10,"breadcrumbs":5,"title":2},"979":{"body":35,"breadcrumbs":5,"title":2},"98":{"body":73,"breadcrumbs":4,"title":2},"980":{"body":71,"breadcrumbs":4,"title":1},"981":{"body":18,"breadcrumbs":5,"title":2},"982":{"body":15,"breadcrumbs":5,"title":2},"983":{"body":25,"breadcrumbs":4,"title":1},"984":{"body":16,"breadcrumbs":8,"title":4},"985":{"body":110,"breadcrumbs":6,"title":2},"986":{"body":88,"breadcrumbs":8,"title":4},"987":{"body":70,"breadcrumbs":8,"title":4},"988":{"body":59,"breadcrumbs":7,"title":3},"989":{"body":90,"breadcrumbs":9,"title":5},"99":{"body":42,"breadcrumbs":3,"title":1},"990":{"body":40,"breadcrumbs":10,"title":6},"991":{"body":42,"breadcrumbs":6,"title":2},"992":{"body":39,"breadcrumbs":8,"title":4},"993":{"body":14,"breadcrumbs":4,"title":2},"994":{"body":165,"breadcrumbs":5,"title":3},"995":{"body":0,"breadcrumbs":5,"title":3},"996":{"body":42,"breadcrumbs":5,"title":3},"997":{"body":21,"breadcrumbs":5,"title":3},"998":{"body":17,"breadcrumbs":5,"title":3},"999":{"body":112,"breadcrumbs":5,"title":3}},"docs":{"0":{"body":"JACS is a cryptographic provenance layer for agent systems. Use it when an output, tool call, or agent handoff crosses a trust boundary and logs alone are not enough.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"Most teams adopt JACS in one of four ways: LangChain / LangGraph / CrewAI / FastAPI : add signing at tool or API boundaries without changing the rest of the app MCP : secure a local tool server or expose JACS itself as an MCP tool suite A2A : publish an Agent Card, exchange signed artifacts, and apply trust policy across organizations Core signing : sign JSON, files, or agreements directly from Rust, Python, Node.js, or Go The book now focuses on those supported workflows first. Older roadmap-style integration chapters have been reduced or removed from navigation.","breadcrumbs":"Introduction » Start With The Deployment","id":"1","title":"Start With The Deployment"},"10":{"body":"cargo install jacs-cli\njacs quickstart --name my-agent --domain my-agent.example.com","breadcrumbs":"Introduction » Rust CLI","id":"10","title":"Rust CLI"},"100":{"body":"Three agents from different organizations sign an agreement with 2-of-3 quorum. Imagine three departments -- Finance, Compliance, and Legal -- must approve a production deployment. Requiring all three creates bottlenecks. With JACS quorum agreements, any two of three is sufficient: cryptographically signed, independently verifiable, with a full audit trail. No central authority. No shared database. Every signature is independently verifiable.","breadcrumbs":"Multi-Agent Agreements » Multi-Agent Agreements","id":"100","title":"Multi-Agent Agreements"},"1000":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"1000","title":"Threat Model"},"1001":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"1001","title":"Protected Against"},"1002":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"1002","title":"Trust Assumptions"},"1003":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"1003","title":"Signature Process"},"1004":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"1004","title":"Signing a Document"},"1005":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"1005","title":"Verifying a Document"},"1006":{"body":"","breadcrumbs":"Security Model » Key Management","id":"1006","title":"Key Management"},"1007":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"1007","title":"Key Generation"},"1008":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Option 1: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" # Option 2: OS keychain (recommended for developer workstations)\njacs keychain set --agent-id Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable or use the OS keychain. OS Keychain Integration : On macOS and Linux desktops, JACS can store and retrieve the private key password from the OS credential store, eliminating the need for environment variables or plaintext password files during day-to-day development: macOS : Uses Security.framework (Keychain Access) Linux : Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC) Each password is keyed by agent ID, so multiple agents can coexist on the same machine without overwriting each other. Store your password once with jacs keychain set --agent-id , and all subsequent JACS operations will find it automatically. The password resolution order is: JACS_PRIVATE_KEY_PASSWORD env var (highest priority -- explicit always wins) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain keyed by agent ID (lowest priority among explicit sources) To disable keychain lookups (recommended for CI and headless environments): export JACS_KEYCHAIN_BACKEND=disabled Or in jacs.config.json: { \"jacs_keychain_backend\": \"disabled\"\n} The keychain stores the password under service name jacs-private-key with user default. Multiple agents on one machine can use agent-specific passwords via the *_for_agent() API variants. Security note : The OS keychain is encrypted at rest by the OS and unlocked by the user's login session. It is the same mechanism used by git, ssh-agent, docker, and other CLI tools. The keychain feature is optional and not compiled into the jacs core crate by default -- it is enabled by default only in jacs-cli. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"1008","title":"Key Protection"},"1009":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"1009","title":"Key Rotation"},"101":{"body":"Create Agreement --> Agent A Signs --> Agent B Signs --> Quorum Met (2/3) --> Verified","breadcrumbs":"Multi-Agent Agreements » The Lifecycle","id":"101","title":"The Lifecycle"},"1010":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"1010","title":"TLS Certificate Validation"},"1011":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"1011","title":"Default Behavior (Development)"},"1012":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"1012","title":"Production Configuration"},"1013":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For registry verification endpoints, JACS_REGISTRY_URL (legacy HAI_API_URL) must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"1013","title":"Security Implications"},"1014":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"1014","title":"Signature Timestamp Validation"},"1015":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"1015","title":"How It Works"},"1016":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"1016","title":"Configuring Signature Expiration"},"1017":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"1017","title":"Protection Against Replay Attacks"},"1018":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"1018","title":"Clock Synchronization"},"1019":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"1019","title":"Verification Claims"},"102":{"body":"from jacs.client import JacsClient # Step 1: Create three agents (one per organization)\nfinance = JacsClient.quickstart( name=\"finance\", domain=\"finance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./finance.config.json\",\n)\ncompliance = JacsClient.quickstart( name=\"compliance\", domain=\"compliance.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./compliance.config.json\",\n)\nlegal = JacsClient.quickstart( name=\"legal\", domain=\"legal.example.com\", algorithm=\"ring-Ed25519\", config_path=\"./legal.config.json\",\n) # Step 2: Finance proposes an agreement with quorum\nfrom datetime import datetime, timedelta, timezone proposal = { \"action\": \"Deploy model v2 to production\", \"conditions\": [\"passes safety audit\", \"approved by 2 of 3 signers\"],\n}\ndeadline = (datetime.now(timezone.utc) + timedelta(hours=1)).isoformat() agreement = finance.create_agreement( document=proposal, agent_ids=[finance.agent_id, compliance.agent_id, legal.agent_id], question=\"Do you approve deployment of model v2?\", context=\"Production rollout pending safety audit sign-off.\", quorum=2, # only 2 of 3 need to sign timeout=deadline,\n) # Step 3: Finance signs\nagreement = finance.sign_agreement(agreement) # Step 4: Compliance co-signs -- quorum is now met\nagreement = compliance.sign_agreement(agreement) # Step 5: Verify -- any party can confirm independently\nstatus = finance.check_agreement(agreement)\nprint(f\"Complete: {status.complete}\") # True -- 2 of 3 signed for s in status.signers: label = \"signed\" if s.signed else \"pending\" print(f\" {s.agent_id[:12]}... {label}\")","breadcrumbs":"Multi-Agent Agreements » Python","id":"102","title":"Python"},"1020":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-registry Above + registry verification Must be registered and verified by a JACS registry verified-hai.ai (legacy alias) Same as verified-registry Backward-compatible alias","breadcrumbs":"Security Model » Claim Levels","id":"1020","title":"Claim Levels"},"1021":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"1021","title":"Setting a Verification Claim"},"1022":{"body":"When an agent claims verified, verified-registry, or legacy verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-registry (or legacy verified-hai.ai) claims, additional enforcement: Registry Registration : Agent must be registered with the configured registry (for HAI-hosted registry, hai.ai ) Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if the registry API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"1022","title":"Claim Enforcement"},"1023":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"1023","title":"Backward Compatibility"},"1024":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-registry' failed: Agent 'uuid' is not registered with the configured registry.\nAgents claiming 'verified-registry' must be registered with a reachable registry endpoint.","breadcrumbs":"Security Model » Error Messages","id":"1024","title":"Error Messages"},"1025":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-registry requires network access to the registry endpoint Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"1025","title":"Security Considerations"},"1026":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"1026","title":"DNS-Based Verification"},"1027":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"1027","title":"How It Works"},"1028":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"1028","title":"Configuration"},"1029":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"1029","title":"Security Levels"},"103":{"body":"import { JacsClient } from \"@hai.ai/jacs/client\"; async function main() { // Step 1: Create three agents const finance = await JacsClient.ephemeral(\"ring-Ed25519\"); const compliance = await JacsClient.ephemeral(\"ring-Ed25519\"); const legal = await JacsClient.ephemeral(\"ring-Ed25519\"); // Step 2: Finance proposes an agreement with quorum const proposal = { action: \"Deploy model v2 to production\", conditions: [\"passes safety audit\", \"approved by 2 of 3 signers\"], }; const deadline = new Date(Date.now() + 60 * 60 * 1000).toISOString(); const agentIds = [finance.agentId, compliance.agentId, legal.agentId]; let agreement = await finance.createAgreement(proposal, agentIds, { question: \"Do you approve deployment of model v2?\", context: \"Production rollout pending safety audit sign-off.\", quorum: 2, timeout: deadline, }); // Step 3: Finance signs agreement = await finance.signAgreement(agreement); // Step 4: Compliance co-signs -- quorum is now met agreement = await compliance.signAgreement(agreement); // Step 5: Verify const doc = JSON.parse(agreement.raw); const ag = doc.jacsAgreement; const sigCount = ag.signatures?.length ?? 0; console.log(`Signatures: ${sigCount} of ${agentIds.length}`); console.log(`Quorum met: ${sigCount >= (ag.quorum ?? agentIds.length)}`);\n} main().catch(console.error);","breadcrumbs":"Multi-Agent Agreements » Node.js / TypeScript","id":"103","title":"Node.js / TypeScript"},"1030":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"1030","title":"Trust Store Management"},"1031":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"1031","title":"Trusting Agents"},"1032":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"1032","title":"Untrusting Agents"},"1033":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"1033","title":"Trust Store Security"},"1034":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"1034","title":"Best Practices"},"1035":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"1035","title":"Agreement Security"},"1036":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"1036","title":"Agreement Structure"},"1037":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"1037","title":"Agreement Guarantees"},"1038":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"1038","title":"Request/Response Security"},"1039":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"1039","title":"Request Signing"},"104":{"body":"Three independent agents were created, each with their own keys -- no shared secrets. Finance proposed an agreement requiring 2-of-3 quorum with a one-hour deadline. Finance and Compliance signed. Legal never needed to act -- quorum was met. Any party can verify the agreement independently. The cryptographic proof chain is self-contained. Every signature includes: the signer's agent ID, the signing algorithm, a timestamp, and a hash of the agreement content. If anyone tampers with the document after signing, verification fails.","breadcrumbs":"Multi-Agent Agreements » What Just Happened?","id":"104","title":"What Just Happened?"},"1040":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"1040","title":"Response Verification"},"1041":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"1041","title":"Algorithm Security"},"1042":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"1042","title":"Supported Algorithms"},"1043":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"1043","title":"Algorithm Selection"},"1044":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"1044","title":"Security Best Practices"},"1045":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"1045","title":"1. Key Storage"},"1046":{"body":"# Option A: Use environment variables (CI, servers)\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\" # Option B: Use OS keychain (developer workstations)\njacs keychain set --agent-id # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments\nexport JACS_KEYCHAIN_BACKEND=disabled","breadcrumbs":"Security Model » 2. Password Handling","id":"1046","title":"2. Password Handling"},"1047":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"1047","title":"3. Transport Security"},"1048":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"1048","title":"4. Verification Policies"},"1049":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"1049","title":"5. Audit Logging"},"105":{"body":"Agreements API Reference -- timeout, algorithm constraints, and more Python Framework Adapters -- use agreements inside LangChain, FastAPI, CrewAI Security Model -- how the cryptographic proof chain works","breadcrumbs":"Multi-Agent Agreements » Next Steps","id":"105","title":"Next Steps"},"1050":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"1050","title":"Security Checklist"},"1051":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"1051","title":"Development"},"1052":{"body":"Encrypt private keys at rest Use environment variables or OS keychain for secrets (never store jacs_private_key_password in config) Set JACS_KEYCHAIN_BACKEND=disabled on CI/headless servers Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"1052","title":"Production"},"1053":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"1053","title":"Verification"},"1054":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"1054","title":"Security Considerations"},"1055":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"1055","title":"Supply Chain"},"1056":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"1056","title":"Side Channels"},"1057":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"1057","title":"Recovery"},"1058":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"1058","title":"Troubleshooting Verification Claims"},"1059":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with the registry\" Problem : You're using verified-registry (or legacy verified-hai.ai) but the agent isn't registered. Solution : Register your agent with your configured registry (for HAI-hosted registry, hai.ai ) Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"1059","title":"Common Issues and Solutions"},"106":{"body":"Verify a JACS-signed document in under 2 minutes. Verification confirms two things: the document was signed by the claimed agent, and the content has not been modified since signing. Verification does NOT require creating an agent. You only need the signed document (and optionally access to the signer's public key).","breadcrumbs":"Verifying Signed Documents » Verifying Signed Documents","id":"106","title":"Verifying Signed Documents"},"1060":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-registry 2 (highest) Above + registry registration verified-hai.ai (legacy alias) 2 (highest) Alias of verified-registry","breadcrumbs":"Security Model » Claim Level Reference","id":"1060","title":"Claim Level Reference"},"1061":{"body":"Upgrades allowed : unverified → verified → verified-registry (legacy alias verified-hai.ai is same level) Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"1061","title":"Upgrade vs Downgrade Rules"},"1062":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"1062","title":"Quick Diagnostic Commands"},"1063":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"1063","title":"See Also"},"1064":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"1064","title":"Key Rotation"},"1065":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"1065","title":"Why Key Rotation Matters"},"1066":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"1066","title":"Key Compromise Recovery"},"1067":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"1067","title":"Cryptographic Agility"},"1068":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"1068","title":"Compliance Requirements"},"1069":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"1069","title":"Agent Versioning"},"107":{"body":"The fastest way to verify a document from the command line. No config file, no agent setup. # Verify a local file\njacs verify signed-document.json # Verify with JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document by URL\njacs verify --remote https://example.com/signed-doc.json # Specify a directory containing public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Output on success: Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z JSON output (--json): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} The exit code is 0 for valid, 1 for invalid or error. Use this in CI/CD pipelines: if jacs verify artifact.json --json; then echo \"Artifact is authentic\"\nelse echo \"Verification failed\" >&2 exit 1\nfi If a jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise, it creates a temporary ephemeral verifier internally.","breadcrumbs":"Verifying Signed Documents » CLI: jacs verify","id":"107","title":"CLI: jacs verify"},"1070":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"1070","title":"Version Format"},"1071":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"1071","title":"Version Chain"},"1072":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"1072","title":"Version-Aware Verification"},"1073":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"1073","title":"Signature Structure"},"1074":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"1074","title":"Key Resolution Process"},"1075":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"1075","title":"Key Lookup Priority"},"1076":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"1076","title":"Key Rotation Process"},"1077":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"1077","title":"Step-by-Step Rotation"},"1078":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"1078","title":"Transition Signature"},"1079":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"1079","title":"CLI Commands (Planned)"},"108":{"body":"","breadcrumbs":"Verifying Signed Documents » Python","id":"108","title":"Python"},"1080":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"1080","title":"Example Rotation Flow"},"1081":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"1081","title":"Trust Store with Version History"},"1082":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"1082","title":"TrustedAgent Structure"},"1083":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1083","title":"Key Status Values"},"1084":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1084","title":"Looking Up Keys"},"1085":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1085","title":"DNS Support for Key Versions"},"1086":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1086","title":"Multi-Version DNS Records"},"1087":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1087","title":"DNS Record Generation"},"1088":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1088","title":"Security Considerations"},"1089":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1089","title":"Key Revocation"},"109":{"body":"import jacs.simple as jacs jacs.load(\"./jacs.config.json\") result = jacs.verify(signed_json)\nif result.valid: print(f\"Signed by: {result.signer_id}\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"109","title":"With an agent loaded"},"1090":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1090","title":"Overlap Period"},"1091":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1091","title":"Secure Deletion"},"1092":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1092","title":"Best Practices"},"1093":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1093","title":"Rotation Schedule"},"1094":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1094","title":"Pre-Rotation Checklist"},"1095":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1095","title":"Post-Rotation Checklist"},"1096":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1096","title":"See Also"},"1097":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1097","title":"Cryptographic Algorithms"},"1098":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1098","title":"Supported Algorithms"},"1099":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1099","title":"Ed25519 (ring-Ed25519)"},"11":{"body":"pip install jacs","breadcrumbs":"Introduction » Python","id":"11","title":"Python"},"110":{"body":"import jacs.simple as jacs result = jacs.verify_standalone( signed_json, key_resolution=\"local\", key_directory=\"./trusted-keys/\"\n)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") verify_standalone does not use a global agent. Pass the key resolution strategy and directories explicitly.","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"110","title":"Without an agent (standalone)"},"1100":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1100","title":"Overview"},"1101":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1101","title":"Characteristics"},"1102":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1102","title":"Configuration"},"1103":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1103","title":"Use Cases"},"1104":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1104","title":"Example"},"1105":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1105","title":"RSA-PSS"},"1106":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1106","title":"Overview"},"1107":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1107","title":"Characteristics"},"1108":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1108","title":"Configuration"},"1109":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1109","title":"Use Cases"},"111":{"body":"If the document is in local storage and you know its ID: result = jacs.verify_by_id(\"550e8400-e29b-41d4:1\")","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"111","title":"Verify by document ID"},"1110":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1110","title":"Considerations"},"1111":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1111","title":"Dilithium (pq-dilithium)"},"1112":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1112","title":"Overview"},"1113":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1113","title":"Characteristics"},"1114":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1114","title":"Configuration"},"1115":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1115","title":"Use Cases"},"1116":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1116","title":"Considerations"},"1117":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1117","title":"PQ2025 (Hybrid)"},"1118":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1118","title":"Overview"},"1119":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1119","title":"Characteristics"},"112":{"body":"","breadcrumbs":"Verifying Signed Documents » Node.js","id":"112","title":"Node.js"},"1120":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1120","title":"Configuration"},"1121":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1121","title":"Use Cases"},"1122":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1122","title":"Considerations"},"1123":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1123","title":"Algorithm Selection Guide"},"1124":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1124","title":"Decision Matrix"},"1125":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1125","title":"By Use Case"},"1126":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1126","title":"Key Generation"},"1127":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1127","title":"Key Formats"},"1128":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1128","title":"Signature Structure"},"1129":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1129","title":"Hashing"},"113":{"body":"import * as jacs from '@hai.ai/jacs/simple'; await jacs.load('./jacs.config.json'); const result = await jacs.verify(signedJson);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » With an agent loaded","id":"113","title":"With an agent loaded"},"1130":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1130","title":"Algorithm Migration"},"1131":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1131","title":"Performance Comparison"},"1132":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1132","title":"Security Considerations"},"1133":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1133","title":"Algorithm Agility"},"1134":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1134","title":"Forward Secrecy"},"1135":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1135","title":"Key Compromise"},"1136":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1136","title":"See Also"},"1137":{"body":"Choosing the right signing algorithm affects key size, signature size, verification speed, and compliance posture. This guide helps you pick the right one.","breadcrumbs":"Algorithm Selection Guide » Algorithm Selection Guide","id":"1137","title":"Algorithm Selection Guide"},"1138":{"body":"Algorithm Config Value Public Key Signature Best For Ed25519 ring-Ed25519 32 bytes 64 bytes Speed, small signatures RSA-PSS RSA-PSS ~550 bytes (4096-bit) ~512 bytes Broad compatibility ML-DSA-87 pq2025 2,592 bytes 4,627 bytes Post-quantum compliance (FIPS-204) Dilithium pq-dilithium >1,000 bytes ~3,293-4,644 bytes Deprecated -- use pq2025","breadcrumbs":"Algorithm Selection Guide » Supported Algorithms","id":"1138","title":"Supported Algorithms"},"1139":{"body":"Do you need FIPS/NIST post-quantum compliance? ├── Yes → pq2025 └── No ├── Need maximum interop with existing PKI/TLS systems? → RSA-PSS └── Need speed and small payloads? → ring-Ed25519 Default recommendation for new projects: pq2025 Ed25519 and RSA-PSS are well-understood and widely deployed, but neither is quantum-resistant. If you don't have a specific reason to choose one of them, start with pq2025 so you don't have to migrate later.","breadcrumbs":"Algorithm Selection Guide » How to Choose","id":"1139","title":"How to Choose"},"114":{"body":"import { verifyStandalone } from '@hai.ai/jacs/simple'; const result = verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './trusted-keys/',\n});\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`);","breadcrumbs":"Verifying Signed Documents » Without an agent (standalone)","id":"114","title":"Without an agent (standalone)"},"1140":{"body":"Choose pq2025 (ML-DSA-87, FIPS-204) when: Your compliance team asks about quantum readiness Government or defense contracts require FIPS-204 You need long-lived signatures that must remain valid for 10+ years You want to avoid a future algorithm migration JACS supports ML-DSA-87 (FIPS-204) for post-quantum digital signatures. When your compliance team asks about quantum readiness, JACS already has the answer. The tradeoff is size: ML-DSA-87 public keys are 2,592 bytes and signatures are 4,627 bytes -- roughly 80x larger than Ed25519. For most applications this is negligible, but if you're signing millions of small messages and bandwidth matters, consider Ed25519.","breadcrumbs":"Algorithm Selection Guide » When to Choose Post-Quantum","id":"1140","title":"When to Choose Post-Quantum"},"1141":{"body":"JACS verification works across algorithms. An agreement can contain signatures from RSA, Ed25519, and ML-DSA agents and all verify correctly. This heterogeneous verification is important for cross-organization scenarios where different parties chose different algorithms. Each agent uses one algorithm (chosen at creation time), but can verify signatures from all supported algorithms.","breadcrumbs":"Algorithm Selection Guide » Cross-Algorithm Verification","id":"1141","title":"Cross-Algorithm Verification"},"1142":{"body":"Set the algorithm in your jacs.config.json: { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Or via environment variable: export JACS_AGENT_KEY_ALGORITHM=pq2025 Valid values: ring-Ed25519, RSA-PSS, pq2025 In Python and Node.js, pass the algorithm to quickstart(...): from jacs.client import JacsClient\nclient = JacsClient.quickstart( name=\"algo-agent\", domain=\"algo.example.com\", algorithm=\"pq2025\",\n) import { JacsClient } from \"@hai.ai/jacs\";\nconst client = await JacsClient.quickstart({ name: \"algo-agent\", domain: \"algo.example.com\", algorithm: \"pq2025\",\n});","breadcrumbs":"Algorithm Selection Guide » Configuration","id":"1142","title":"Configuration"},"1143":{"body":"Each agent uses one algorithm, chosen at creation time. You cannot change an agent's algorithm after creation. Algorithm negotiation between agents is planned but not yet implemented. pq-dilithium is deprecated in favor of pq2025 (ML-DSA-87). Use pq2025 for new agents and verification hints.","breadcrumbs":"Algorithm Selection Guide » Current Limitations","id":"1143","title":"Current Limitations"},"1144":{"body":"JACS has two storage layers today: Low-level file/object storage via MultiStorage Signed document CRUD/search via DocumentService Those are related, but they are not identical. The most important rule is the signed-document contract: Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes an already-signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Storage Backends » Storage Backends","id":"1144","title":"Storage Backends"},"1145":{"body":"Backend Config Value Core Surface Notes Filesystem fs MultiStorage + DocumentService Default. Signed JSON files on disk. Local indexed SQLite rusqlite DocumentService + SearchProvider Stores signed documents in a local SQLite DB with FTS search. AWS object storage aws MultiStorage Object-store backend. Memory memory MultiStorage Non-persistent, useful for tests and temporary flows. Browser local storage local MultiStorage WASM-only. For local indexed document search in JACS core, use rusqlite.","breadcrumbs":"Storage Backends » Built-in Core Backends","id":"1145","title":"Built-in Core Backends"},"1146":{"body":"Filesystem is the default signed-document backend. { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Typical layout: jacs_data/\n├── agent/\n│ └── {agent-id}:{agent-version}.json\n└── documents/ ├── {document-id}:{version}.json └── archive/ Use filesystem when you want the simplest possible deployment, inspectable files, and no local database dependency.","breadcrumbs":"Storage Backends » Filesystem (fs)","id":"1146","title":"Filesystem (fs)"},"1147":{"body":"rusqlite is the built-in indexed document backend used by the upgraded bindings and MCP search path. { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} With this setting: Signed documents are stored in ./jacs_data/jacs_documents.sqlite3 Full-text search comes from SQLite FTS DocumentService reads and writes enforce verification Updating visibility creates a new signed successor version Use rusqlite when you want local full-text search, filtered document queries, and a single-machine deployment.","breadcrumbs":"Storage Backends » Local Indexed SQLite (rusqlite)","id":"1147","title":"Local Indexed SQLite (rusqlite)"},"1148":{"body":"AWS support is an object-store backend for lower-level storage operations. { \"jacs_default_storage\": \"aws\"\n} Required environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-bucket\"\nexport AWS_ACCESS_KEY_ID=\"...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" Use aws when you need remote object storage. If you also need a richer signed-document query surface, use one of the database-focused crates below.","breadcrumbs":"Storage Backends » AWS (aws)","id":"1148","title":"AWS (aws)"},"1149":{"body":"Memory storage is non-persistent: { \"jacs_default_storage\": \"memory\"\n} Use it for tests, temporary operations, and ephemeral agent flows.","breadcrumbs":"Storage Backends » Memory (memory)","id":"1149","title":"Memory (memory)"},"115":{"body":"const result = await jacs.verifyById('550e8400-e29b-41d4:1');","breadcrumbs":"Verifying Signed Documents » Verify by document ID","id":"115","title":"Verify by document ID"},"1150":{"body":"Several richer database backends now live outside the JACS core crate: jacs-postgresql jacs-duckdb jacs-redb jacs-surrealdb These crates implement the same storage/search traits in their own packages. They are not built-in jacs_default_storage values for the core crate.","breadcrumbs":"Storage Backends » Extracted Backend Crates","id":"1150","title":"Extracted Backend Crates"},"1151":{"body":"Scenario Recommendation Default local usage fs Local search + filtering rusqlite Ephemeral tests memory Remote object storage aws Postgres / vector / multi-model needs Use an extracted backend crate","breadcrumbs":"Storage Backends » Choosing a Backend","id":"1151","title":"Choosing a Backend"},"1152":{"body":"Switching backends does not migrate data automatically. When you change jacs_default_storage: Export the signed documents you need to keep. Update the config value. Create/import the new backend’s data store. Re-run verification on imported documents as part of migration validation.","breadcrumbs":"Storage Backends » Migration Notes","id":"1152","title":"Migration Notes"},"1153":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1153","title":"Custom Schemas"},"1154":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1154","title":"Overview"},"1155":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1155","title":"Creating a Custom Schema"},"1156":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1156","title":"Basic Structure"},"1157":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1157","title":"Step-by-Step Guide"},"1158":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1158","title":"Schema Best Practices"},"1159":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1159","title":"Use Meaningful IDs"},"116":{"body":"Generate a URL that lets anyone verify a signed document through a web verifier (e.g., hai.ai): Python: url = jacs.generate_verify_link(signed_doc.raw_json)\n# https://hai.ai/jacs/verify?s= Node.js: const url = jacs.generateVerifyLink(signed.raw); The document is base64url-encoded into the URL query parameter. Documents must be under ~1.5 KB to fit within the 2048-character URL limit. For larger documents, share the file directly and verify with the CLI or SDK.","breadcrumbs":"Verifying Signed Documents » Verification Links","id":"116","title":"Verification Links"},"1160":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1160","title":"Document Everything"},"1161":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1161","title":"Use Appropriate Validation"},"1162":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1162","title":"Group Related Fields"},"1163":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1163","title":"Advanced Schema Features"},"1164":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1164","title":"Conditional Validation"},"1165":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1165","title":"Reusable Definitions"},"1166":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1166","title":"Array Constraints"},"1167":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1167","title":"Pattern Properties"},"1168":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1168","title":"Schema Inheritance"},"1169":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1169","title":"Extending Custom Schemas"},"117":{"body":"DNS verification checks that an agent's public key hash matches a DNS TXT record published at _v1.agent.jacs.. This provides a decentralized trust anchor: anyone can look up the agent's expected key fingerprint via DNS without contacting a central server.","breadcrumbs":"Verifying Signed Documents » DNS Verification","id":"117","title":"DNS Verification"},"1170":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1170","title":"Validation"},"1171":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1171","title":"Python Validation"},"1172":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1172","title":"Node.js Validation"},"1173":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1173","title":"Example Schemas"},"1174":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1174","title":"Medical Record"},"1175":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1175","title":"Legal Contract"},"1176":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1176","title":"IoT Sensor Reading"},"1177":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1177","title":"Schema Versioning"},"1178":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1178","title":"Version in Path"},"1179":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1179","title":"Version Field"},"118":{"body":"jacs agent dns --domain example.com --provider plain This outputs the TXT record to add to your DNS zone. Provider options: plain, aws, azure, cloudflare.","breadcrumbs":"Verifying Signed Documents » Publishing a DNS record","id":"118","title":"Publishing a DNS record"},"1180":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1180","title":"Migration Strategy"},"1181":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1181","title":"See Also"},"1182":{"body":"The JACS trust store is a local directory of agent public keys and metadata that your agent has explicitly chosen to trust. It enables offline signature verification without a central authority -- once you trust an agent, you can verify its signatures without network access.","breadcrumbs":"Trust Store » Trust Store Operations","id":"1182","title":"Trust Store Operations"},"1183":{"body":"When you add an agent to your trust store, JACS: Parses the agent's JSON document Extracts the public key and verifies the agent's self-signature Saves the agent document, public key, and metadata to ~/.jacs/trust_store/ After that, any document signed by that agent can be verified locally using the cached public key.","breadcrumbs":"Trust Store » How it works","id":"1183","title":"How it works"},"1184":{"body":"All bindings expose five trust store functions: Function Description trust_agent(agent_json) Add an agent to the trust store (verifies self-signature first) list_trusted_agents() List all trusted agent IDs is_trusted(agent_id) Check if an agent is in the trust store get_trusted_agent(agent_id) Retrieve the full agent JSON untrust_agent(agent_id) Remove an agent from the trust store","breadcrumbs":"Trust Store » API","id":"1184","title":"API"},"1185":{"body":"import jacs # Receive an agent document from a partner organization\nremote_agent_json = receive_from_partner() # Add to trust store (self-signature is verified automatically)\nagent_id = jacs.trust_agent(remote_agent_json)\nprint(f\"Now trusting: {agent_id}\") # Later, check trust before processing a signed document\nif jacs.is_trusted(sender_id): # Verify their signature using the cached public key result = jacs.verify(signed_document) # List all trusted agents\nfor aid in jacs.list_trusted_agents(): print(aid) # Remove trust\njacs.untrust_agent(agent_id)","breadcrumbs":"Trust Store » Python example","id":"1185","title":"Python example"},"1186":{"body":"import { trustAgent, isTrusted, listTrustedAgents, untrustAgent } from '@hai.ai/jacs'; // Add a partner's agent to the trust store\nconst agentId = trustAgent(remoteAgentJson); // Check trust\nif (isTrusted(senderId)) { const result = verify(signedDocument);\n} // List and remove\nconst trusted = listTrustedAgents();\nuntrustAgent(agentId);","breadcrumbs":"Trust Store » Node.js example","id":"1186","title":"Node.js example"},"1187":{"body":"A realistic deployment involves two organizations that need to verify each other's agent signatures: Org B creates an agent and publishes its public key via DNS TXT records or a HAI key distribution endpoint Org A fetches Org B's agent document (via fetch_remote_key or direct exchange) Org A calls trust_agent() with Org B's agent JSON -- JACS verifies the self-signature and caches the public key From this point on, Org A can verify any document signed by Org B's agent offline , using only the local trust store This is the same model as SSH known_hosts or PGP key signing: trust is established once through a verified channel, then used repeatedly without network round-trips.","breadcrumbs":"Trust Store » Cross-organization scenario","id":"1187","title":"Cross-organization scenario"},"1188":{"body":"trust_agent() cryptographically verifies the agent's self-signature before adding it to the store. A tampered agent document will be rejected. Agent IDs are validated against path traversal attacks before any filesystem operations. The trust store directory (~/.jacs/trust_store/) should be protected with appropriate file permissions. Revoking trust with untrust_agent() removes both the agent document and cached key material.","breadcrumbs":"Trust Store » Security notes","id":"1188","title":"Security notes"},"1189":{"body":"Most signing libraries work as tools : the developer calls sign() and verify() manually at each point where integrity matters. JACS can work that way too, but its real value appears when it operates as infrastructure -- signing happens automatically as a side effect of normal framework usage.","breadcrumbs":"Infrastructure vs Tools » Infrastructure vs Tools: JACS as Middleware","id":"1189","title":"Infrastructure vs Tools: JACS as Middleware"},"119":{"body":"jacs agent lookup example.com This fetches the agent's public key from https://example.com/.well-known/jacs-pubkey.json and checks the DNS TXT record at _v1.agent.jacs.example.com.","breadcrumbs":"Verifying Signed Documents » Looking up an agent by domain","id":"119","title":"Looking up an agent by domain"},"1190":{"body":"Approach Developer effort Coverage Tool Call sign()/verify() at every boundary Only where you remember to add it Infrastructure Add 1-3 lines of setup Every request/response automatically","breadcrumbs":"Infrastructure vs Tools » The difference","id":"1190","title":"The difference"},"1191":{"body":"JACS MCP transport proxies sit between client and server. Every JSON-RPC message is signed on the way out and verified on the way in. The MCP tools themselves never call a signing function -- it happens at the transport layer. Client --> [JACS Proxy: sign] --> Server\nClient <-- [JACS Proxy: verify] <-- Server No application code changes. The proxy handles it.","breadcrumbs":"Infrastructure vs Tools » Transport-level: MCP proxies","id":"1191","title":"Transport-level: MCP proxies"},"1192":{"body":"A single middleware line signs every HTTP response automatically: # FastAPI -- one line of setup\napp.add_middleware(JacsMiddleware, client=jacs_client)\n# Every response now carries a JACS signature header // Express -- one line of setup\napp.use(jacsMiddleware({ client }));\n// Every response now carries a JACS signature header The route handlers are unchanged. Signing is invisible to the developer writing business logic.","breadcrumbs":"Infrastructure vs Tools » Framework-level: Express / FastAPI middleware","id":"1192","title":"Framework-level: Express / FastAPI middleware"},"1193":{"body":"When JACS publishes an A2A agent card, the card includes the agent's public key and supported algorithms. Any other A2A-compatible agent can verify signatures without prior arrangement -- the trust bootstrapping is built into the protocol.","breadcrumbs":"Infrastructure vs Tools » Protocol-level: A2A agent cards","id":"1193","title":"Protocol-level: A2A agent cards"},"1194":{"body":"Manual signing has the same problem as manual memory management: developers forget, and the places they forget are the places attackers target. Infrastructure-level signing eliminates that gap. MCP transport : every tool call and result is signed, not just the ones you thought to protect HTTP middleware : every API response is signed, including error responses and health checks A2A integration : every agent interaction is verifiable, including discovery The developer adds setup code once. After that, signing happens everywhere automatically -- including in code paths the developer never explicitly considered.","breadcrumbs":"Infrastructure vs Tools » Why this matters","id":"1194","title":"Why this matters"},"1195":{"body":"Use JACS as a tool when you need fine-grained control: signing specific documents, creating agreements between named parties, or building custom verification workflows. Use JACS as infrastructure when you want blanket coverage: every message signed, every response verifiable, every agent interaction auditable. This is the recommended default for production deployments. Both approaches use the same keys, the same signatures, and the same verification. The difference is who calls sign() -- you, or the framework.","breadcrumbs":"Infrastructure vs Tools » When to use each approach","id":"1195","title":"When to use each approach"},"1196":{"body":"JACS uses DNS TXT records to anchor agent identity to domain names, providing a decentralized trust layer that does not require a central certificate authority. This page explains the trust model, configuration levels, and known limitations.","breadcrumbs":"DNS Trust Anchoring » DNS Trust Anchoring","id":"1196","title":"DNS Trust Anchoring"},"1197":{"body":"When an agent has jacsAgentDomain set, JACS publishes a TXT record at _v1.agent.jacs. containing a fingerprint of the agent's public key. During verification, JACS resolves this record and compares the fingerprint against the agent's actual key material. The TXT record format: v=hai.ai; id=; alg=sha256; enc=base64; fp= If the digest matches the local public key hash, the agent's identity is confirmed through DNS.","breadcrumbs":"DNS Trust Anchoring » How It Works","id":"1197","title":"How It Works"},"1198":{"body":"dns_validate dns_required dns_strict CLI Flag Behavior false false false --ignore-dns No DNS checks at all. Verification relies only on embedded fingerprints. true false false --no-dns Attempt DNS lookup; fall back to embedded fingerprint on failure. true true false --require-dns DNS TXT record must exist and match. No fallback to embedded fingerprint. true true true --require-strict-dns DNS TXT record must exist, match, and be DNSSEC-authenticated. Default behavior : When no flags are set, dns_validate and dns_required are derived from whether jacsAgentDomain is present in the agent document. If a domain is set, validation and requirement default to true. dns_strict always defaults to false. Verified claims override : Agents with jacsVerificationClaim set to a verified level automatically use validate=true, strict=true, required=true regardless of flags.","breadcrumbs":"DNS Trust Anchoring » Four Configuration Levels","id":"1198","title":"Four Configuration Levels"},"1199":{"body":"Domain ownership implies identity : The entity controlling DNS for a domain is authorized to speak for agents on that domain. TXT records are tamper-evident with DNSSEC : When --require-strict-dns is used, the full DNSSEC chain of trust (root -> TLD -> domain -> record) provides cryptographic integrity. Embedded fingerprints are a weaker fallback : Without DNS, JACS falls back to the signature fingerprint (jacsSignature.publicKeyHash) in the signed artifact/agent material. This proves key consistency but not domain ownership.","breadcrumbs":"DNS Trust Anchoring » Security Model Assumptions","id":"1199","title":"Security Model Assumptions"},"12":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Introduction » Node.js","id":"12","title":"Node.js"},"120":{"body":"# Require DNS validation (fail if no DNS record)\njacs agent verify --require-dns # Require strict DNSSEC validation\njacs agent verify --require-strict-dns For full DNS setup instructions, see DNS-Based Verification and DNS Trust Anchoring .","breadcrumbs":"Verifying Signed Documents » CLI verification with DNS","id":"120","title":"CLI verification with DNS"},"1200":{"body":"Attack Risk Level Mitigated By DNS cache poisoning Medium DNSSEC (--require-strict-dns), short TTLs TXT record manipulation (compromised DNS credentials) High DNSSEC, monitoring, key rotation DNS spoofing (man-in-the-middle) Medium DNSSEC validation, DNS-over-HTTPS resolvers Stale records after key rotation Low TTL management, re-publishing records before rotation Downgrade to embedded-only Medium Use --require-dns to prevent fallback","breadcrumbs":"DNS Trust Anchoring » Known Attack Vectors","id":"1200","title":"Known Attack Vectors"},"1201":{"body":"Fingerprint binding : The TXT record ties a specific public key to a domain, preventing key substitution. Multiple verification levels : From no-DNS (local development) to strict DNSSEC (production cross-org). Fallback logic : When DNS is unavailable and not required, verification degrades gracefully to embedded fingerprint comparison. Error specificity : Distinct error messages for \"record missing,\" \"fingerprint mismatch,\" \"DNSSEC failed,\" and \"agent ID mismatch.\"","breadcrumbs":"DNS Trust Anchoring » What JACS Provides","id":"1201","title":"What JACS Provides"},"1202":{"body":"Active DNSSEC chain validation : JACS relies on the system resolver (or DoH) for DNSSEC; it does not perform independent DNSKEY/DS chain validation. Certificate Transparency-style monitoring : No log of historical TXT record changes. Domain owners must monitor independently. Automatic key-to-DNS synchronization : Publishing and updating TXT records is a manual step (or CI/CD-driven).","breadcrumbs":"DNS Trust Anchoring » What JACS Does Not Yet Provide","id":"1202","title":"What JACS Does Not Yet Provide"},"1203":{"body":"Environment Minimum Setting Reason Local development --ignore-dns or --no-dns No real domain needed Internal org --no-dns DNS available but not critical Cross-org production --require-dns Prevents impersonation across trust boundaries High-security / regulated --require-strict-dns Full DNSSEC chain required For production cross-organization deployments, use --require-dns at minimum. Enable DNSSEC on your domain and use --require-strict-dns when the infrastructure supports it.","breadcrumbs":"DNS Trust Anchoring » Recommendations","id":"1203","title":"Recommendations"},"1204":{"body":"DNS-Based Verification -- setup guide with provider-specific instructions Security Model -- broader security architecture Key Rotation -- coordinating key changes with DNS updates","breadcrumbs":"DNS Trust Anchoring » See Also","id":"1204","title":"See Also"},"1205":{"body":"This page documents the error messages you will see when multi-agent agreements fail. Each scenario is validated by the chaos agreement tests in the JACS test suite.","breadcrumbs":"Failure Modes » Failure Modes","id":"1205","title":"Failure Modes"},"1206":{"body":"What happened: An agreement was created for N agents but one or more agents never signed -- they crashed, timed out, or disconnected before calling sign_agreement. Error message: not all agents have signed: [\"\"] { ... agreement object ... } What to do: Identify the unsigned agent from the error, re-establish contact, and have them call sign_agreement on the document. The partially-signed document is still valid and can accept additional signatures -- signing is additive.","breadcrumbs":"Failure Modes » Partial Signing (Agent Crash)","id":"1206","title":"Partial Signing (Agent Crash)"},"1207":{"body":"What happened: An agreement with an explicit quorum (M-of-N via AgreementOptions) received fewer than M signatures. Error message: Quorum not met: need 2 signatures, have 1 (unsigned: [\"\"]) What to do: Either collect more signatures to meet the quorum threshold, or create a new agreement with a lower quorum if appropriate. The unsigned agent IDs in the error tell you exactly who still needs to sign.","breadcrumbs":"Failure Modes » Quorum Not Met","id":"1207","title":"Quorum Not Met"},"1208":{"body":"What happened: A signature byte was modified after an agent signed the agreement. The cryptographic verification layer detects that the signature does not match the signed content. Error message: The exact message comes from the crypto verification layer and varies by algorithm, but it will always fail on the signature check rather than reporting missing signatures. You will not see \"not all agents have signed\" for this case -- the error is a cryptographic verification failure. What to do: This indicates data corruption in transit or deliberate tampering. Discard the document and request a fresh copy from the signing agent. Do not attempt to re-sign a document with a corrupted signature.","breadcrumbs":"Failure Modes » Tampered Signature","id":"1208","title":"Tampered Signature"},"1209":{"body":"What happened: The document content was modified after signatures were applied. JACS stores an integrity hash of the agreement-relevant fields at signing time, and any body modification causes a mismatch. Error message: Agreement verification failed: agreement hashes do not match What to do: The document body no longer matches what the agents originally signed. Discard the modified document and go back to the last known-good version. If the modification was intentional (e.g., an amendment), create a new agreement on the updated document and collect fresh signatures from all parties.","breadcrumbs":"Failure Modes » Tampered Document Body","id":"1209","title":"Tampered Document Body"},"121":{"body":"JACS signatures are language-agnostic. A document signed by a Rust agent verifies identically in Python and Node.js, and vice versa. This holds for both Ed25519 and post-quantum (ML-DSA-87/pq2025) algorithms. This is tested on every commit: Rust generates signed fixtures, then Python calls verify_standalone() and Node.js calls verifyStandalone() to verify them. Each binding also countersigns the fixture with a different algorithm, proving round-trip interoperability. Test sources: Rust fixture generator: jacs/tests/cross_language/mod.rs Python consumer: jacspy/tests/test_cross_language.py Node.js consumer: jacsnpm/test/cross-language.test.js","breadcrumbs":"Verifying Signed Documents » Cross-Language Verification","id":"121","title":"Cross-Language Verification"},"1210":{"body":"What happened: sign_agreement succeeded but save() was never called -- for example, a storage backend failure or process interruption before persistence. Error message: None. This is not an error. After sign_agreement returns successfully, the signed document is immediately retrievable and verifiable from in-memory storage. What to do: Retry the save() call to persist to disk. The in-memory state is consistent: you can retrieve the document with get_document, verify it with check_agreement, serialize it, and transfer it to other agents for additional signatures -- all without saving first.","breadcrumbs":"Failure Modes » In-Memory Consistency After Signing","id":"1210","title":"In-Memory Consistency After Signing"},"1211":{"body":"Creating and Using Agreements - Agreement creation and signing workflow Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details and signature verification","breadcrumbs":"Failure Modes » See Also","id":"1211","title":"See Also"},"1212":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1212","title":"Testing"},"1213":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1213","title":"Testing Fundamentals"},"1214":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1214","title":"Test Agent Setup"},"1215":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1215","title":"Test Fixtures"},"1216":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1216","title":"Unit Testing"},"1217":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1217","title":"Testing Document Operations"},"1218":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1218","title":"Testing Agreements"},"1219":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1219","title":"Agreement Completion Semantics (Strict)"},"122":{"body":"When verifying a document, JACS resolves the signer's public key in a configurable order. Set JACS_KEY_RESOLUTION to control this: Value Source local Local trust store (added via trust_agent) dns DNS TXT record lookup hai HAI key distribution service Default: local,hai. Example: JACS_KEY_RESOLUTION=local,dns,hai.","breadcrumbs":"Verifying Signed Documents » Key Resolution Order","id":"122","title":"Key Resolution Order"},"1220":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1220","title":"Two-Agent Agreement Harness (Separate Agents)"},"1221":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1221","title":"Testing Request/Response Signing"},"1222":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1222","title":"Integration Testing"},"1223":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1223","title":"Testing MCP Integration"},"1224":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1224","title":"Testing HTTP Endpoints"},"1225":{"body":"","breadcrumbs":"Testing » Mocking","id":"1225","title":"Mocking"},"1226":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1226","title":"Mocking JACS Agent"},"1227":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1227","title":"Mocking MCP Transport"},"1228":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1228","title":"Test Coverage"},"1229":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1229","title":"Rust Coverage"},"123":{"body":"Signing says WHO. Attestation says WHO plus WHY. A JACS attestation is a cryptographically signed document that goes beyond proving who signed something. It records why a piece of data should be trusted -- the evidence, the claims, and the reasoning behind that trust.","breadcrumbs":"What Is an Attestation? » What Is an Attestation?","id":"123","title":"What Is an Attestation?"},"1230":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1230","title":"Python Coverage"},"1231":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1231","title":"Node.js Coverage"},"1232":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1232","title":"CI/CD Integration"},"1233":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1233","title":"GitHub Actions"},"1234":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1234","title":"Test Environment Variables"},"1235":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1235","title":"RAII Test Fixtures (Rust)"},"1236":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1236","title":"TrustTestGuard Pattern"},"1237":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1237","title":"Property-Based Testing"},"1238":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1238","title":"Key Properties to Test"},"1239":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1239","title":"Fuzzing"},"124":{"body":"sign_message() create_attestation() Proves Who signed it Who signed it + why it's trustworthy Contains Signature + hash Signature + hash + subject + claims + evidence Use case Data integrity Trust decisions, audit trails, compliance Verification Was it tampered with? Was it tampered with? Are the claims valid? Is the evidence fresh?","breadcrumbs":"What Is an Attestation? » Signing vs. Attestation","id":"124","title":"Signing vs. Attestation"},"1240":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1240","title":"Recommended Tool: cargo-fuzz"},"1241":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1241","title":"Priority Fuzz Targets for JACS"},"1242":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1242","title":"Best Practices"},"1243":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1243","title":"1. Isolate Tests"},"1244":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1244","title":"2. Test Edge Cases"},"1245":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1245","title":"3. Test Security Properties"},"1246":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1246","title":"4. Test Error Handling"},"1247":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1247","title":"See Also"},"1248":{"body":"Use MCP when the boundary is model-to-tool inside an application or local workstation. Use A2A when the boundary is agent-to-agent across organizations or services.","breadcrumbs":"MCP Overview » MCP Overview","id":"1248","title":"MCP Overview"},"1249":{"body":"There are three supported ways to use JACS with MCP today: Run jacs mcp when you want a ready-made MCP server with the broadest tool surface. Wrap an existing MCP transport when you already have an MCP server or client and want signed JSON-RPC. Register JACS as MCP tools when you want the model to call signing, verification, agreement, A2A, or trust operations directly.","breadcrumbs":"MCP Overview » Choose The MCP Path","id":"1249","title":"Choose The MCP Path"},"125":{"body":"","breadcrumbs":"What Is an Attestation? » Key Concepts","id":"125","title":"Key Concepts"},"1250":{"body":"Runtime Best starting point What it gives you Rust jacs-mcp Full MCP server with document, agreement, trust, A2A, and audit tools Python jacs.mcp or jacs.adapters.mcp Local SSE transport security or FastMCP tool registration Node.js @hai.ai/jacs/mcp Transport proxy or MCP tool registration for existing SDK-based servers","breadcrumbs":"MCP Overview » Best Fit By Runtime","id":"1250","title":"Best Fit By Runtime"},"1251":{"body":"Python MCP wrappers are local-only. JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback URLs. Unsigned fallback is off by default. Both Python and Node fail closed unless you explicitly allow unsigned fallback. Node has two factories. createJACSTransportProxy() takes a loaded JacsClient or JacsAgent; createJACSTransportProxyAsync() is the config-path variant.","breadcrumbs":"MCP Overview » Important Constraints","id":"1251","title":"Important Constraints"},"1252":{"body":"Install the unified binary and start the MCP server: cargo install jacs-cli\njacs mcp The MCP server is built into the jacs binary (stdio transport only, no HTTP). It includes document signing, agreements, trust store operations, A2A tools, and security audit tools. See jacs-mcp/README.md in the repo for the full tool list and client configuration examples.","breadcrumbs":"MCP Overview » 1. Ready-Made Server: jacs mcp","id":"1252","title":"1. Ready-Made Server: jacs mcp"},"1253":{"body":"","breadcrumbs":"MCP Overview » 2. Transport Security Around Your Existing MCP Code","id":"1253","title":"2. Transport Security Around Your Existing MCP Code"},"1254":{"body":"Use jacs.mcp when you already have a FastMCP server or client and want transparent signing around the SSE transport: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\") For clients: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") Helpful utilities in the same module: create_jacs_mcp_server() for a one-line FastMCP server jacs_middleware() for explicit Starlette middleware wiring jacs_call() for one-off authenticated local calls See Python MCP Integration for the detailed patterns.","breadcrumbs":"MCP Overview » Python","id":"1254","title":"Python"},"1255":{"body":"Use the transport proxy when you already have an MCP transport: import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); If you only have a config path: import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); See Node.js MCP Integration for examples and tool registration.","breadcrumbs":"MCP Overview » Node.js","id":"1255","title":"Node.js"},"1256":{"body":"This is different from transport security. Here the model gets explicit MCP tools such as jacs_sign_document, jacs_verify_document, agreement helpers, and trust helpers.","breadcrumbs":"MCP Overview » 3. Register JACS Operations As MCP Tools","id":"1256","title":"3. Register JACS Operations As MCP Tools"},"1257":{"body":"from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\")\nregister_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client)","breadcrumbs":"MCP Overview » Python","id":"1257","title":"Python"},"1258":{"body":"import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The Node tool set is intentionally smaller than the Rust MCP server. Use jacs mcp when you need the largest supported MCP surface.","breadcrumbs":"MCP Overview » Node.js","id":"1258","title":"Node.js"},"1259":{"body":"jacs-mcp/README.md jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js","breadcrumbs":"MCP Overview » Example Paths In This Repo","id":"1259","title":"Example Paths In This Repo"},"126":{"body":"What is being attested. Every attestation targets a specific subject -- an artifact, agent, workflow, or identity. The subject is identified by type, ID, and cryptographic digests.","breadcrumbs":"What Is an Attestation? » Subject","id":"126","title":"Subject"},"1260":{"body":"Python MCP Integration Node.js MCP Integration A2A Interoperability Python Framework Adapters","breadcrumbs":"MCP Overview » Related Guides","id":"1260","title":"Related Guides"},"1261":{"body":"Use A2A when your agent needs to be discoverable and verifiable by another service, team, or organization. This is the cross-boundary story; MCP is the inside-the-app story.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1261","title":"A2A Interoperability"},"1262":{"body":"Agent Cards with JACS provenance metadata Signed artifacts such as a2a-task or a2a-message Trust policy for deciding whether another agent is acceptable Chain of custody via parent signatures","breadcrumbs":"A2A Interoperability » What JACS Adds To A2A","id":"1262","title":"What JACS Adds To A2A"},"1263":{"body":"","breadcrumbs":"A2A Interoperability » The Core Flow","id":"1263","title":"The Core Flow"},"1264":{"body":"Python: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\ncard = client.export_agent_card(url=\"http://localhost:8080\") Node.js: import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const card = client.exportAgentCard();","breadcrumbs":"A2A Interoperability » 1. Export An Agent Card","id":"1264","title":"1. Export An Agent Card"},"1265":{"body":"Python has the strongest first-class server helpers today. Quick demo server: from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", url=\"http://localhost:8080\",\n).serve(port=8080) Production FastAPI mounting: from jacs.a2a_server import create_a2a_app, jacs_a2a_routes app = create_a2a_app(client, title=\"My A2A Agent\")\n# or:\n# app.include_router(jacs_a2a_routes(client)) Node.js has two discovery helpers: client.getA2A().listen(port) for a minimal demo server jacsA2AMiddleware(client, options) for mounting discovery routes in an existing Express app import express from 'express';\nimport { jacsA2AMiddleware } from '@hai.ai/jacs/a2a-server'; const app = express();\napp.use(jacsA2AMiddleware(client, { url: 'http://localhost:3000' }));\napp.listen(3000);","breadcrumbs":"A2A Interoperability » 2. Serve Discovery Documents","id":"1265","title":"2. Serve Discovery Documents"},"1266":{"body":"Python: signed = client.sign_artifact({\"taskId\": \"t-1\", \"operation\": \"classify\"}, \"task\")\nresult = client.get_a2a().verify_wrapped_artifact(signed)\nassert result[\"valid\"] Node.js: const signed = await client.signArtifact( { taskId: 't-1', operation: 'classify' }, 'task',\n); const result = await client.verifyArtifact(signed);\nconsole.log(result.valid);","breadcrumbs":"A2A Interoperability » 3. Sign And Verify Artifacts","id":"1266","title":"3. Sign And Verify Artifacts"},"1267":{"body":"Trust policy answers a different question from cryptographic verification. Trust policy : should this remote agent be admitted? Artifact verification : is this specific signed payload valid? The current policy meanings are: Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store That means verified is about JACS provenance on the Agent Card , not about a promise that every foreign key has already been resolved.","breadcrumbs":"A2A Interoperability » Trust Policies","id":"1267","title":"Trust Policies"},"1268":{"body":"a2a = client.get_a2a()\nassessment = a2a.assess_remote_agent(remote_card_json, policy=\"strict\") if assessment[\"allowed\"]: result = a2a.verify_wrapped_artifact(artifact, assess_trust=True)","breadcrumbs":"A2A Interoperability » Python","id":"1268","title":"Python"},"1269":{"body":"const a2a = client.getA2A();\nconst assessment = a2a.assessRemoteAgent(remoteCardJson); if (assessment.allowed) { const result = await a2a.verifyWrappedArtifact(signedArtifact);\n}","breadcrumbs":"A2A Interoperability » Node.js","id":"1269","title":"Node.js"},"127":{"body":"What you assert about the subject. Claims are structured statements with a name, value, optional confidence score (0.0-1.0), and assurance level (self-asserted, verified, or independently-attested).","breadcrumbs":"What Is an Attestation? » Claims","id":"127","title":"Claims"},"1270":{"body":"Use the trust store when you want explicit admission: Export the agent document with share_agent() / shareAgent() Exchange the public key with share_public_key() / getPublicKey() Add the remote agent with trust_agent_with_key() / trustAgentWithKey() This is the cleanest path into strict policy.","breadcrumbs":"A2A Interoperability » Bootstrap Patterns","id":"1270","title":"Bootstrap Patterns"},"1271":{"body":"Python : jacs.a2a_server is the clearest full discovery story. Node.js : jacsA2AMiddleware() serves five .well-known routes from Express, but the generated jwks.json and jacs-pubkey.json payloads are still placeholder metadata. listen() is intentionally smaller and only suitable for demos.","breadcrumbs":"A2A Interoperability » Current Runtime Differences","id":"1271","title":"Current Runtime Differences"},"1272":{"body":"jacs-mcp/README.md jacspy/tests/test_a2a_server.py jacsnpm/src/a2a-server.js jacsnpm/examples/a2a-agent-example.js jacs/tests/a2a_cross_language_tests.rs","breadcrumbs":"A2A Interoperability » Example Paths In This Repo","id":"1272","title":"Example Paths In This Repo"},"1273":{"body":"Three focused mini-guides to get your JACS agent working with A2A. Guide What You'll Do Time 1. Serve Publish your Agent Card so other agents can find you 2 min 2. Discover & Trust Find remote agents and assess their trustworthiness 2 min 3. Exchange Sign and verify A2A artifacts with chain of custody 3 min Single-page version: See the A2A Quick Start at the repo root for a 10-line journey.","breadcrumbs":"A2A Quickstart » A2A Quickstart","id":"1273","title":"A2A Quickstart"},"1274":{"body":"Already using the A2A protocol? Here's what JACS adds -- and what stays the same.","breadcrumbs":"A2A Quickstart » JACS for A2A Developers","id":"1274","title":"JACS for A2A Developers"},"1275":{"body":"Agent Cards follow the v0.4.0 shape. Your existing Agent Card fields (name, description, skills, url) are preserved. Discovery uses /.well-known/agent-card.json. No new endpoints are required for basic interop. JSON-RPC transport is untouched. JACS works alongside A2A, not instead of it.","breadcrumbs":"A2A Quickstart » What Stays the Same","id":"1275","title":"What Stays the Same"},"1276":{"body":"A2A Alone With JACS Agent Card has no signature Agent Card is JWS-signed + JWKS published Artifacts are unsigned payloads Artifacts carry jacsSignature with signer ID, algorithm, and timestamp Trust is transport-level (TLS) Trust is data-level -- signatures persist offline No chain of custody parent_signatures link artifacts into a verifiable chain No standard trust policy open / verified / strict policies built in","breadcrumbs":"A2A Quickstart » What JACS Adds","id":"1276","title":"What JACS Adds"},"1277":{"body":"If you already serve an Agent Card, adding JACS provenance takes two steps: Step 1: Add the JACS extension to your Agent Card's capabilities: { \"capabilities\": { \"extensions\": [{ \"uri\": \"urn:jacs:provenance-v1\", \"description\": \"JACS cryptographic document signing\", \"required\": false }] }\n} Step 2: Sign artifacts before sending them: from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\n# Wrap your existing artifact payload\nsigned = client.sign_artifact(your_existing_artifact, \"task\")\n# Send `signed` instead of the raw artifact Receiving agents that don't understand JACS will ignore the extra fields. Receiving agents that do understand JACS can verify the signature and assess trust.","breadcrumbs":"A2A Quickstart » Minimal Integration (Add JACS to Existing A2A Code)","id":"1277","title":"Minimal Integration (Add JACS to Existing A2A Code)"},"1278":{"body":"JACS generates two key pairs per agent: Post-quantum (ML-DSA-87) for JACS document signatures -- future-proof Traditional (RSA/ECDSA) for JWS Agent Card signatures -- A2A ecosystem compatibility This means your agent is compatible with both the current A2A ecosystem and quantum-resistant verification.","breadcrumbs":"A2A Quickstart » Dual Key Architecture","id":"1278","title":"Dual Key Architecture"},"1279":{"body":"Q: pip install jacs[a2a-server] fails. A: The a2a-server extra requires Python 3.10+ and adds FastAPI + uvicorn. If you only need signing (not serving), use pip install jacs with no extras. Q: discover_and_assess returns jacs_registered: false. A: The remote agent's Agent Card does not include the urn:jacs:provenance-v1 extension. This is normal for non-JACS A2A agents. With the open trust policy, they are still allowed; with verified, they are rejected. Q: Verification returns valid: true but trust.allowed: false. A: The signature is cryptographically correct, but the trust policy rejected the signer. With strict policy, the signer must be in your local trust store. Add them with a2a.trust_a2a_agent(card_json). Q: sign_artifact raises \"no agent loaded\". A: Call JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") or JacsClient(config_path=...) before signing. The client must have a loaded agent with keys. Q: Agent Card export returns empty skills. A: Skills are derived from jacsServices in the agent definition. Pass skills=[...] to export_agent_card() to override, or define services when creating the agent. Q: My existing A2A client doesn't understand the JACS fields. A: This is expected. JACS fields (jacsId, jacsSignature, jacsSha256) are additive. Non-JACS clients should ignore unknown fields per JSON convention. If a client rejects them, strip JACS fields before sending by extracting signed[\"payload\"]. Q: How do I verify artifacts from agents I've never seen before? A: Use JACS_KEY_RESOLUTION to configure key lookup. Set JACS_KEY_RESOLUTION=local,hai to check your local cache first, then the HAI key service. For offline-only verification, set JACS_KEY_RESOLUTION=local.","breadcrumbs":"A2A Quickstart » Troubleshooting FAQ","id":"1279","title":"Troubleshooting FAQ"},"128":{"body":"What supports the claims. Evidence references link to external proofs (A2A messages, email headers, JWT tokens, TLS notary sessions) with their own digests and timestamps.","breadcrumbs":"What Is an Attestation? » Evidence","id":"128","title":"Evidence"},"1280":{"body":"A2A Interoperability Reference -- Full API reference, well-known documents, MCP integration Trust Store -- Managing trusted agents Express Middleware -- Add A2A to existing Express apps Framework Adapters -- Auto-sign with LangChain, FastAPI, CrewAI Observability & Monitoring Guide -- Monitor signing and verification events Hero Demo (Python) -- 3-agent trust verification example Hero Demo (Node.js) -- Same demo in TypeScript","breadcrumbs":"A2A Quickstart » Next Steps","id":"1280","title":"Next Steps"},"1281":{"body":"Make your JACS agent discoverable by other A2A agents. Prerequisites: pip install jacs[a2a-server] (Python) or npm install @hai.ai/jacs express (Node.js). Python from jacs.a2a import JACSA2AIntegration JACSA2AIntegration.quickstart(url=\"http://localhost:8080\").serve(port=8080) Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Serve Your Agent Card","id":"1281","title":"Serve Your Agent Card"},"1282":{"body":"from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.a2a_server import jacs_a2a_routes app = FastAPI()\nclient = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nrouter = jacs_a2a_routes(client)\napp.include_router(router) Node.js (Express) const express = require('express');\nconst { JacsClient } = require('@hai.ai/jacs/client');\nconst { jacsA2AMiddleware } = require('@hai.ai/jacs/a2a-server'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express();\napp.use(jacsA2AMiddleware(client));\napp.listen(8080); Your agent is now discoverable at http://localhost:8080/.well-known/agent-card.json.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Production: Mount into Your Own FastAPI App","id":"1282","title":"Production: Mount into Your Own FastAPI App"},"1283":{"body":"All five .well-known endpoints are served automatically: Endpoint Purpose /.well-known/agent-card.json A2A Agent Card with JWS signature /.well-known/jwks.json JWK set for A2A verifiers /.well-known/jacs-agent.json JACS agent descriptor /.well-known/jacs-pubkey.json JACS public key /.well-known/jacs-extension.json JACS provenance extension descriptor The Agent Card includes the urn:jacs:provenance-v1 extension in capabilities.extensions, signaling to other JACS agents that your agent supports cryptographic provenance.","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » What Gets Served","id":"1283","title":"What Gets Served"},"1284":{"body":"Discover & Trust Remote Agents -- Find other agents and assess their trustworthiness Exchange Signed Artifacts -- Sign and verify A2A artifacts A2A Interoperability Reference -- Full API reference","breadcrumbs":"A2A Quickstart » Serve Your Agent Card » Next Steps","id":"1284","title":"Next Steps"},"1285":{"body":"Find other A2A agents and decide whether to trust them. Python from jacs.a2a_discovery import discover_and_assess_sync result = discover_and_assess_sync(\"https://agent.example.com\")\nif result[\"allowed\"]: print(f\"Trusted: {result['card']['name']} ({result['trust_level']})\")","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Discover & Trust Remote Agents","id":"1285","title":"Discover & Trust Remote Agents"},"1286":{"body":"For strict policy, agents must be in your local trust store: from jacs.client import JacsClient\nfrom jacs.a2a import JACSA2AIntegration client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\na2a = JACSA2AIntegration(client, trust_policy=\"strict\") # Assess a remote agent's trustworthiness\nassessment = a2a.assess_remote_agent(remote_card_json)\nprint(f\"JACS registered: {assessment['jacs_registered']}\")\nprint(f\"Allowed: {assessment['allowed']}\") # Add to trust store (verifies agent's self-signature first)\na2a.trust_a2a_agent(remote_card_json)","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1286","title":"Add to Your Trust Store"},"1287":{"body":"from jacs.a2a_discovery import discover_agent, discover_and_assess card = await discover_agent(\"https://agent.example.com\")\nresult = await discover_and_assess(\"https://agent.example.com\", policy=\"verified\", client=client) Node.js const { discoverAndAssess } = require('@hai.ai/jacs/a2a-discovery'); const result = await discoverAndAssess('https://agent.example.com');\nif (result.allowed) { console.log(`Trusted: ${result.card.name} (${result.trustLevel})`);\n}","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Async API","id":"1287","title":"Async API"},"1288":{"body":"const { JacsClient } = require('@hai.ai/jacs/client');\nconst { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst a2a = new JACSA2AIntegration(client, 'strict'); // Assess a remote agent\nconst assessment = a2a.assessRemoteAgent(remoteCardJson);\nconsole.log(`JACS registered: ${assessment.jacsRegistered}`);\nconsole.log(`Allowed: ${assessment.allowed}`); // Add to trust store\na2a.trustA2AAgent(remoteAgentId);","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Add to Your Trust Store","id":"1288","title":"Add to Your Trust Store"},"1289":{"body":"Policy Behavior open Accept all agents without verification verified Require the JACS provenance extension (urn:jacs:provenance-v1) in the agent card ( default ) strict Require the signer to be in the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Trust Policies","id":"1289","title":"Trust Policies"},"129":{"body":"How the attestation was produced. When one attestation builds on another -- for example, a review attestation that references an earlier scan attestation -- the derivation chain captures the full transformation history.","breadcrumbs":"What Is an Attestation? » Derivation Chain","id":"129","title":"Derivation Chain"},"1290":{"body":"1. Discover -- Fetch /.well-known/agent-card.json from a remote URL\n2. Assess -- Check for JACS extension, verify signatures\n3. Decide -- Trust policy determines if the agent is allowed\n4. Trust -- Optionally add the agent to your local trust store With open policy, all agents pass step 3. With verified, agents must have the JACS extension. With strict, agents must be explicitly added to the trust store in step 4 before they pass.","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » How Trust Flows","id":"1290","title":"How Trust Flows"},"1291":{"body":"Exchange Signed Artifacts -- Sign and verify artifacts with trusted agents Serve Your Agent Card -- Make your agent discoverable Trust Store -- Managing the local trust store","breadcrumbs":"A2A Quickstart » Discover & Trust Remote Agents » Next Steps","id":"1291","title":"Next Steps"},"1292":{"body":"Sign artifacts with cryptographic provenance and verify artifacts from other agents. Python","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Exchange Signed Artifacts","id":"1292","title":"Exchange Signed Artifacts"},"1293":{"body":"from jacs.client import JacsClient client = JacsClient.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Sign an artifact\nsigned = client.sign_artifact({\"action\": \"classify\", \"input\": \"data\"}, \"task\") # Verify it (with trust assessment)\na2a = client.get_a2a()\nresult = a2a.verify_wrapped_artifact(signed, assess_trust=True)\nprint(f\"Valid: {result['valid']}, Allowed: {result['trust']['allowed']}\")","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1293","title":"Sign and Verify"},"1294":{"body":"When multiple agents process data in sequence, link artifacts into a verifiable chain: # Agent A signs step 1\nstep1 = client_a.sign_artifact({\"step\": 1, \"data\": \"raw\"}, \"message\") # Agent B signs step 2, referencing step 1 as parent\nstep2 = client_b.sign_artifact( {\"step\": 2, \"data\": \"processed\"}, \"message\", parent_signatures=[step1],\n) # Verify the full chain\nresult = a2a.verify_wrapped_artifact(step2)\nassert result[\"valid\"]\nassert result[\"parent_signatures_valid\"]","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1294","title":"Chain of Custody"},"1295":{"body":"chain = a2a.create_chain_of_custody([step1, step2])\n# chain contains: steps (ordered), signers, timestamps, validity Node.js","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Build an Audit Trail","id":"1295","title":"Build an Audit Trail"},"1296":{"body":"const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); // Sign an artifact\nconst signed = await client.signArtifact({ action: 'classify', input: 'data' }, 'task'); // Verify it\nconst a2a = client.getA2A();\nconst result = a2a.verifyWrappedArtifact(signed);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Sign and Verify","id":"1296","title":"Sign and Verify"},"1297":{"body":"// Agent A signs step 1\nconst step1 = await clientA.signArtifact({ step: 1, data: 'raw' }, 'message'); // Agent B signs step 2, referencing step 1\nconst step2 = await clientB.signArtifact( { step: 2, data: 'processed' }, 'message', [step1],\n); // Verify the full chain\nconst result = a2a.verifyWrappedArtifact(step2);\nconsole.log(`Chain valid: ${result.valid}`);\nconsole.log(`Parents valid: ${result.parentSignaturesValid}`);","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Chain of Custody","id":"1297","title":"Chain of Custody"},"1298":{"body":"The artifact_type parameter labels the payload for downstream processing: Type Use Case task Task assignments, work requests message Inter-agent messages result Task results, responses You can use any string -- these are conventions, not enforced types.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Artifact Types","id":"1298","title":"Artifact Types"},"1299":{"body":"Every signed artifact includes: Field Description jacsId Unique document ID jacsSignature Signer ID, algorithm, timestamp, and base64 signature jacsSha256 Content hash for integrity verification jacsType The artifact type label jacsParentSignatures Parent artifacts for chain of custody (if any) payload The original artifact data Non-JACS receivers can safely ignore the jacs* fields and extract payload directly.","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » What Gets Signed","id":"1299","title":"What Gets Signed"},"13":{"body":"go get github.com/HumanAssisted/JACS/jacsgo Rust, Python, and Node quickstart flows create or load a persistent agent and return agent metadata including config and key paths.","breadcrumbs":"Introduction » Go","id":"13","title":"Go"},"130":{"body":"Layer 2: Adapters (A2A, email, JWT, TLSNotary) |\nLayer 1: Attestation Engine (create, verify, lift, DSSE export) |\nLayer 0: JACS Core (sign, verify, agreements, storage) Attestations build on top of existing JACS signing. Every attestation is also a valid signed JACS document. You can verify an attestation with verify() for signature checks, or use verify_attestation() for the full trust evaluation.","breadcrumbs":"What Is an Attestation? » Architecture Layers","id":"130","title":"Architecture Layers"},"1300":{"body":"Serve Your Agent Card -- Make your agent discoverable Discover & Trust Remote Agents -- Find and assess other agents A2A Interoperability Reference -- Full API reference Hero Demo (Python) -- 3-agent trust verification example","breadcrumbs":"A2A Quickstart » Exchange Signed Artifacts » Next Steps","id":"1300","title":"Next Steps"},"1301":{"body":"This guide helps you choose the right JACS API for your use case.","breadcrumbs":"Sign vs. Attest Decision Guide » Sign vs. Attest: When to Use Which","id":"1301","title":"Sign vs. Attest: When to Use Which"},"1302":{"body":"Start here: What do you need to prove? \"This data hasn't been tampered with\" Use sign_message() / signMessage() This gives you a cryptographic signature and integrity hash. \"This data hasn't been tampered with AND here's why it should be trusted\" Use create_attestation() / createAttestation() This gives you signature + integrity + claims + evidence + derivation chain. \"I have an existing signed document and want to add trust context\" Use lift_to_attestation() / liftToAttestation() This wraps an existing JACS-signed document into a new attestation. \"I need to export a trust proof for external systems\" Use export_attestation_dsse() / exportAttestationDsse() This creates an in-toto DSSE envelope compatible with SLSA and Sigstore. \"I need to send signed data to another agent or service\" Use sign_artifact() / signArtifact() via the A2A integration. This wraps your data in a JACS provenance envelope for cross-boundary exchange. See A2A Interoperability and A2A + Attestation Composition .","breadcrumbs":"Sign vs. Attest Decision Guide » Decision Tree","id":"1302","title":"Decision Tree"},"1303":{"body":"Scenario API Output Log an AI action sign_message() Signed document Record a human review decision create_attestation() Attestation with claims Attach evidence from another system create_attestation() with evidence Attestation with evidence refs Wrap an existing signed doc with trust context lift_to_attestation() New attestation referencing original Export for SLSA/Sigstore export_attestation_dsse() DSSE envelope Verify signature only verify() Valid/invalid + signer Verify signature + claims + evidence verify_attestation(full=True) Full verification result Exchange artifact with another agent sign_artifact() / A2A Signed wrapped artifact","breadcrumbs":"Sign vs. Attest Decision Guide » Quick Reference","id":"1303","title":"Quick Reference"},"1304":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Examples","id":"1304","title":"Examples"},"1305":{"body":"signed = client.sign_message({\"action\": \"approve\"})\nresult = client.verify(signed.raw_json)\n# result[\"valid\"] == True","breadcrumbs":"Sign vs. Attest Decision Guide » Just need integrity? Use signing.","id":"1305","title":"Just need integrity? Use signing."},"1306":{"body":"att = client.create_attestation( subject={\"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n)\nresult = client.verify_attestation(att.raw_json, full=True)\n# result[\"valid\"] == True, result[\"evidence\"] == [...]","breadcrumbs":"Sign vs. Attest Decision Guide » Need trust context? Use attestation.","id":"1306","title":"Need trust context? Use attestation."},"1307":{"body":"signed = client.sign_message({\"content\": \"original\"})\natt = client.lift_to_attestation(signed, [{\"name\": \"approved\", \"value\": True}])\n# att now has attestation metadata referencing the original document","breadcrumbs":"Sign vs. Attest Decision Guide » Already signed? Lift to attestation.","id":"1307","title":"Already signed? Lift to attestation."},"1308":{"body":"","breadcrumbs":"Sign vs. Attest Decision Guide » Common Patterns","id":"1308","title":"Common Patterns"},"1309":{"body":"Use sign_message() for each tool call or action. The signature proves the agent took the action and the data hasn't been modified.","breadcrumbs":"Sign vs. Attest Decision Guide » AI Agent Action Logging","id":"1309","title":"AI Agent Action Logging"},"131":{"body":"from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\") # Sign a document (Layer 0)\nsigned = client.sign_message({\"action\": \"approve\", \"amount\": 100}) # Attest WHY it's trustworthy (Layer 1)\natt = client.create_attestation( subject={\"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": \"...\"}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.95}],\n) # Verify the full trust chain\nresult = client.verify_attestation(att.raw_json, full=True)\nprint(f\"Valid: {result['valid']}\")","breadcrumbs":"What Is an Attestation? » Quick Example","id":"131","title":"Quick Example"},"1310":{"body":"Use create_attestation() with claims like reviewed_by: human and confidence: 0.95. This creates an auditable record that a human reviewed and approved the output.","breadcrumbs":"Sign vs. Attest Decision Guide » Human Review Attestation","id":"1310","title":"Human Review Attestation"},"1311":{"body":"Use create_attestation() with a derivation field to capture input/output relationships. Each step attests to its own transformation with references to upstream attestations.","breadcrumbs":"Sign vs. Attest Decision Guide » Multi-step Pipeline","id":"1311","title":"Multi-step Pipeline"},"1312":{"body":"Use export_attestation_dsse() to generate an in-toto DSSE envelope that external systems (SLSA verifiers, Sigstore) can validate independently.","breadcrumbs":"Sign vs. Attest Decision Guide » Cross-system Verification","id":"1312","title":"Cross-system Verification"},"1313":{"body":"This step-by-step tutorial walks you through adding attestation support to an existing JACS workflow. You'll go from basic signing to full attestation creation and verification in under 5 minutes.","breadcrumbs":"Attestation Tutorial » Tutorial: Add Attestations to Your Workflow","id":"1313","title":"Tutorial: Add Attestations to Your Workflow"},"1314":{"body":"JACS installed (Python, Node.js, or CLI) Attestation feature enabled (built with --features attestation)","breadcrumbs":"Attestation Tutorial » Prerequisites","id":"1314","title":"Prerequisites"},"1315":{"body":"Use an ephemeral agent for testing (no files on disk): {{#tabs }} {{#tab name=\"Python\" }} from jacs.client import JacsClient client = JacsClient.ephemeral(algorithm=\"ed25519\")\nprint(f\"Agent ID: {client.agent_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { JacsClient } = require('@hai.ai/jacs/client'); const client = await JacsClient.ephemeral('ring-Ed25519');\nconsole.log(`Agent ID: ${client.agentId}`); {{#endtab }} {{#tab name=\"CLI\" }} export JACS_PRIVATE_KEY_PASSWORD=\"YourP@ssw0rd\"\njacs quickstart --algorithm ed25519 {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 1: Create an Agent","id":"1315","title":"Step 1: Create an Agent"},"1316":{"body":"Sign some data to establish the base document: {{#tabs }} {{#tab name=\"Python\" }} signed = client.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const signed = await client.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 2: Sign a Document","id":"1316","title":"Step 2: Sign a Document"},"1317":{"body":"Now add trust context -- why this document should be trusted: {{#tabs }} {{#tab name=\"Python\" }} import hashlib\ncontent_hash = hashlib.sha256(signed.raw_json.encode()).hexdigest()\nattestation = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": signed.document_id, \"digests\": {\"sha256\": content_hash}, }, claims=[ { \"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95, \"assuranceLevel\": \"verified\", } ],\n)\nprint(f\"Attestation ID: {attestation.document_id}\") {{#endtab }} {{#tab name=\"Node.js\" }} const { createHash } = require('crypto');\nconst contentHash = createHash('sha256').update(signed.raw).digest('hex');\nconst attestation = await client.createAttestation({ subject: { type: 'artifact', id: signed.documentId, digests: { sha256: contentHash }, }, claims: [{ name: 'reviewed_by', value: 'human', confidence: 0.95, assuranceLevel: 'verified', }],\n});\nconsole.log(`Attestation ID: ${attestation.documentId}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 3: Create an Attestation","id":"1317","title":"Step 3: Create an Attestation"},"1318":{"body":"","breadcrumbs":"Attestation Tutorial » Step 4: Verify the Attestation","id":"1318","title":"Step 4: Verify the Attestation"},"1319":{"body":"{{#tabs }} {{#tab name=\"Python\" }} result = client.verify_attestation(attestation.raw_json)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Signature OK: {result['crypto']['signature_valid']}\")\nprint(f\"Hash OK: {result['crypto']['hash_valid']}\") {{#endtab }} {{#tab name=\"Node.js\" }} const result = await client.verifyAttestation(attestation.raw);\nconsole.log(`Valid: ${result.valid}`);\nconsole.log(`Signature OK: ${result.crypto.signature_valid}`);\nconsole.log(`Hash OK: ${result.crypto.hash_valid}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Local Verification (fast -- signature + hash only)","id":"1319","title":"Local Verification (fast -- signature + hash only)"},"132":{"body":"Attestation (Layer C) provides trust context: claims, evidence, and derivation chains. It answers \"why should this data be trusted?\" A2A trust policy (Layer B) handles agent admission: \"is this agent allowed to communicate?\" For transport trust decisions, see A2A Interoperability . For how attestation and A2A compose, see A2A + Attestation Composition . For the full three-layer model, see Trust Layers .","breadcrumbs":"What Is an Attestation? » Attestation vs. A2A Trust Policy","id":"132","title":"Attestation vs. A2A Trust Policy"},"1320":{"body":"{{#tabs }} {{#tab name=\"Python\" }} full = client.verify_attestation(attestation.raw_json, full=True)\nprint(f\"Valid: {full['valid']}\")\nprint(f\"Evidence: {full.get('evidence', [])}\")\nprint(f\"Chain: {full.get('chain')}\") {{#endtab }} {{#tab name=\"Node.js\" }} const full = await client.verifyAttestation(attestation.raw, { full: true });\nconsole.log(`Valid: ${full.valid}`);\nconsole.log(`Evidence: ${JSON.stringify(full.evidence)}`);\nconsole.log(`Chain: ${JSON.stringify(full.chain)}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Full Verification (thorough -- includes evidence + derivation chain)","id":"1320","title":"Full Verification (thorough -- includes evidence + derivation chain)"},"1321":{"body":"Evidence references link to external proofs that support your claims: {{#tabs }} {{#tab name=\"Python\" }} attestation_with_evidence = client.create_attestation( subject={ \"type\": \"artifact\", \"id\": \"doc-001\", \"digests\": {\"sha256\": \"abc123...\"}, }, claims=[{\"name\": \"scanned\", \"value\": True, \"confidence\": 1.0}], evidence=[ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, } ],\n) {{#endtab }} {{#tab name=\"Node.js\" }} const attWithEvidence = await client.createAttestation({ subject: { type: 'artifact', id: 'doc-001', digests: { sha256: 'abc123...' }, }, claims: [{ name: 'scanned', value: true, confidence: 1.0 }], evidence: [{ kind: 'custom', digests: { sha256: 'evidence-hash...' }, uri: 'https://scanner.example.com/results/123', collectedAt: '2026-03-04T00:00:00Z', verifier: { name: 'security-scanner', version: '2.0' }, }],\n}); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 5: Add Evidence (Optional)","id":"1321","title":"Step 5: Add Evidence (Optional)"},"1322":{"body":"Export your attestation as a DSSE (Dead Simple Signing Envelope) for compatibility with in-toto, SLSA, and Sigstore: {{#tabs }} {{#tab name=\"Python\" }} envelope = client.export_attestation_dsse(attestation.raw_json)\nprint(f\"Payload type: {envelope['payloadType']}\")\nprint(f\"Signatures: {len(envelope['signatures'])}\") {{#endtab }} {{#tab name=\"Node.js\" }} const envelope = await client.exportAttestationDsse(attestation.raw);\nconsole.log(`Payload type: ${envelope.payloadType}`);\nconsole.log(`Signatures: ${envelope.signatures.length}`); {{#endtab }} {{#endtabs }}","breadcrumbs":"Attestation Tutorial » Step 6: Export as DSSE (Optional)","id":"1322","title":"Step 6: Export as DSSE (Optional)"},"1323":{"body":"Sign vs. Attest decision guide -- when to use which API Attestation error catalog -- understand verification results What is an attestation? -- concept deep dive","breadcrumbs":"Attestation Tutorial » What's Next?","id":"1323","title":"What's Next?"},"1324":{"body":"Evidence adapters normalize external proof sources into JACS attestation claims and evidence references. JACS ships with A2A and Email adapters; you can add your own for JWT tokens, TLSNotary proofs, or any custom evidence source.","breadcrumbs":"Writing a Custom Evidence Adapter » Writing a Custom Evidence Adapter","id":"1324","title":"Writing a Custom Evidence Adapter"},"1325":{"body":"An EvidenceAdapter is a Rust trait with three methods: pub trait EvidenceAdapter: Send + Sync + std::fmt::Debug { /// Returns the kind string (e.g., \"jwt\", \"tlsnotary\", \"custom\"). fn kind(&self) -> &str; /// Normalize raw evidence bytes + metadata into claims + evidence reference. fn normalize( &self, raw: &[u8], metadata: &serde_json::Value, ) -> Result<(Vec, EvidenceRef), Box>; /// Verify a previously created evidence reference. fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result>;\n} The adapter lifecycle: At attestation creation time: normalize() is called with raw evidence bytes and optional metadata. It returns structured claims and an EvidenceRef that will be embedded in the attestation document. At verification time (full tier): verify_evidence() is called with the stored EvidenceRef to re-validate the evidence.","breadcrumbs":"Writing a Custom Evidence Adapter » What Is an EvidenceAdapter?","id":"1325","title":"What Is an EvidenceAdapter?"},"1326":{"body":"normalize() must: Compute content-addressable digests of the raw evidence using compute_digest_set_bytes() Decide whether to embed the evidence (recommended for data under 64KB) Extract meaningful claims from the evidence Set appropriate confidence and assuranceLevel values Include a collectedAt timestamp Return a VerifierInfo identifying your adapter and version normalize() must NOT: Make network calls (normalization should be deterministic and fast) Modify the raw evidence Set confidence to 1.0 unless the evidence is self-verifying (e.g., a valid cryptographic proof)","breadcrumbs":"Writing a Custom Evidence Adapter » The normalize() Contract","id":"1326","title":"The normalize() Contract"},"1327":{"body":"verify_evidence() must: Verify the digest integrity (re-hash and compare) Check freshness (is the collectedAt timestamp within acceptable bounds?) Return a detailed EvidenceVerificationResult with digest_valid, freshness_valid, and human-readable detail verify_evidence() may: Make network calls (for remote evidence resolution) Access the file system (for local evidence files) Return partial results (e.g., digest valid but freshness expired)","breadcrumbs":"Writing a Custom Evidence Adapter » The verify_evidence() Contract","id":"1327","title":"The verify_evidence() Contract"},"1328":{"body":"Here is a complete example of a JWT evidence adapter: use crate::attestation::adapters::EvidenceAdapter;\nuse crate::attestation::digest::compute_digest_set_bytes;\nuse crate::attestation::types::*;\nuse serde_json::Value;\nuse std::error::Error; #[derive(Debug)]\npub struct JwtAdapter; impl EvidenceAdapter for JwtAdapter { fn kind(&self) -> &str { \"jwt\" } fn normalize( &self, raw: &[u8], metadata: &Value, ) -> Result<(Vec, EvidenceRef), Box> { // 1. Parse the JWT (header.payload.signature) let jwt_str = std::str::from_utf8(raw)?; let parts: Vec<&str> = jwt_str.split('.').collect(); if parts.len() != 3 { return Err(\"Invalid JWT: expected 3 dot-separated parts\".into()); } // 2. Decode the payload (base64url) let payload_bytes = base64::Engine::decode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, parts[1], )?; let payload: Value = serde_json::from_slice(&payload_bytes)?; // 3. Compute content-addressable digests let digests = compute_digest_set_bytes(raw); // 4. Extract claims (only non-PII fields per TRD Decision 14) let mut claims = vec![]; if let Some(iss) = payload.get(\"iss\") { claims.push(Claim { name: \"jwt-issuer\".into(), value: iss.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: iss.as_str().map(String::from), issued_at: Some(crate::time_utils::now_rfc3339()), }); } if let Some(sub) = payload.get(\"sub\") { claims.push(Claim { name: \"jwt-subject\".into(), value: sub.clone(), confidence: Some(0.8), assurance_level: Some(AssuranceLevel::Verified), issuer: None, issued_at: None, }); } // 5. Build the evidence reference let evidence = EvidenceRef { kind: EvidenceKind::Jwt, digests, uri: metadata.get(\"uri\").and_then(|v| v.as_str()).map(String::from), embedded: raw.len() < 65536, embedded_data: if raw.len() < 65536 { Some(Value::String(jwt_str.to_string())) } else { None }, collected_at: crate::time_utils::now_rfc3339(), resolved_at: None, sensitivity: EvidenceSensitivity::Restricted, // JWTs may contain PII verifier: VerifierInfo { name: \"jacs-jwt-adapter\".into(), version: env!(\"CARGO_PKG_VERSION\").into(), }, }; Ok((claims, evidence)) } fn verify_evidence( &self, evidence: &EvidenceRef, ) -> Result> { // Re-verify the digest let digest_valid = if let Some(ref data) = evidence.embedded_data { let raw = data.as_str().unwrap_or(\"\").as_bytes(); let recomputed = compute_digest_set_bytes(raw); recomputed.sha256 == evidence.digests.sha256 } else { // Cannot verify without embedded data or fetchable URI false }; // Check freshness (example: 5 minute max age) let freshness_valid = true; // Implement actual time check Ok(EvidenceVerificationResult { kind: \"jwt\".into(), digest_valid, freshness_valid, detail: if digest_valid { \"JWT digest verified\".into() } else { \"JWT digest mismatch or data unavailable\".into() }, }) }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Step-by-Step: Building a JWT Adapter","id":"1328","title":"Step-by-Step: Building a JWT Adapter"},"1329":{"body":"Write tests that cover: Normal case: Valid evidence normalizes to expected claims Invalid input: Malformed evidence returns a clear error Digest verification: Round-trip through normalize + verify_evidence Empty evidence: Edge case handling #[cfg(test)]\nmod tests { use super::*; use serde_json::json; #[test] fn jwt_normalize_extracts_issuer() { let adapter = JwtAdapter; // Build a minimal JWT (header.payload.signature) let header = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"alg\\\":\\\"RS256\\\"}\", ); let payload = base64::Engine::encode( &base64::engine::general_purpose::URL_SAFE_NO_PAD, b\"{\\\"iss\\\":\\\"auth.example.com\\\",\\\"sub\\\":\\\"user-123\\\"}\", ); let jwt = format!(\"{}.{}.fake-sig\", header, payload); let (claims, evidence) = adapter .normalize(jwt.as_bytes(), &json!({})) .expect(\"normalize should succeed\"); assert!(claims.iter().any(|c| c.name == \"jwt-issuer\")); assert_eq!(evidence.kind, EvidenceKind::Jwt); }\n}","breadcrumbs":"Writing a Custom Evidence Adapter » Testing Your Adapter","id":"1329","title":"Testing Your Adapter"},"133":{"body":"Use attestations when you need to answer questions like: Why should I trust this data? (claims + evidence) Who reviewed it and when? (issuer, timestamps, assurance level) How was it produced? (derivation chain) Can I independently verify the trust chain? (DSSE export, evidence verification) If you only need to prove who signed something and that it hasn't been tampered with, sign_message() is sufficient. See Sign vs. Attest for a detailed decision guide.","breadcrumbs":"What Is an Attestation? » When to Use Attestations","id":"133","title":"When to Use Attestations"},"1330":{"body":"Adapters are registered on the Agent struct via the evidence adapter list. To add your adapter to the default set, modify adapters/mod.rs: pub fn default_adapters() -> Vec> { vec![ Box::new(a2a::A2aAdapter), Box::new(email::EmailAdapter), Box::new(jwt::JwtAdapter), // Add your adapter here ]\n} For runtime registration (without modifying JACS source), use the agent's adapter API (when available in a future release).","breadcrumbs":"Writing a Custom Evidence Adapter » Registering Your Adapter with the Agent","id":"1330","title":"Registering Your Adapter with the Agent"},"1331":{"body":"The EvidenceSensitivity enum controls how evidence is handled: Public: Evidence can be freely shared and embedded Restricted: Evidence should be handled with care; consider redacting PII Confidential: Evidence should not be embedded; use content-addressable URI references only For JWTs and other credential-based evidence, default to Restricted and only include non-PII fields (iss, sub, aud, iat, exp) in claims.","breadcrumbs":"Writing a Custom Evidence Adapter » Privacy Considerations","id":"1331","title":"Privacy Considerations"},"1332":{"body":"JACS provides Python framework adapters for LangChain, FastAPI, CrewAI, and Anthropic. Each adapter can be configured to produce attestations (not just signatures) for tool calls, API requests, and agent actions.","breadcrumbs":"Framework Adapter Attestation Guide » Framework Adapter Attestation Guide","id":"1332","title":"Framework Adapter Attestation Guide"},"1333":{"body":"All framework adapters share these attestation patterns:","breadcrumbs":"Framework Adapter Attestation Guide » Common Patterns","id":"1333","title":"Common Patterns"},"1334":{"body":"When attest=True is enabled on any adapter, it automatically includes these default claims: [ {\"name\": \"framework\", \"value\": \"langchain\", \"confidence\": 1.0}, {\"name\": \"tool_name\", \"value\": \"my_tool\", \"confidence\": 1.0}, {\"name\": \"timestamp\", \"value\": \"2026-03-04T...\", \"confidence\": 1.0},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Default Claims","id":"1334","title":"Default Claims"},"1335":{"body":"Add your own claims to any adapter call: extra_claims = [ {\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}, {\"name\": \"approved\", \"value\": True, \"assuranceLevel\": \"verified\"},\n]","breadcrumbs":"Framework Adapter Attestation Guide » Custom Claims","id":"1335","title":"Custom Claims"},"1336":{"body":"Attach evidence references from external systems: evidence = [ { \"kind\": \"custom\", \"digests\": {\"sha256\": \"abc123...\"}, \"uri\": \"https://scanner.example.com/report/456\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"}, }\n]","breadcrumbs":"Framework Adapter Attestation Guide » Evidence Attachment","id":"1336","title":"Evidence Attachment"},"1337":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » LangChain","id":"1337","title":"LangChain"},"1338":{"body":"Use jacs_wrap_tool_call with attest=True: from jacs.adapters.langchain import jacs_wrap_tool_call\nfrom jacs.client import JacsClient client = JacsClient.quickstart() # Wrap a tool call with attestation\n@jacs_wrap_tool_call(client, attest=True)\ndef my_tool(query: str) -> str: return f\"Result for: {query}\" # The tool call now produces a signed attestation\nresult = my_tool(\"test query\")\n# result.attestation contains the signed attestation document","breadcrumbs":"Framework Adapter Attestation Guide » Enabling Attestation on Tool Calls","id":"1338","title":"Enabling Attestation on Tool Calls"},"1339":{"body":"from jacs.adapters.langchain import signed_tool @signed_tool(client, attest=True, claims=[ {\"name\": \"data_source\", \"value\": \"internal_db\", \"confidence\": 1.0}\n])\ndef lookup_customer(customer_id: str) -> dict: return {\"name\": \"Alice\", \"status\": \"active\"}","breadcrumbs":"Framework Adapter Attestation Guide » Using the signed_tool Decorator","id":"1339","title":"Using the signed_tool Decorator"},"134":{"body":"JACS organizes trust into three distinct layers. Each layer has a clear scope and its own vocabulary. Understanding which layer you need prevents confusion between identity, transport policy, and evidentiary trust.","breadcrumbs":"Trust Layers » JACS Trust Layers","id":"134","title":"JACS Trust Layers"},"1340":{"body":"from jacs.adapters.langchain import with_jacs_signing # Wrap an entire chain with attestation\nsigned_chain = with_jacs_signing( chain=my_chain, client=client, attest=True,\n)","breadcrumbs":"Framework Adapter Attestation Guide » With LangChain Chains","id":"1340","title":"With LangChain Chains"},"1341":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » FastAPI","id":"1341","title":"FastAPI"},"1342":{"body":"The JacsMiddleware can be configured to produce attestations for all responses: from fastapi import FastAPI\nfrom jacs.adapters.fastapi import JacsMiddleware\nfrom jacs.client import JacsClient app = FastAPI()\nclient = JacsClient.quickstart() app.add_middleware( JacsMiddleware, client=client, attest=True, # Produce attestations, not just signatures default_claims=[ {\"name\": \"service\", \"value\": \"my-api\", \"confidence\": 1.0}, ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Middleware","id":"1342","title":"Attestation Middleware"},"1343":{"body":"Use jacs_route for route-level attestation control: from jacs.adapters.fastapi import jacs_route @app.post(\"/approve\")\n@jacs_route(client, attest=True, claims=[ {\"name\": \"action\", \"value\": \"approve\", \"confidence\": 1.0}, {\"name\": \"requires_review\", \"value\": True},\n])\nasync def approve_request(request_id: str): return {\"approved\": True, \"request_id\": request_id} The response headers will include X-JACS-Attestation-Id with the attestation document ID.","breadcrumbs":"Framework Adapter Attestation Guide » Per-Route Attestation","id":"1343","title":"Per-Route Attestation"},"1344":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » CrewAI","id":"1344","title":"CrewAI"},"1345":{"body":"Use jacs_guardrail with attestation mode to create trust-verified task execution: from jacs.adapters.crewai import jacs_guardrail, JacsSignedTool\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @jacs_guardrail(client, attest=True)\ndef verified_analysis(task_result): \"\"\"Guardrail that attests to analysis quality.\"\"\" return task_result","breadcrumbs":"Framework Adapter Attestation Guide » Attestation Guardrails","id":"1345","title":"Attestation Guardrails"},"1346":{"body":"from jacs.adapters.crewai import signed_task @signed_task(client, attest=True, claims=[ {\"name\": \"analysis_type\", \"value\": \"financial\", \"confidence\": 0.9},\n])\ndef analyze_portfolio(data): return {\"risk_score\": 0.3, \"recommendation\": \"hold\"}","breadcrumbs":"Framework Adapter Attestation Guide » Signed Tasks","id":"1346","title":"Signed Tasks"},"1347":{"body":"class MyTool(JacsSignedTool): \"\"\"A CrewAI tool with built-in attestation.\"\"\" name = \"market_data\" description = \"Fetch market data\" attest = True default_claims = [ {\"name\": \"data_source\", \"value\": \"bloomberg\"}, ] def _run(self, ticker: str) -> dict: return {\"ticker\": ticker, \"price\": 150.0}","breadcrumbs":"Framework Adapter Attestation Guide » JacsSignedTool","id":"1347","title":"JacsSignedTool"},"1348":{"body":"","breadcrumbs":"Framework Adapter Attestation Guide » Anthropic","id":"1348","title":"Anthropic"},"1349":{"body":"The Anthropic adapter hooks into Claude tool calls to produce attestations: from jacs.adapters.anthropic import signed_tool, JacsToolHook\nfrom jacs.client import JacsClient client = JacsClient.quickstart() @signed_tool(client, attest=True)\ndef search_database(query: str) -> str: return \"Found 3 results\" # Or use the hook class for more control\nhook = JacsToolHook( client=client, attest=True, default_claims=[ {\"name\": \"model\", \"value\": \"claude-4.6\"}, {\"name\": \"tool_use_id\", \"value\": \"auto\"}, # Auto-filled from tool call ],\n)","breadcrumbs":"Framework Adapter Attestation Guide » Tool Hook Attestation","id":"1349","title":"Tool Hook Attestation"},"135":{"body":"","breadcrumbs":"Trust Layers » The Three Layers","id":"135","title":"The Three Layers"},"1350":{"body":"import anthropic\nfrom jacs.adapters.anthropic import JacsToolHook client = anthropic.Anthropic()\njacs_client = JacsClient.quickstart()\nhook = JacsToolHook(jacs_client, attest=True) # Register tools with JACS attestation\ntools = hook.wrap_tools([ { \"name\": \"get_weather\", \"description\": \"Get weather for a location\", \"input_schema\": {\"type\": \"object\", \"properties\": {\"location\": {\"type\": \"string\"}}}, }\n])","breadcrumbs":"Framework Adapter Attestation Guide » With the Anthropic SDK","id":"1350","title":"With the Anthropic SDK"},"1351":{"body":"All framework attestations use the same JACS verification API: # Verify any attestation (from any framework adapter)\nresult = client.verify_attestation(attestation_json, full=True)\nprint(f\"Valid: {result['valid']}\")\nprint(f\"Framework: {result['claims'][0]['value']}\")\nprint(f\"Evidence: {result.get('evidence', [])}\")","breadcrumbs":"Framework Adapter Attestation Guide » Verifying Framework Attestations","id":"1351","title":"Verifying Framework Attestations"},"1352":{"body":"All adapters respect the strict flag on JacsClient: Permissive (default): Signing/attestation failures log warnings but do not block the operation Strict: Signing/attestation failures raise exceptions and block the operation # Strict mode: attestation failure = operation failure\nclient = JacsClient.quickstart(strict=True) # Permissive mode: attestation failure = warning + continue\nclient = JacsClient.quickstart(strict=False)","breadcrumbs":"Framework Adapter Attestation Guide » Strict vs. Permissive Mode","id":"1352","title":"Strict vs. Permissive Mode"},"1353":{"body":"A2A provenance and attestation serve different purposes. This guide explains when and how to combine them.","breadcrumbs":"A2A + Attestation Composition » A2A + Attestation: Using Both Together","id":"1353","title":"A2A + Attestation: Using Both Together"},"1354":{"body":"Use A2A alone when you need to prove who sent what across agent boundaries. Use attestation alone when you need to record why data should be trusted within a single agent's workflow. Use both when: You send data to another agent AND need to explain why it's trustworthy You receive data from another agent AND want to attest that you reviewed it You're building a multi-agent pipeline where each step adds trust evidence","breadcrumbs":"A2A + Attestation Composition » When You Need Both","id":"1354","title":"When You Need Both"},"1355":{"body":"A2A chain-of-custody provides movement lineage. Attestation derivation provides claim lineage. A2A tracks where an artifact has been (Agent A → Agent B → Agent C). Attestation tracks what trust claims have been made about it (scanned → reviewed → approved). They compose naturally: an agent receives a signed artifact via A2A, then creates an attestation recording its analysis of that artifact.","breadcrumbs":"A2A + Attestation Composition » The Composition Rule","id":"1355","title":"The Composition Rule"},"1356":{"body":"Agent A: Signs artifact with A2A provenance ↓ (cross-boundary exchange)\nAgent B: Verifies A2A signature, attests review with evidence ↓ (cross-boundary exchange)\nAgent C: Verifies both the A2A chain and the attestation","breadcrumbs":"A2A + Attestation Composition » Example Workflow","id":"1356","title":"Example Workflow"},"1357":{"body":"from jacs.client import JacsClient # --- Agent A: Sign and send ---\nagent_a = JacsClient.quickstart(name=\"scanner\", domain=\"scanner.example.com\")\na2a_a = agent_a.get_a2a()\nsigned = a2a_a.sign_artifact( {\"scan_result\": \"clean\", \"target\": \"file.bin\"}, \"message\",\n) # --- Agent B: Receive, verify, attest ---\nagent_b = JacsClient.quickstart(name=\"reviewer\", domain=\"reviewer.example.com\")\na2a_b = agent_b.get_a2a() # Verify the A2A artifact from Agent A\nverify_result = a2a_b.verify_wrapped_artifact(signed)\nassert verify_result[\"valid\"] # Now attest WHY the review is trustworthy\nimport hashlib, json\ncontent_hash = hashlib.sha256(json.dumps(signed, sort_keys=True).encode()).hexdigest()\nattestation = agent_b.create_attestation( subject={\"type\": \"artifact\", \"id\": signed[\"jacsId\"], \"digests\": {\"sha256\": content_hash}}, claims=[{\"name\": \"reviewed\", \"value\": True, \"confidence\": 0.9}],\n) # Send the attestation onward via A2A\nattested_artifact = a2a_b.sign_artifact( {\"attestation_id\": attestation.document_id, \"original_artifact\": signed[\"jacsId\"]}, \"message\", parent_signatures=[signed],\n)","breadcrumbs":"A2A + Attestation Composition » Python","id":"1357","title":"Python"},"1358":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; // --- Agent A: Sign and send ---\nconst agentA = await JacsClient.quickstart({ name: 'scanner', domain: 'scanner.example.com' });\nconst a2aA = agentA.getA2A();\nconst signed = await a2aA.signArtifact( { scanResult: 'clean', target: 'file.bin' }, 'message',\n); // --- Agent B: Receive, verify, attest ---\nconst agentB = await JacsClient.quickstart({ name: 'reviewer', domain: 'reviewer.example.com' });\nconst a2aB = agentB.getA2A(); const verifyResult = await a2aB.verifyWrappedArtifact(signed);\nconsole.assert(verifyResult.valid); // Attest the review\nconst attestation = agentB.createAttestation({ subject: { type: 'artifact', id: signed.jacsId, digests: { sha256: '...' } }, claims: [{ name: 'reviewed', value: true, confidence: 0.9 }],\n});","breadcrumbs":"A2A + Attestation Composition » Node.js","id":"1358","title":"Node.js"},"1359":{"body":"Don't use A2A trust policy to validate attestation evidence. A2A policy (open/verified/strict) controls agent admission, not evidence quality. An allowed agent can still produce bad evidence. Don't use attestation to determine transport trust. Attestation claims don't tell you whether an agent should be allowed to communicate. Use assess_remote_agent() for that. Don't conflate chain-of-custody with derivation chain. A2A parent signatures track artifact movement. Attestation derivation tracks how one claim was produced from another. They are complementary, not interchangeable.","breadcrumbs":"A2A + Attestation Composition » What NOT to Do","id":"1359","title":"What NOT to Do"},"136":{"body":"Scope: Who signed what, and has it been tampered with? APIs: sign_message(), verify(), verify_standalone() This is the foundation. Every JACS document carries a cryptographic signature that proves which agent created it and that the content hasn't changed. Layer A answers: \"Is this signature valid?\" Crypto status values: Verified · SelfSigned · Unverified · Invalid Verified : Signature is valid and signer's key was resolved from a trusted source. SelfSigned : Signature is valid but signer is the same as verifier (no third-party trust). Unverified : Signature could not be checked because the signer's key was not available. Invalid : Signature check failed — the content was tampered with or the wrong key was used.","breadcrumbs":"Trust Layers » Layer A: Identity + Integrity (JACS Core)","id":"136","title":"Layer A: Identity + Integrity (JACS Core)"},"1360":{"body":"Trust Layers — the three-layer model and terminology A2A Interoperability — full A2A reference Attestation Tutorial — creating and verifying attestations Sign vs. Attest — choosing the right API","breadcrumbs":"A2A + Attestation Composition » Further Reading","id":"1360","title":"Further Reading"},"1361":{"body":"JACS emits structured events at every signing, verification, and agreement lifecycle step. This guide shows you how to capture those events and route them to your monitoring stack. For Rust-specific API details (ObservabilityConfig, LogDestination, MetricsConfig, etc.), see the Observability (Rust API) .","breadcrumbs":"Observability & Monitoring Guide » Observability & Monitoring Guide","id":"1361","title":"Observability & Monitoring Guide"},"1362":{"body":"Every event includes an event field for filtering. The table below is derived directly from the source code.","breadcrumbs":"Observability & Monitoring Guide » Structured Event Reference","id":"1362","title":"Structured Event Reference"},"1363":{"body":"Event Level Fields Source document_signed info algorithm, duration_ms crypt/mod.rs batch_signed info algorithm, batch_size, duration_ms crypt/mod.rs signing_procedure_complete info agent_id, algorithm, timestamp, placement_key agent/mod.rs","breadcrumbs":"Observability & Monitoring Guide » Signing Events","id":"1363","title":"Signing Events"},"1364":{"body":"Event Level Fields Source signature_verified info algorithm, valid, duration_ms crypt/mod.rs verification_complete info / error document_id, signer_id, algorithm, timestamp, valid, duration_ms agent/mod.rs verification_complete emits at info when valid=true and at error when valid=false.","breadcrumbs":"Observability & Monitoring Guide » Verification Events","id":"1364","title":"Verification Events"},"1365":{"body":"Event Level Fields Source agreement_created info document_id, agent_count, quorum, has_timeout agent/agreement.rs signature_added info document_id, signer_id, current, total, required agent/agreement.rs quorum_reached info document_id, signatures, required, total agent/agreement.rs agreement_expired warn document_id, deadline agent/agreement.rs","breadcrumbs":"Observability & Monitoring Guide » Agreement Events","id":"1365","title":"Agreement Events"},"1366":{"body":"JACS ships with three optional feature flags for OpenTelemetry backends. By default, only stderr and file logging are available. # Enable all three OTEL pipelines\ncargo build --features otlp-logs,otlp-metrics,otlp-tracing # Or enable just tracing\ncargo build --features otlp-tracing Feature What it adds otlp-logs OTLP log export (opentelemetry, opentelemetry-otlp, opentelemetry-appender-tracing, tokio) otlp-metrics OTLP metrics export (opentelemetry, opentelemetry-otlp, opentelemetry_sdk, tokio) otlp-tracing Distributed tracing (opentelemetry, opentelemetry-otlp, tracing-opentelemetry, tokio) Convenience helpers for automatic counter/gauge recording for sign and verify operations are always available without any feature flag.","breadcrumbs":"Observability & Monitoring Guide » Enabling OTEL Export","id":"1366","title":"Enabling OTEL Export"},"1367":{"body":"Route JACS events through an OpenTelemetry Collector. This configuration receives OTLP over HTTP, batches events, and exports to common backends. # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: timeout: 5s send_batch_size: 512 filter/jacs: logs: include: match_type: regexp record_attributes: - key: event value: \"document_signed|signature_verified|verification_complete|agreement_.*|batch_signed|signing_procedure_complete|quorum_reached|signature_added\" exporters: # Debug: print to collector stdout debug: verbosity: detailed # Datadog datadog: api: key: \"${DD_API_KEY}\" site: datadoghq.com # Splunk HEC splunkhec: token: \"${SPLUNK_HEC_TOKEN}\" endpoint: \"https://splunk-hec:8088/services/collector\" source: \"jacs\" sourcetype: \"jacs:events\" # Generic OTLP (Grafana Cloud, Honeycomb, etc.) otlphttp: endpoint: \"${OTLP_ENDPOINT}\" headers: Authorization: \"Bearer ${OTLP_API_KEY}\" service: pipelines: logs: receivers: [otlp] processors: [batch, filter/jacs] exporters: [debug] # Replace with your exporter metrics: receivers: [otlp] processors: [batch] exporters: [debug] traces: receivers: [otlp] processors: [batch] exporters: [debug]","breadcrumbs":"Observability & Monitoring Guide » OTEL Collector Configuration","id":"1367","title":"OTEL Collector Configuration"},"1368":{"body":"In jacs.config.json: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"my-jacs-service\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n} Or via environment variables (useful in containers): export OTEL_EXPORTER_OTLP_ENDPOINT=\"http://collector:4318\"\nexport OTEL_SERVICE_NAME=\"jacs-production\"\nexport OTEL_RESOURCE_ATTRIBUTES=\"deployment.environment=production\"","breadcrumbs":"Observability & Monitoring Guide » Pointing JACS at the Collector","id":"1368","title":"Pointing JACS at the Collector"},"1369":{"body":"Deploy the OTEL Collector with the datadog exporter (see config above). Set DD_API_KEY in the collector's environment. In Datadog, JACS events appear under Logs > Search with source:opentelemetry. Create a monitor on event:verification_complete AND valid:false to alert on verification failures. Alternatively, use the Datadog Agent's built-in OTLP receiver: # datadog.yaml\notlp_config: receiver: protocols: http: endpoint: 0.0.0.0:4318","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Datadog","id":"1369","title":"Feeding Events to Datadog"},"137":{"body":"Scope: Is this agent allowed to communicate with me? APIs: sign_artifact(), verify_wrapped_artifact(), assess_remote_agent(), discover_agent() Layer B handles cross-boundary exchange between agents using the A2A protocol. It adds trust policy on top of Layer A's cryptographic status. Layer B answers: \"Should I accept artifacts from this agent?\" Policy status values: allowed · blocked · not_assessed Trust policies (open, verified, strict) control admission: Policy Requirement open Accept all agents verified Agent must have the urn:jacs:provenance-v1 extension strict Agent must be in the local trust store See A2A Interoperability for full details.","breadcrumbs":"Trust Layers » Layer B: Exchange + Discovery (A2A Integration)","id":"137","title":"Layer B: Exchange + Discovery (A2A Integration)"},"1370":{"body":"Deploy the OTEL Collector with the splunkhec exporter. Set SPLUNK_HEC_TOKEN in the collector's environment. Events arrive in Splunk with sourcetype=jacs:events. Search: sourcetype=\"jacs:events\" event=\"verification_complete\" valid=false","breadcrumbs":"Observability & Monitoring Guide » Feeding Events to Splunk","id":"1370","title":"Feeding Events to Splunk"},"1371":{"body":"Agreement events give you a complete lifecycle view: creation, each signature, quorum, and expiry. Here are practical queries.","breadcrumbs":"Observability & Monitoring Guide » Agreement Monitoring","id":"1371","title":"Agreement Monitoring"},"1372":{"body":"Filter for agreement_created events where has_timeout=true, then correlate with quorum_reached. Any agreement_created without a matching quorum_reached within the timeout window is at risk.","breadcrumbs":"Observability & Monitoring Guide » Agreements Approaching Timeout","id":"1372","title":"Agreements Approaching Timeout"},"1373":{"body":"event=\"signature_added\" | stats max(current) as sigs, max(required) as needed by document_id\n| where sigs < needed","breadcrumbs":"Observability & Monitoring Guide » Failed Quorum Detection","id":"1373","title":"Failed Quorum Detection"},"1374":{"body":"Track signature_added events over time to see how quickly agents sign after agreement creation: event=\"signature_added\" | timechart count by document_id","breadcrumbs":"Observability & Monitoring Guide » Signature Velocity","id":"1374","title":"Signature Velocity"},"1375":{"body":"The agreement_expired event (level warn) fires when an agent attempts to sign or verify an expired agreement. Alert on this directly: event=\"agreement_expired\" | alert","breadcrumbs":"Observability & Monitoring Guide » Expiry Alerts","id":"1375","title":"Expiry Alerts"},"1376":{"body":"Both document_signed and signature_verified include duration_ms. Use these to track signing and verification performance: event=\"document_signed\" | stats avg(duration_ms) as avg_sign_ms, p99(duration_ms) as p99_sign_ms by algorithm\nevent=\"signature_verified\" | stats avg(duration_ms) as avg_verify_ms, p99(duration_ms) as p99_verify_ms by algorithm Post-quantum algorithms (pq2025, pq-dilithium) will show higher latency than ring-Ed25519. Use these metrics to decide whether the security/performance tradeoff is acceptable for your workload.","breadcrumbs":"Observability & Monitoring Guide » Latency Tracking","id":"1376","title":"Latency Tracking"},"1377":{"body":"Observability (Rust API) -- Full API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig Algorithm Selection Guide -- Latency implications of algorithm choice Failure Modes -- What events to expect when things go wrong","breadcrumbs":"Observability & Monitoring Guide » Next Steps","id":"1377","title":"Next Steps"},"1378":{"body":"JACS provides a detached-signature model for email. Your agent signs a raw RFC 5322 .eml file and the result is the same email with a jacs-signature.json MIME attachment. The recipient extracts that attachment, verifies the cryptographic signature, and compares content hashes to detect tampering. There are only two functions you need: Action Function What you supply What you get back Sign jacs::email::sign_email() raw .eml bytes + your EmailSigner .eml bytes with jacs-signature.json Verify jacs::email::verify_email() signed .eml bytes + sender's public key + verifier ContentVerificationResult (pass/fail per field)","breadcrumbs":"Email Signing & Verification » Email Signing and Verification","id":"1378","title":"Email Signing and Verification"},"1379":{"body":"use jacs::email::{sign_email, EmailSigner}; // 1. Load raw email bytes (RFC 5322 format)\nlet raw_eml = std::fs::read(\"outgoing.eml\")?; // 2. Sign — your agent implements EmailSigner (see below)\nlet signed_eml = sign_email(&raw_eml, &my_agent)?; // 3. Send signed_eml — it is a valid .eml with the JACS attachment\nstd::fs::write(\"outgoing_signed.eml\", &signed_eml)?;","breadcrumbs":"Email Signing & Verification » Signing an email","id":"1379","title":"Signing an email"},"138":{"body":"Scope: Why should this data be trusted? APIs: create_attestation(), verify_attestation(), lift_to_attestation(), export_attestation_dsse() Layer C records the reasoning behind trust: claims, evidence, derivation chains, and assurance levels. Layer C answers: \"What evidence supports this data?\" Attestation status values: local_valid · full_valid local_valid : Signature and hash are correct; claims are structurally valid. full_valid : All of the above, plus evidence digests verified and derivation chain intact. See What Is an Attestation? for full details.","breadcrumbs":"Trust Layers » Layer C: Trust Context (Attestation)","id":"138","title":"Layer C: Trust Context (Attestation)"},"1380":{"body":"Your agent must implement four methods: pub trait EmailSigner { /// Sign raw bytes. Return the signature bytes. fn sign_bytes(&self, data: &[u8]) -> Result, Box>; /// Your agent's JACS ID (e.g. \"abc123:v1\"). fn jacs_id(&self) -> &str; /// The key identifier used for signing. fn key_id(&self) -> &str; /// The signing algorithm name. This comes from your JACS agent's /// key configuration — never hardcode it. fn algorithm(&self) -> &str;\n} The algorithm value (e.g. \"ed25519\", \"rsa-pss\", \"pq2025\") is read from your JACS agent's key metadata at runtime. sign_email records it in the jacs-signature.json document so the verifier knows which algorithm to use.","breadcrumbs":"Email Signing & Verification » The EmailSigner trait","id":"1380","title":"The EmailSigner trait"},"1381":{"body":"Parses and canonicalizes the email headers and body Computes SHA-256 hashes for each header, body part, and attachment Builds the JACS email signature payload Canonicalizes the payload via RFC 8785 (JCS) Calls your sign_bytes() to produce the cryptographic signature Attaches the result as jacs-signature.json You do not need to know any of this to use it — it is a single function call.","breadcrumbs":"Email Signing & Verification » What sign_email does internally","id":"1381","title":"What sign_email does internally"},"1382":{"body":"If the email already has a jacs-signature.json (it was previously signed by another agent), sign_email automatically: Renames the existing signature to jacs-signature-0.json (or -1, -2, ...) Computes a parent_signature_hash linking to the previous signature Signs the email with a new jacs-signature.json This builds a verifiable forwarding chain. No extra code needed.","breadcrumbs":"Email Signing & Verification » Forwarding (re-signing)","id":"1382","title":"Forwarding (re-signing)"},"1383":{"body":"","breadcrumbs":"Email Signing & Verification » Verifying an email","id":"1383","title":"Verifying an email"},"1384":{"body":"use jacs::email::verify_email;\nuse jacs::simple::SimpleAgent; let signed_eml = std::fs::read(\"incoming_signed.eml\")?;\nlet sender_public_key: Vec = /* fetch from HAI registry or local store */; // Any agent can verify — the sender's public key is passed explicitly\nlet (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?;\nlet result = verify_email(&signed_eml, &agent, &sender_public_key)?; if result.valid { println!(\"Email is authentic and unmodified\");\n} else { // Inspect which fields failed for field in &result.field_results { println!(\"{}: {:?}\", field.field, field.status); }\n} verify_email does everything in one call: Extracts jacs-signature.json from the email Removes it (the signature covers the email without itself) Verifies the JACS document signature against the sender's public key Compares every hash in the JACS document against the actual email content Returns per-field results","breadcrumbs":"Email Signing & Verification » One-call API (recommended)","id":"1384","title":"One-call API (recommended)"},"1385":{"body":"If you need to inspect the JACS document metadata (issuer, timestamps) before doing the content comparison: use jacs::email::{verify_email_document, verify_email_content};\nuse jacs::simple::SimpleAgent; let (agent, _) = SimpleAgent::ephemeral(Some(\"ed25519\"))?; // Step 1: Verify the cryptographic signature — returns the trusted JACS document\nlet (doc, parts) = verify_email_document(&signed_eml, &agent, &sender_public_key)?; // Inspect the document\nprintln!(\"Signed by: {}\", doc.metadata.issuer);\nprintln!(\"Created at: {}\", doc.metadata.created_at); // Step 2: Compare content hashes\nlet result = verify_email_content(&doc, &parts);\nassert!(result.valid); All cryptographic operations are handled by the JACS agent via SimpleAgent::verify_with_key(). The agent's own key is not used -- the sender's public key is passed explicitly.","breadcrumbs":"Email Signing & Verification » Two-step API (when you need the JACS document)","id":"1385","title":"Two-step API (when you need the JACS document)"},"1386":{"body":"The ContentVerificationResult contains a field_results vector with one entry per field: Status Meaning Pass Hash matches — field is authentic Modified Hash mismatch but case-insensitive email address match (address headers only) Fail Content does not match the signed hash Unverifiable Field absent or not verifiable (e.g. Message-ID may change in transit) Fields checked: from, to, cc, subject, date, message_id, in_reply_to, references, body_plain, body_html, and all attachments.","breadcrumbs":"Email Signing & Verification » Field-level results","id":"1386","title":"Field-level results"},"1387":{"body":"The jacs-signature.json attachment has this structure: { \"version\": \"1.0\", \"document_type\": \"email_signature\", \"payload\": { \"headers\": { \"from\": { \"value\": \"agent@example.com\", \"hash\": \"sha256:...\" }, \"to\": { \"value\": \"recipient@example.com\", \"hash\": \"sha256:...\" }, \"subject\": { \"value\": \"Hello\", \"hash\": \"sha256:...\" }, \"date\": { \"value\": \"Fri, 28 Feb 2026 12:00:00 +0000\", \"hash\": \"sha256:...\" }, \"message_id\": { \"value\": \"\", \"hash\": \"sha256:...\" } }, \"body_plain\": { \"content_hash\": \"sha256:...\" }, \"body_html\": null, \"attachments\": [ { \"filename\": \"report.pdf\", \"content_hash\": \"sha256:...\" } ], \"parent_signature_hash\": null }, \"metadata\": { \"issuer\": \"agent-jacs-id:v1\", \"document_id\": \"uuid\", \"created_at\": \"2026-02-28T12:00:00Z\", \"hash\": \"sha256:...\" }, \"signature\": { \"key_id\": \"agent-key-id\", \"algorithm\": \"ed25519\", \"signature\": \"base64...\", \"signed_at\": \"2026-02-28T12:00:00Z\" }\n} metadata.hash is the SHA-256 of the RFC 8785 canonical JSON of payload. signature.signature is the cryptographic signature over that same canonical JSON. The algorithm is always read from the agent — never hardcoded.","breadcrumbs":"Email Signing & Verification » The JACS signature document","id":"1387","title":"The JACS signature document"},"1388":{"body":"All items are re-exported from jacs::email: // Signing\njacs::email::sign_email(raw_email: &[u8], signer: &dyn EmailSigner) -> Result, EmailError>\njacs::email::EmailSigner // trait your agent implements // Verification\njacs::email::verify_email(raw, &agent, pubkey) // one-call: crypto + content check\njacs::email::verify_email_document(raw, &agent, pk) // step 1: crypto only\njacs::email::verify_email_content(&doc, &parts) // step 2: content hash comparison\njacs::email::normalize_algorithm(...) // algorithm name normalization // Types\njacs::email::ContentVerificationResult // overall result with field_results\njacs::email::FieldResult // per-field status\njacs::email::FieldStatus // Pass | Modified | Fail | Unverifiable\njacs::email::JacsEmailSignatureDocument // the full signature document\njacs::email::EmailError // error type // Attachment helpers (for advanced use)\njacs::email::get_jacs_attachment(...) // extract jacs-signature.json bytes\njacs::email::remove_jacs_attachment(...) // strip jacs-signature.json from email\njacs::email::add_jacs_attachment(...) // inject jacs-signature.json into email","breadcrumbs":"Email Signing & Verification » Public API summary","id":"1388","title":"Public API summary"},"1389":{"body":"JACS uses a buffer-then-sign pattern for streaming outputs. Token streams from LLMs are accumulated in memory and signed once the stream completes. This is the correct approach for LLM outputs because: LLM responses are small. A typical response is under 100KB of text. Buffering this costs nothing. Signatures cover the complete output. A partial signature over incomplete text is useless for verification. Framework adapters handle this automatically. If you use a JACS adapter, streaming signing just works.","breadcrumbs":"Streaming Signing » Streaming Signing","id":"1389","title":"Streaming Signing"},"139":{"body":"Term Layer Meaning Crypto status A Outcome of signature verification: Verified, SelfSigned, Unverified, Invalid Policy status B Outcome of trust policy check: allowed, blocked, not_assessed Attestation status C Outcome of attestation verification: local_valid, full_valid Verified A Signature is valid and signer key was resolved SelfSigned A Signature is valid but signer is the verifier Unverified A Key not available — cannot check signature Invalid A Signature check failed Allowed B Agent passes the configured trust policy Blocked B Agent does not pass the trust policy Not assessed B No agent card provided — trust not evaluated","breadcrumbs":"Trust Layers » Terminology Glossary","id":"139","title":"Terminology Glossary"},"1390":{"body":"","breadcrumbs":"Streaming Signing » How It Works by Framework","id":"1390","title":"How It Works by Framework"},"1391":{"body":"The wrapStream middleware accumulates text-delta chunks via a TransformStream. When the stream flushes, it signs the complete text and emits a provider-metadata chunk containing the provenance record. import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { streamText } from 'ai'; const model = withProvenance(openai('gpt-4o'), { client });\nconst result = await streamText({ model, prompt: 'Explain trust.' }); for await (const chunk of result.textStream) { process.stdout.write(chunk); // stream to user in real time\n}\n// provenance is available after stream completes","breadcrumbs":"Streaming Signing » Vercel AI SDK (streamText)","id":"1391","title":"Vercel AI SDK (streamText)"},"1392":{"body":"LangChain tools execute synchronously (or await async results) before returning to the model. JACS signs each tool result individually via wrap_tool_call or signed_tool. No special streaming handling is needed because the signing happens at the tool output boundary, not the token stream. from jacs.adapters.langchain import jacs_signing_middleware agent = create_agent( model=\"openai:gpt-4o\", tools=tools, middleware=[jacs_signing_middleware(client=jacs_client)],\n)\n# Tool results are auto-signed before the model sees them","breadcrumbs":"Streaming Signing » LangChain / LangGraph","id":"1392","title":"LangChain / LangGraph"},"1393":{"body":"HTTP middleware signs the response body before it is sent. For streaming HTTP responses (SSE, chunked encoding), sign the complete message content before streaming, or sign each event individually. # FastAPI: middleware signs JSON responses automatically\nfrom jacs.adapters.fastapi import JacsMiddleware\napp.add_middleware(JacsMiddleware)","breadcrumbs":"Streaming Signing » Express / Koa / FastAPI","id":"1393","title":"Express / Koa / FastAPI"},"1394":{"body":"If you're calling an LLM API directly without a framework adapter, accumulate the response yourself and sign it when complete: import jacs.simple as jacs jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\") # Accumulate streamed response\nchunks = []\nasync for chunk in llm_stream(\"What is trust?\"): chunks.append(chunk) print(chunk, end=\"\") # stream to user # Sign the complete response\ncomplete_text = \"\".join(chunks)\nsigned = jacs.sign_message({\"response\": complete_text, \"model\": \"gpt-4o\"}) const jacs = require('@hai.ai/jacs/simple');\nawait jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com' }); const chunks = [];\nfor await (const chunk of llmStream('What is trust?')) { chunks.push(chunk); process.stdout.write(chunk);\n} const signed = await jacs.signMessage({ response: chunks.join(''), model: 'gpt-4o',\n});","breadcrumbs":"Streaming Signing » Raw LLM APIs (No Framework Adapter)","id":"1394","title":"Raw LLM APIs (No Framework Adapter)"},"1395":{"body":"The buffer-then-sign pattern assumes the full content fits in memory. This is always true for LLM text responses. If you need to sign very large data (multi-GB files, video streams), use sign_file instead, which hashes the file on disk without loading it into memory.","breadcrumbs":"Streaming Signing » When NOT to Buffer","id":"1395","title":"When NOT to Buffer"},"1396":{"body":"Vercel AI SDK Adapter LangChain Adapters Framework Adapters (Node.js)","breadcrumbs":"Streaming Signing » See Also","id":"1396","title":"See Also"},"1397":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1397","title":"CLI Examples"},"1398":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1398","title":"Quick Reference"},"1399":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1399","title":"Getting Started"},"14":{"body":"It does not treat MCP and A2A as the same thing. MCP is for model-to-tool calls inside an application boundary; A2A is for agent discovery and exchange across boundaries. It does not assume every aspirational integration is first-class. If a chapter describes a feature that is not fully supported today, it has been moved out of the main path and tracked separately. It does not require a registry or blockchain to work. JACS identity is key-based and can be used entirely locally.","breadcrumbs":"Introduction » What This Book Does Not Claim","id":"14","title":"What This Book Does Not Claim"},"140":{"body":"\"Which layer do I need?\" I just need to prove data hasn't been tampered with → Layer A. Use sign_message() and verify(). I need to exchange signed data with other agents → Layer B. Use sign_artifact() and A2A discovery. See the A2A Quickstart . I need to record WHY data should be trusted → Layer C. Use create_attestation(). See the Attestation Tutorial . I need both exchange AND trust evidence → Layer B + C. See A2A + Attestation Composition .","breadcrumbs":"Trust Layers » Quick Decision Flow","id":"140","title":"Quick Decision Flow"},"1400":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1400","title":"First-Time Setup"},"1401":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1401","title":"Verify Your Setup"},"1402":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1402","title":"Document Operations"},"1403":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1403","title":"Creating Documents"},"1404":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1404","title":"Verifying Documents"},"1405":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1405","title":"Updating Documents"},"1406":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1406","title":"Extracting Embedded Content"},"1407":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1407","title":"Agreement Workflows"},"1408":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1408","title":"Creating an Agreement"},"1409":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1409","title":"Signing an Agreement"},"141":{"body":"\"Unverified\" does not mean \"Invalid.\" Unverified means the signer's key wasn't available. Invalid means the signature check actively failed. These have very different security implications. A2A trust policy is not attestation verification. A2A policy (Layer B) answers \"should I talk to this agent?\" Attestation (Layer C) answers \"why should I trust this data?\" They compose but are not interchangeable. \"Trusted\" is not the same as \"Verified.\" In JACS, \"trusted\" refers to trust store membership (Layer B). \"Verified\" refers to cryptographic signature validation (Layer A).","breadcrumbs":"Trust Layers » Common Misconceptions","id":"141","title":"Common Misconceptions"},"1410":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1410","title":"Complete Agreement Workflow"},"1411":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1411","title":"Agent Operations"},"1412":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1412","title":"Creating a Custom Agent"},"1413":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1413","title":"DNS-Based Identity"},"1414":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1414","title":"Agent Verification"},"1415":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1415","title":"Task Management"},"1416":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1416","title":"Creating Tasks"},"1417":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1417","title":"Scripting Examples"},"1418":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1418","title":"Batch Document Processing"},"1419":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1419","title":"Verification Report"},"142":{"body":"JACS includes native bindings (Rust compiled to platform-specific libraries), so deployment depends on pre-built binary availability for your target platform.","breadcrumbs":"Deployment Compatibility » Deployment Compatibility","id":"142","title":"Deployment Compatibility"},"1420":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1420","title":"Watch for New Documents"},"1421":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1421","title":"Environment Configuration"},"1422":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1422","title":"Using Environment Variables"},"1423":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1423","title":"Multiple Configurations"},"1424":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1424","title":"Error Handling"},"1425":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1425","title":"Understanding Exit Codes"},"1426":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1426","title":"Handling Failures"},"1427":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1427","title":"See Also"},"1428":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1428","title":"Node.js Examples"},"1429":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod v0.7.0 uses an async-first API. All NAPI operations return Promises by default; sync variants use a Sync suffix. // Initialize JACS (ES Modules, async)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1429","title":"Setup"},"143":{"body":"Platform Language Notes Linux (x86_64, aarch64) All Primary target macOS (Apple Silicon, Intel) All Full support Windows (x86_64) Rust, Node.js Python wheels may need manual build AWS Lambda Python, Node.js Use Lambda layers for native deps Docker / Kubernetes All Standard containerization Vercel (Node.js runtime) Node.js Via serverless functions","breadcrumbs":"Deployment Compatibility » Supported Platforms","id":"143","title":"Supported Platforms"},"1430":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1430","title":"Basic Document Operations"},"1431":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1431","title":"Creating and Signing Documents"},"1432":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1432","title":"Verifying Documents"},"1433":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1433","title":"Updating Documents"},"1434":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1434","title":"HTTP Server with Express"},"1435":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1435","title":"Complete Express Server"},"1436":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1436","title":"HTTP Client"},"1437":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1437","title":"MCP Integration"},"1438":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-server', domain: 'mcp.local', }); const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, client, \"server\" ); const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1438","title":"MCP Server"},"1439":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); const client = await JacsClient.quickstart({ name: 'jacs-demo-client', domain: 'mcp.local', }); const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, client, \"client\" ); const mcpClient = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await mcpClient.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await mcpClient.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await mcpClient.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await mcpClient.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await mcpClient.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1439","title":"MCP Client"},"144":{"body":"Platform Why Workaround Cloudflare Workers No native module support (WASM-only) Use a proxy service Deno Deploy No native Node.js addons Use Deno with --allow-ffi locally Bun Native builds may fail Use Node.js runtime instead Browser / WASM Post-quantum crypto not available in WASM Planned for a future release","breadcrumbs":"Deployment Compatibility » Not Yet Supported","id":"144","title":"Not Yet Supported"},"1440":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1440","title":"Agreements"},"1441":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1441","title":"Creating Multi-Party Agreements"},"1442":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1442","title":"Signing Agreements"},"1443":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1443","title":"Checking Agreement Status"},"1444":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1444","title":"Document Store"},"1445":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1445","title":"Simple File-Based Store"},"1446":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1446","title":"Error Handling"},"1447":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1447","title":"Robust Error Handling Pattern"},"1448":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1448","title":"Testing"},"1449":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1449","title":"Jest Test Setup"},"145":{"body":"Language Minimum Version Rust 1.93+ (edition 2024) Python 3.10+ Node.js 18+ (LTS recommended)","breadcrumbs":"Deployment Compatibility » Version Requirements","id":"145","title":"Version Requirements"},"1450":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1450","title":"See Also"},"1451":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1451","title":"Python Examples"},"1452":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1452","title":"Setup"},"1453":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1453","title":"Basic Document Operations"},"1454":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1454","title":"Creating and Signing Documents"},"1455":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1455","title":"Verifying Documents"},"1456":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1456","title":"Updating Documents"},"1457":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1457","title":"HTTP Server with FastAPI"},"1458":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1458","title":"Complete FastAPI Server"},"1459":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1459","title":"HTTP Client"},"146":{"body":"FROM python:3.12-slim\nRUN pip install jacs\nCOPY . /app\nWORKDIR /app\nRUN python -c \"import jacs.simple as j; j.quickstart(name='docker-agent', domain='docker.local')\"\nCMD [\"python\", \"main.py\"]","breadcrumbs":"Deployment Compatibility » Docker Example","id":"146","title":"Docker Example"},"1460":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1460","title":"MCP Integration"},"1461":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1461","title":"FastMCP Server with JACS"},"1462":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1462","title":"MCP Client with JACS"},"1463":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1463","title":"Agreements"},"1464":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1464","title":"Creating Multi-Party Agreements"},"1465":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1465","title":"Signing Agreements"},"1466":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1466","title":"Checking Agreement Status"},"1467":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1467","title":"Document Store"},"1468":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1468","title":"Simple File-Based Store"},"1469":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1469","title":"Batch Processing"},"147":{"body":"For AWS Lambda, include the JACS native library in a Lambda layer or bundle it in your deployment package. Set JACS_PRIVATE_KEY_PASSWORD as a Lambda environment variable (use AWS Secrets Manager for production). Headless environments (Docker, Lambda, CI): Set JACS_KEYCHAIN_BACKEND=disabled to skip OS keychain lookups, which are not available in containers or serverless runtimes. Use JACS_PRIVATE_KEY_PASSWORD or JACS_PASSWORD_FILE instead.","breadcrumbs":"Deployment Compatibility » Lambda Deployment","id":"147","title":"Lambda Deployment"},"1470":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1470","title":"Batch Document Creator"},"1471":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1471","title":"Testing"},"1472":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1472","title":"Pytest Setup"},"1473":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1473","title":"Error Handling"},"1474":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1474","title":"Robust Error Handling Pattern"},"1475":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1475","title":"See Also"},"1476":{"body":"This page is now a curated index of examples that still line up with the current APIs. The old monolithic example chapter mixed outdated agent APIs with supported workflows.","breadcrumbs":"Integration Examples » Integration Examples","id":"1476","title":"Integration Examples"},"1477":{"body":"jacs-mcp/README.md Best starting point for the full Rust MCP server jacspy/examples/mcp/server.py Python FastMCP server wrapped with JACSMCPServer jacspy/examples/mcp/client.py Python FastMCP client wrapped with JACSMCPClient jacsnpm/examples/mcp.stdio.server.js Node stdio server with createJACSTransportProxy() jacsnpm/examples/mcp.stdio.client.js Node stdio client with signed transport","breadcrumbs":"Integration Examples » MCP","id":"1477","title":"MCP"},"1478":{"body":"jacspy/examples/langchain/signing_callback.py Best current Python example for signed LangGraph tool execution jacsnpm/examples/langchain/basic-agent.ts Node LangChain.js agent using JACS tools jacsnpm/examples/langchain/signing-callback.ts Node auto-signing pattern for LangGraph-style flows","breadcrumbs":"Integration Examples » LangChain / LangGraph","id":"1478","title":"LangChain / LangGraph"},"1479":{"body":"jacspy/tests/test_a2a_server.py Best current Python reference for generated .well-known routes jacsnpm/src/a2a-server.js Node Express A2A discovery middleware jacsnpm/examples/a2a-agent-example.js Node A2A card and artifact demo jacs/tests/a2a_cross_language_tests.rs Cross-language behavior reference for signing and verification","breadcrumbs":"Integration Examples » A2A","id":"1479","title":"A2A"},"148":{"body":"If no pre-built binary exists for your platform: # Python\npip install maturin\ncd jacspy && maturin develop --release # Node.js\ncd jacsnpm && npm run build Requires Rust 1.93+ toolchain installed via rustup .","breadcrumbs":"Deployment Compatibility » Building from Source","id":"148","title":"Building from Source"},"1480":{"body":"jacspy/examples/http/server.py FastAPI app with JacsMiddleware jacspy/examples/http/client.py Python client consuming signed responses jacsnpm/examples/expressmiddleware.js Express middleware example","breadcrumbs":"Integration Examples » HTTP / App Middleware","id":"1480","title":"HTTP / App Middleware"},"1481":{"body":"If an example and a higher-level prose page disagree, trust: the current binding README the current tests the example that imports the API you intend to use today","breadcrumbs":"Integration Examples » Rule Of Thumb","id":"1481","title":"Rule Of Thumb"},"1482":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands. For a workflow-oriented tutorial, see CLI Tutorial . For practical scripting examples, see CLI Examples .","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1482","title":"CLI Command Reference"},"1483":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1483","title":"Global Commands"},"1484":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1484","title":"jacs version"},"1485":{"body":"Create a persistent agent with keys on disk and optionally sign data -- no manual setup needed. If ./jacs.config.json already exists, loads it; otherwise creates a new agent. Agent, keys, and config are saved to ./jacs_data, ./jacs_keys, and ./jacs.config.json. Password is required: set JACS_PRIVATE_KEY_PASSWORD (recommended) or JACS_PASSWORD_FILE (CLI file bootstrap). Set exactly one explicit source; if both are set, CLI exits with an error. This is the fastest way to start using JACS. # Print agent info (ID, algorithm)\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json # Use a specific algorithm\njacs quickstart --name my-agent --domain my-agent.example.com --algorithm ring-Ed25519 Options: --name - Agent name used for first-time quickstart creation (required) --domain - Agent domain used for DNS/public-key verification workflows (required) --algorithm - Signing algorithm (default: pq2025). Also: ring-Ed25519, RSA-PSS --sign - Sign input (from stdin or --file) instead of printing info --file - Read JSON input from file instead of stdin (requires --sign)","breadcrumbs":"CLI Command Reference » jacs quickstart","id":"1485","title":"jacs quickstart"},"1486":{"body":"Verify a signed JACS document. No agent or config file required -- the CLI creates an ephemeral verifier if needed. # Verify a local file\njacs verify signed-document.json # JSON output (for scripting)\njacs verify signed-document.json --json # Verify a remote document\njacs verify --remote https://example.com/signed-doc.json # Specify a directory of public keys\njacs verify signed-document.json --key-dir ./trusted-keys/ Options: - Path to the signed JACS JSON file (positional, required unless --remote is used) --remote - Fetch document from URL before verifying --json - Output result as JSON ({\"valid\": true, \"signerId\": \"...\", \"timestamp\": \"...\"}) --key-dir - Directory containing public keys for verification Exit codes: 0 for valid, 1 for invalid or error. Output (text): Status: VALID\nSigner: 550e8400-e29b-41d4-a716-446655440000\nSigned at: 2026-02-10T12:00:00Z Output (JSON): { \"valid\": true, \"signerId\": \"550e8400-e29b-41d4-a716-446655440000\", \"timestamp\": \"2026-02-10T12:00:00Z\"\n} If ./jacs.config.json and agent keys exist in the current directory, the CLI uses them automatically. Otherwise it creates a temporary ephemeral verifier internally. See the Verification Guide for Python, Node.js, and DNS verification workflows.","breadcrumbs":"CLI Command Reference » jacs verify","id":"1486","title":"jacs verify"},"1487":{"body":"Manage private key passwords in the OS keychain (macOS Keychain or Linux Secret Service via D-Bus). This allows JACS to retrieve your private key password without environment variables or password files. Requires the keychain feature (enabled by default in jacs-cli). Set JACS_KEYCHAIN_BACKEND=disabled to skip keychain lookups in CI/headless environments. Every keychain command requires --agent-id so that each agent's password is stored separately. This prevents collisions when multiple agents coexist on the same machine. # Store a password interactively (prompts for input)\njacs keychain set --agent-id # Store a password non-interactively (for scripting)\njacs keychain set --agent-id --password \"YourStr0ng!Pass#Here\" # Retrieve the stored password (prints to stdout, for piping)\nexport JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get --agent-id ) # Remove the stored password\njacs keychain delete --agent-id # Check keychain availability and whether a password is stored\njacs keychain status --agent-id Subcommand Description jacs keychain set --agent-id Store a password for an agent (prompts interactively) jacs keychain set --agent-id --password Store a specific password (for scripting) jacs keychain get --agent-id Print stored password to stdout jacs keychain delete --agent-id Remove stored password from OS keychain jacs keychain status --agent-id Check keychain availability and storage state Output conventions: Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means jacs keychain get output can be safely piped or captured in a variable. Password resolution order: When JACS needs the private key password, it checks sources in this order: JACS_PRIVATE_KEY_PASSWORD environment variable (highest priority) JACS_PASSWORD_FILE / legacy .jacs_password file OS keychain keyed by agent ID (if keychain feature is enabled and not disabled)","breadcrumbs":"CLI Command Reference » jacs keychain","id":"1487","title":"jacs keychain"},"1488":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1488","title":"jacs init"},"1489":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1489","title":"jacs help"},"149":{"body":"Common issues and solutions when installing or using JACS.","breadcrumbs":"Troubleshooting » Troubleshooting","id":"149","title":"Troubleshooting"},"1490":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1490","title":"Configuration Commands"},"1491":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1491","title":"jacs config"},"1492":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1492","title":"Agent Commands"},"1493":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1493","title":"jacs agent"},"1494":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1494","title":"Task Commands"},"1495":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1495","title":"jacs task"},"1496":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1496","title":"Document Commands"},"1497":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f - Path to input file. Must be JSON format -o - Output filename for the created document -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema - Path to JSON schema file to use for validation --attach - Path to file or directory for file attachments -e, --embed - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1497","title":"jacs document create"},"1498":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a - Path to the agent file -f - Path to original document file -n - Path to new/modified document file -o - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema - Path to JSON schema file for validation --attach - Path to file or directory for additional attachments -e, --embed - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1498","title":"jacs document update"},"1499":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a - Path to the agent file -f - Path to input file. Must be JSON format -d - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1499","title":"jacs document verify"},"15":{"body":"GitHub Repository Issue Tracker","breadcrumbs":"Introduction » Community","id":"15","title":"Community"},"150":{"body":"","breadcrumbs":"Troubleshooting » Installation Issues","id":"150","title":"Installation Issues"},"1500":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a - Path to the agent file -f - Path to input file containing embedded files -d - Path to directory of files to process -s, --schema - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1500","title":"jacs document extract"},"1501":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1501","title":"Agreement Commands"},"1502":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1502","title":"Common Patterns"},"1503":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1503","title":"Basic Document Lifecycle"},"1504":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1504","title":"Working with Attachments"},"1505":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1505","title":"Schema Validation Workflow"},"1506":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1506","title":"Global Options"},"1507":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1507","title":"Exit Codes"},"1508":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1508","title":"Environment Variables"},"1509":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1509","title":"File Formats"},"151":{"body":"Check your Python version (3.10+ required). If no pre-built wheel exists for your platform, install the Rust toolchain and build from source: pip install maturin\ncd jacspy && maturin develop --release","breadcrumbs":"Troubleshooting » pip install fails","id":"151","title":"pip install fails"},"1510":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1510","title":"Input Files"},"1511":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1511","title":"Output Files"},"1512":{"body":"This is the comprehensive configuration guide covering zero-config quickstart, storage backends, observability, and environment variables. For the raw schema field list, see Config File Schema .","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1512","title":"Configuration Reference"},"1513":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1513","title":"Overview"},"1514":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (local key cache by publicKeyHash), dns (DNS TXT fingerprint validation), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that yields verifiable key material is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1514","title":"Key resolution for verifiers"},"1515":{"body":"If you just want to sign and verify without manual config setup, use quickstart(name, domain, ...): import jacs.simple as jacs\ninfo = jacs.quickstart(name=\"config-agent\", domain=\"config.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path) const jacs = require('@hai.ai/jacs/simple');\nconst info = await jacs.quickstart({ name: 'config-agent', domain: 'config.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath); jacs quickstart --name config-agent --domain config.example.com quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Configuration Reference » Zero-Config Path","id":"1515","title":"Zero-Config Path"},"1516":{"body":"For persistent agents, a config file needs only two fields (plus $schema): { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"pq2025\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Configuration Reference » Minimal Configuration","id":"1516","title":"Minimal Configuration"},"1517":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"pq2025\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1517","title":"Complete Example Configuration"},"1518":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1518","title":"Observability Configuration"},"1519":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1519","title":"Logs Configuration"},"152":{"body":"Pre-built binaries are available for Linux/macOS/Windows x64 and ARM64 macOS. If no pre-built binary matches your platform, you need the Rust toolchain installed so the native addon can compile during npm install.","breadcrumbs":"Troubleshooting » npm install fails","id":"152","title":"npm install fails"},"1520":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1520","title":"Metrics Configuration"},"1521":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1521","title":"Tracing Configuration"},"1522":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1522","title":"Authentication & Headers"},"1523":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1523","title":"Common Patterns"},"1524":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1524","title":"Development Configuration"},"1525":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1525","title":"Production Configuration"},"1526":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1526","title":"File-based Configuration"},"1527":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1527","title":"Environment Variable Integration"},"1528":{"body":"Only one environment variable is truly required (unless using the OS keychain): JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations, unless the password is stored in the OS keychain)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1528","title":"Required Environment Variable"},"1529":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: pq2025) jacs_default_storage - Storage backend (default: fs) jacs_keychain_backend - OS keychain backend for password storage (default: \"auto\"). See below. jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1529","title":"Configuration-Based Settings"},"153":{"body":"The default wheels and binaries target glibc. On Alpine or other musl-based systems, build from source with the Rust toolchain, or use a Debian-based container image instead.","breadcrumbs":"Troubleshooting » Alpine Linux / musl libc","id":"153","title":"Alpine Linux / musl libc"},"1530":{"body":"The jacs_keychain_backend field controls whether JACS looks up the private key password from the OS credential store (macOS Keychain or Linux Secret Service): { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect the platform default (macOS Keychain or Linux Secret Service). This is the default when the field is omitted. \"macos-keychain\" Explicitly use the macOS Keychain \"linux-secret-service\" Explicitly use the Linux D-Bus Secret Service (GNOME Keyring, KDE Wallet, KeePassXC) \"disabled\" Never consult the OS keychain. Recommended for CI, headless servers, and containers. You can also override via environment variable: export JACS_KEYCHAIN_BACKEND=disabled # skip keychain in CI When not set to \"disabled\", password resolution checks: env var first, then OS keychain, then error. See the CLI keychain commands for storing and managing passwords. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » OS Keychain Configuration","id":"1530","title":"OS Keychain Configuration"},"1531":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1531","title":"Storage Configuration"},"1532":{"body":"Backend Value Description Use Case Filesystem \"fs\" Signed JSON documents on local disk Default, development, single-node deployments Local Indexed SQLite \"rusqlite\" Signed documents in SQLite with FTS search Local search, bindings, MCP AWS S3 \"aws\" Amazon S3 object storage Remote object storage Memory \"memory\" In-memory object storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications For local indexed document search in JACS core, use \"rusqlite\". Additional database backends such as PostgreSQL, DuckDB, Redb, and SurrealDB live in separate crates and are not core jacs_default_storage values.","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1532","title":"Available Storage Backends"},"1533":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments Local Indexed SQLite (\"rusqlite\") { \"jacs_default_storage\": \"rusqlite\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: Built with the default sqlite Cargo feature Database path: /jacs_documents.sqlite3 Best for: Local full-text search, MCP/binding document operations, single-machine deployments that want indexed reads AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1533","title":"Backend-Specific Configuration"},"1534":{"body":"Filesystem (fs) stores signed documents as JSON files under jacs_data/documents/. Rusqlite (rusqlite) stores signed documents in jacs_data/jacs_documents.sqlite3 and is the indexed DocumentService path used by bindings and MCP. Agent files and keys remain path-based assets under jacs_data/ and jacs_keys/. Observability data (logs, metrics) can use separate storage via observability configuration.","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1534","title":"Storage Behavior"},"1535":{"body":"Every DocumentService read verifies the stored JACS document before returning it. Every create() and update() verifies the signed document before persisting it. If an update payload changes a signed JACS document without re-signing it, the write fails. Visibility changes create a new signed version instead of mutating metadata in place.","breadcrumbs":"Configuration Reference » DocumentService Guarantees","id":"1535","title":"DocumentService Guarantees"},"1536":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1536","title":"Configuration Examples"},"1537":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access Rusqlite : Protect the local database file with the same filesystem permissions you use for other signed artifacts Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1537","title":"Security Considerations"},"1538":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1538","title":"Migration Between Storage Backends"},"1539":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1539","title":"Error Codes"},"154":{"body":"","breadcrumbs":"Troubleshooting » Configuration Issues","id":"154","title":"Configuration Issues"},"1540":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1540","title":"CLI Exit Codes"},"1541":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1541","title":"Configuration Errors"},"1542":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1542","title":"Missing Configuration"},"1543":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1543","title":"Invalid Configuration"},"1544":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1544","title":"Key Directory Not Found"},"1545":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1545","title":"Cryptographic Errors"},"1546":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1546","title":"Private Key Not Found"},"1547":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1547","title":"Invalid Key Format"},"1548":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1548","title":"Key Password Required"},"1549":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1549","title":"Algorithm Mismatch"},"155":{"body":"Run jacs quickstart --name my-agent --domain my-agent.example.com to auto-create a config, or copy the example: cp jacs.config.example.json jacs.config.json","breadcrumbs":"Troubleshooting » Config not found","id":"155","title":"Config not found"},"1550":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1550","title":"Signature Errors"},"1551":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1551","title":"Verification Failed"},"1552":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1552","title":"Missing Signature"},"1553":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1553","title":"Invalid Signature Format"},"1554":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1554","title":"Unknown Signing Algorithm"},"1555":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1555","title":"DNS Verification Errors"},"1556":{"body":"Error: strict DNSSEC validation failed for (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1556","title":"DNSSEC Validation Failed"},"1557":{"body":"Error: DNS TXT lookup failed for (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1557","title":"DNS Record Not Found"},"1558":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1558","title":"DNS Required"},"1559":{"body":"Error: DNS lookup timed out for Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1559","title":"DNS Lookup Timeout"},"156":{"body":"Wrong or missing password. Check JACS_PRIVATE_KEY_PASSWORD. For CLI, you may also set JACS_PASSWORD_FILE to a file that contains only the password, or use jacs keychain set to store the password in the OS keychain. Set exactly one explicit source; if both env var and password file are set, CLI fails by design. The OS keychain is only consulted when neither env var nor password file is present.","breadcrumbs":"Troubleshooting » Private key decryption failed","id":"156","title":"Private key decryption failed"},"1560":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1560","title":"Document Errors"},"1561":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1561","title":"Invalid JSON"},"1562":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1562","title":"Schema Validation Failed"},"1563":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1563","title":"Document Not Found"},"1564":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1564","title":"Version Mismatch"},"1565":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1565","title":"Agreement Errors"},"1566":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1566","title":"Agreement Not Found"},"1567":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1567","title":"Already Signed"},"1568":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1568","title":"Not Authorized"},"1569":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1569","title":"Agreement Locked"},"157":{"body":"Set the signingAlgorithm field in your config, or pass it explicitly to quickstart(...) / create(...). Valid values: pq2025, ring-Ed25519, RSA-PSS.","breadcrumbs":"Troubleshooting » Algorithm detection failed","id":"157","title":"Algorithm detection failed"},"1570":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1570","title":"Storage Errors"},"1571":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1571","title":"Storage Backend Error"},"1572":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1572","title":"AWS S3 Error"},"1573":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1573","title":"Connection Error"},"1574":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1574","title":"HTTP/MCP Errors"},"1575":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1575","title":"Request Verification Failed"},"1576":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1576","title":"Response Verification Failed"},"1577":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1577","title":"Middleware Configuration Error"},"1578":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1578","title":"Debugging Tips"},"1579":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1579","title":"Enable Verbose Output"},"158":{"body":"","breadcrumbs":"Troubleshooting » Runtime Issues","id":"158","title":"Runtime Issues"},"1580":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1580","title":"Check Configuration"},"1581":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1581","title":"Verify Agent"},"1582":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1582","title":"Test Signing"},"1583":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1583","title":"See Also"},"1584":{"body":"This reference explains every field in the AttestationVerificationResult returned by verify_attestation() and verify_attestation_full().","breadcrumbs":"Attestation Verification Results » Attestation Verification Results","id":"1584","title":"Attestation Verification Results"},"1585":{"body":"{ \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true }, \"evidence\": [ { \"kind\": \"custom\", \"digest_valid\": true, \"freshness_valid\": true, \"errors\": [] } ], \"chain\": { \"depth\": 1, \"all_links_valid\": true, \"links\": [] }, \"errors\": []\n}","breadcrumbs":"Attestation Verification Results » Result Structure","id":"1585","title":"Result Structure"},"1586":{"body":"Field Type Description valid boolean Overall result. true only if all sub-checks pass. crypto object Cryptographic verification results. evidence array Per-evidence-ref verification results (full tier only). chain object|null Derivation chain verification (full tier only, if derivation exists). errors array Human-readable error messages for any failures.","breadcrumbs":"Attestation Verification Results » Top-Level Fields","id":"1586","title":"Top-Level Fields"},"1587":{"body":"Field Type Description signature_valid boolean The cryptographic signature matches the document content and the signer's public key. hash_valid boolean The jacsSha256 hash matches the canonicalized document content. Common failure scenarios: signature_valid: false -- The document was tampered with after signing, or the wrong public key was used. hash_valid: false -- The document body was modified after the hash was computed.","breadcrumbs":"Attestation Verification Results » crypto Object","id":"1587","title":"crypto Object"},"1588":{"body":"Each entry corresponds to one evidence reference in the attestation's evidence array. Field Type Description kind string Evidence type (a2a, email, jwt, tlsnotary, custom). digest_valid boolean The evidence digest matches the expected value. freshness_valid boolean The collectedAt timestamp is within acceptable bounds. errors array Error messages specific to this evidence item. Common failure scenarios: digest_valid: false -- The evidence content has changed since the attestation was created. freshness_valid: false -- The evidence is too old. Check collectedAt and your freshness policy.","breadcrumbs":"Attestation Verification Results » evidence Array (Full Tier Only)","id":"1588","title":"evidence Array (Full Tier Only)"},"1589":{"body":"Present only when the attestation has a derivation field. Field Type Description depth number Number of links in the derivation chain. all_links_valid boolean Every derivation link verified successfully. links array Per-link verification details. Each link in links: Field Type Description input_digests_valid boolean Input digests match the referenced documents. output_digests_valid boolean Output digests match the transformation result. transform object Transform metadata (name, hash, reproducible).","breadcrumbs":"Attestation Verification Results » chain Object (Full Tier Only)","id":"1589","title":"chain Object (Full Tier Only)"},"159":{"body":"Ensure the data and key directories exist and are writable. By default these are ./jacs_data and ./jacs_keys.","breadcrumbs":"Troubleshooting » Agent creation fails","id":"159","title":"Agent creation fails"},"1590":{"body":"","breadcrumbs":"Attestation Verification Results » Verification Tiers","id":"1590","title":"Verification Tiers"},"1591":{"body":"Checks: crypto.signature_valid + crypto.hash_valid Speed: < 1ms typical Network: None Use for: Real-time validation, hot path","breadcrumbs":"Attestation Verification Results » Local Tier (verify_attestation())","id":"1591","title":"Local Tier (verify_attestation())"},"1592":{"body":"Checks: Everything in local + evidence digests + freshness + derivation chain Speed: < 10ms typical (no network), varies with evidence count Network: Optional (for remote evidence resolution) Use for: Audit trails, compliance, trust decisions","breadcrumbs":"Attestation Verification Results » Full Tier (verify_attestation(full=True))","id":"1592","title":"Full Tier (verify_attestation(full=True))"},"1593":{"body":"","breadcrumbs":"Attestation Verification Results » Troubleshooting","id":"1593","title":"Troubleshooting"},"1594":{"body":"The valid field aggregates all sub-checks. If crypto passes but evidence or chain checks fail, valid will be false. Check the evidence and chain fields for details.","breadcrumbs":"Attestation Verification Results » \"valid is false but crypto shows all true\"","id":"1594","title":"\"valid is false but crypto shows all true\""},"1595":{"body":"If you created the attestation without evidence references, the evidence array will be empty. This is not an error -- it means there are no external proofs to verify.","breadcrumbs":"Attestation Verification Results » \"evidence is empty\"","id":"1595","title":"\"evidence is empty\""},"1596":{"body":"If the attestation has no derivation field, chain will be null. This is normal for standalone attestations that don't reference prior attestations.","breadcrumbs":"Attestation Verification Results » \"chain is null\"","id":"1596","title":"\"chain is null\""},"1597":{"body":"JACS uses JSON Canonicalization Scheme (JCS) for hashing. If you serialize and re-parse the document, ensure the serializer preserves field order and does not add/remove whitespace in a way that changes the canonical form.","breadcrumbs":"Attestation Verification Results » \"signature_valid is false after serialization\"","id":"1597","title":"\"signature_valid is false after serialization\""},"1598":{"body":"The jacs attest command creates and verifies attestation documents from the command line. Attestation extends basic signing with structured claims, evidence references, and derivation chains.","breadcrumbs":"Attestation CLI Reference » CLI Reference: jacs attest","id":"1598","title":"CLI Reference: jacs attest"},"1599":{"body":"Create a signed attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest create","id":"1599","title":"jacs attest create"},"16":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"16","title":"What is JACS?"},"160":{"body":"Ensure the signer's public key is accessible. If verifying a document from another agent, you may need to import their public key or use the trust store.","breadcrumbs":"Troubleshooting » Signature verification fails","id":"160","title":"Signature verification fails"},"1600":{"body":"jacs attest create --claims '' [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1600","title":"Synopsis"},"1601":{"body":"Flag Required Description --claims '' Yes JSON array of claims. Each claim must have name and value fields. --subject-type No Type of subject: agent, artifact, workflow, identity. Default: derived from context. --subject-id No Identifier of the subject being attested. --subject-digest No SHA-256 digest of the subject content. --evidence '' No JSON array of evidence references. --from-document No Lift an existing signed JACS document into an attestation. Overrides subject flags. -o, --output No Write attestation to file instead of stdout.","breadcrumbs":"Attestation CLI Reference » Options","id":"1601","title":"Options"},"1602":{"body":"Create a basic attestation: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123def456...\" \\ --claims '[{\"name\": \"reviewed_by\", \"value\": \"human\", \"confidence\": 0.95}]' Attestation with multiple claims: jacs attest create \\ --subject-type agent \\ --subject-id \"agent-abc\" \\ --subject-digest \"sha256hash...\" \\ --claims '[ {\"name\": \"reviewed\", \"value\": true, \"confidence\": 0.95}, {\"name\": \"source\", \"value\": \"internal_db\", \"assuranceLevel\": \"verified\"} ]' Lift an existing signed document to attestation: jacs attest create \\ --from-document mydata.signed.json \\ --claims '[{\"name\": \"approved\", \"value\": true}]' With evidence references: jacs attest create \\ --subject-type artifact \\ --subject-id \"report-456\" \\ --subject-digest \"def789...\" \\ --claims '[{\"name\": \"scanned\", \"value\": true}]' \\ --evidence '[{ \"kind\": \"custom\", \"digests\": {\"sha256\": \"evidence-hash...\"}, \"uri\": \"https://scanner.example.com/results/123\", \"collectedAt\": \"2026-03-04T00:00:00Z\", \"verifier\": {\"name\": \"security-scanner\", \"version\": \"2.0\"} }]' Write to file: jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc123...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o attestation.json","breadcrumbs":"Attestation CLI Reference » Examples","id":"1602","title":"Examples"},"1603":{"body":"Verify an attestation document.","breadcrumbs":"Attestation CLI Reference » jacs attest verify","id":"1603","title":"jacs attest verify"},"1604":{"body":"jacs attest verify [options]","breadcrumbs":"Attestation CLI Reference » Synopsis","id":"1604","title":"Synopsis"},"1605":{"body":"Argument Required Description Yes Path to the attestation JSON file to verify.","breadcrumbs":"Attestation CLI Reference » Arguments","id":"1605","title":"Arguments"},"1606":{"body":"Flag Required Description --full No Use full verification (evidence + derivation chain). Default: local verification (crypto + hash only). --json No Output the verification result as JSON. --key-dir No Directory containing public keys for verification. --max-depth No Maximum derivation chain depth. Default: 10.","breadcrumbs":"Attestation CLI Reference » Options","id":"1606","title":"Options"},"1607":{"body":"Basic verification (local tier): jacs attest verify attestation.json Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Full verification: jacs attest verify attestation.json --full Output: Attestation verification: VALID Signature: OK Hash: OK Signer: agent-id-abc123 Algorithm: ring-Ed25519 Evidence: 1 item(s) verified [0] custom: digest OK, freshness OK Chain: not present JSON output (for scripting): jacs attest verify attestation.json --json Output: { \"valid\": true, \"crypto\": { \"signature_valid\": true, \"hash_valid\": true, \"signer_id\": \"agent-id-abc123\", \"algorithm\": \"ring-Ed25519\" }, \"evidence\": [], \"chain\": null, \"errors\": []\n} Verify with external keys: jacs attest verify attestation.json --key-dir ./trusted_keys/ Pipe through jq: jacs attest verify attestation.json --json | jq '.crypto'","breadcrumbs":"Attestation CLI Reference » Examples","id":"1607","title":"Examples"},"1608":{"body":"","breadcrumbs":"Attestation CLI Reference » Piping and Scripting Patterns","id":"1608","title":"Piping and Scripting Patterns"},"1609":{"body":"jacs attest create \\ --subject-type artifact \\ --subject-id \"doc-001\" \\ --subject-digest \"abc...\" \\ --claims '[{\"name\": \"ok\", \"value\": true}]' \\ -o att.json && \\\njacs attest verify att.json --json | jq '.valid'","breadcrumbs":"Attestation CLI Reference » Create and verify in one pipeline","id":"1609","title":"Create and verify in one pipeline"},"161":{"body":"Check the jacs_data_directory path in your config. Documents are stored as JSON files in that directory.","breadcrumbs":"Troubleshooting » Documents not found","id":"161","title":"Documents not found"},"1610":{"body":"#!/bin/bash\nset -e RESULT=$(jacs attest verify \"$1\" --json 2>/dev/null)\nVALID=$(echo \"$RESULT\" | jq -r '.valid') if [ \"$VALID\" = \"true\" ]; then echo \"Attestation is valid\" exit 0\nelse echo \"Attestation is INVALID\" echo \"$RESULT\" | jq '.errors' exit 1\nfi","breadcrumbs":"Attestation CLI Reference » Check validity in a script","id":"1610","title":"Check validity in a script"},"1611":{"body":"for file in attestations/*.json; do echo -n \"$file: \" jacs attest verify \"$file\" --json | jq -r '.valid'\ndone","breadcrumbs":"Attestation CLI Reference » Batch verify multiple attestations","id":"1611","title":"Batch verify multiple attestations"},"1612":{"body":"Code Meaning 0 Success (create: attestation created; verify: attestation valid) 1 Failure (create: error creating attestation; verify: attestation invalid or error)","breadcrumbs":"Attestation CLI Reference » Exit Codes","id":"1612","title":"Exit Codes"},"1613":{"body":"Variable Description JACS_PRIVATE_KEY_PASSWORD Password for the agent's private key JACS_MAX_DERIVATION_DEPTH Override maximum derivation chain depth (default: 10) JACS_DATA_DIRECTORY Directory for JACS data files JACS_KEY_DIRECTORY Directory containing keys JACS_AGENT_ID_AND_VERSION Agent identity for signing","breadcrumbs":"Attestation CLI Reference » Environment Variables","id":"1613","title":"Environment Variables"},"1614":{"body":"Sign vs. Attest Decision Guide Attestation Tutorial Attestation Verification Results CLI Command Reference","breadcrumbs":"Attestation CLI Reference » See Also","id":"1614","title":"See Also"},"1615":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1615","title":"Migration Guide"},"1616":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1616","title":"Version Compatibility"},"1617":{"body":"","breadcrumbs":"Migration Guide » Migrating Node.js from 0.6.x to 0.7.0","id":"1617","title":"Migrating Node.js from 0.6.x to 0.7.0"},"1618":{"body":"In v0.7.0, all NAPI operations return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). Before (v0.6.x): const agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify(content));\nconst isValid = agent.verifyDocument(doc); After (v0.7.0, async -- recommended): const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content));\nconst isValid = await agent.verifyDocument(doc); After (v0.7.0, sync -- for scripts/CLI): const agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));\nconst isValid = agent.verifyDocumentSync(doc);","breadcrumbs":"Migration Guide » Breaking Change: Async-First API","id":"1618","title":"Breaking Change: Async-First API"},"1619":{"body":"v0.6.x v0.7.0 Async (default) v0.7.0 Sync agent.load(path) await agent.load(path) agent.loadSync(path) agent.createDocument(...) await agent.createDocument(...) agent.createDocumentSync(...) agent.verifyDocument(doc) await agent.verifyDocument(doc) agent.verifyDocumentSync(doc) agent.verifyAgent() await agent.verifyAgent() agent.verifyAgentSync() agent.updateAgent(json) await agent.updateAgent(json) agent.updateAgentSync(json) agent.updateDocument(...) await agent.updateDocument(...) agent.updateDocumentSync(...) agent.signString(data) await agent.signString(data) agent.signStringSync(data) agent.createAgreement(...) await agent.createAgreement(...) agent.createAgreementSync(...) agent.signAgreement(...) await agent.signAgreement(...) agent.signAgreementSync(...) agent.checkAgreement(...) await agent.checkAgreement(...) agent.checkAgreementSync(...)","breadcrumbs":"Migration Guide » Method Renaming Summary","id":"1619","title":"Method Renaming Summary"},"162":{"body":"git clone https://github.com/HumanAssisted/JACS.git\ncd JACS # Rust core + CLI\ncargo build --release\ncargo install --path jacs --features cli # Python binding\ncd jacspy && maturin develop --release # Node.js binding\ncd jacsnpm && npm run build Requires Rust 1.93+ (install via rustup ).","breadcrumbs":"Troubleshooting » Building from Source","id":"162","title":"Building from Source"},"1620":{"body":"These methods remain synchronous without a Sync suffix because they use V8-thread-only APIs (Env, JsObject): agent.signRequest(params) -- unchanged agent.verifyResponse(doc) -- unchanged agent.verifyResponseWithAgentId(doc) -- unchanged","breadcrumbs":"Migration Guide » V8-Thread-Only Methods (No Change)","id":"1620","title":"V8-Thread-Only Methods (No Change)"},"1621":{"body":"The @hai.ai/jacs/simple module follows the same pattern: // v0.6.x\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessage({ action: 'approve' }); // v0.7.0 async (recommended)\nawait jacs.quickstart({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = await jacs.signMessage({ action: 'approve' }); // v0.7.0 sync\njacs.quickstartSync({ name: 'my-agent', domain: 'agent.example.com' });\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Migration Guide » Simplified API (Module-Level)","id":"1621","title":"Simplified API (Module-Level)"},"1622":{"body":"These functions do not call NAPI and remain unchanged (no suffix needed): hashString(), createConfig(), getPublicKey(), isLoaded(), exportAgent(), getAgentInfo() getDnsRecord(), getWellKnownJson(), verifyStandalone() Trust store: trustAgent(), listTrustedAgents(), untrustAgent(), isTrusted(), getTrustedAgent()","breadcrumbs":"Migration Guide » Pure Sync Functions (No Change)","id":"1622","title":"Pure Sync Functions (No Change)"},"1623":{"body":"Update dependency: npm install @hai.ai/jacs@0.7.0 Add await to all NAPI method calls, or append Sync to method names Update test assertions to handle Promises (use async/await in test functions) V8-thread-only methods (signRequest, verifyResponse, verifyResponseWithAgentId) need no changes","breadcrumbs":"Migration Guide » Migration Steps","id":"1623","title":"Migration Steps"},"1624":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1624","title":"Migrating from 0.5.1 to 0.5.2"},"1625":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1625","title":"Migration Notes"},"1626":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1626","title":"Deprecated Environment Variables"},"1627":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1627","title":"New Environment Variables"},"1628":{"body":"In v0.9.0, several method names were standardized. The old names remain as aliases for backward compatibility but are deprecated and will be removed in 1.0.0 (minimum 2 minor releases after deprecation).","breadcrumbs":"Migration Guide » Deprecated Method Aliases (0.9.0)","id":"1628","title":"Deprecated Method Aliases (0.9.0)"},"1629":{"body":"Set the JACS_SHOW_DEPRECATIONS=1 environment variable to emit runtime warnings when deprecated methods are called: export JACS_SHOW_DEPRECATIONS=1 This is recommended during development and CI to identify code that needs updating.","breadcrumbs":"Migration Guide » Runtime Deprecation Warnings","id":"1629","title":"Runtime Deprecation Warnings"},"163":{"body":"GitHub Issues -- report bugs and feature requests Quick Start Guide -- step-by-step setup","breadcrumbs":"Troubleshooting » Getting Help","id":"163","title":"Getting Help"},"1630":{"body":"SDK Deprecated Method Canonical Replacement Since Removal Python (binding) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Python (A2A) a2a.wrap_artifact_with_provenance() a2a.sign_artifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifact() agent.signArtifact() 0.9.0 1.0.0 Node.js (binding) agent.wrapA2aArtifactSync() agent.signArtifactSync() 0.9.0 1.0.0 Node.js (A2A) a2a.wrapArtifactWithProvenance() a2a.signArtifact() 0.9.0 1.0.0 Rust (core) agent.wrap_a2a_artifact() agent.sign_artifact() 0.9.0 1.0.0 Go SignA2AArtifact() (simple API) Uses sign_artifact internally -- -- All aliases behave identically to their canonical replacements. No behavioral changes are needed when migrating -- only rename the method call.","breadcrumbs":"Migration Guide » Deprecated Alias Table","id":"1630","title":"Deprecated Alias Table"},"1631":{"body":"Python: # Before (deprecated)\nwrapped = agent.wrap_a2a_artifact(artifact_json, \"task\") # After (canonical)\nsigned = agent.sign_artifact(artifact_json, \"task\") Node.js: // Before (deprecated)\nconst wrapped = await agent.wrapA2aArtifact(artifactJson, 'task'); // After (canonical)\nconst signed = await agent.signArtifact(artifactJson, 'task'); Python A2A integration: # Before (deprecated)\nwrapped = a2a.wrap_artifact_with_provenance(artifact, \"task\") # After (canonical)\nsigned = a2a.sign_artifact(artifact, \"task\") Node.js A2A integration: // Before (deprecated)\nconst wrapped = await a2a.wrapArtifactWithProvenance(artifact, 'task'); // After (canonical)\nconst signed = await a2a.signArtifact(artifact, 'task');","breadcrumbs":"Migration Guide » Migration Examples","id":"1631","title":"Migration Examples"},"1632":{"body":"Module-level functions (e.g., jacs.load(), jacs.sign_request() in Python; load(), signRequest() in Node.js) were deprecated in earlier releases. Use JacsAgent instance methods instead. See the Python and Node.js API references for the full list.","breadcrumbs":"Migration Guide » Module-Level Function Deprecation (Reminder)","id":"1632","title":"Module-Level Function Deprecation (Reminder)"},"1633":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1633","title":"Migrating from 0.2.x to 0.3.x"},"1634":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1634","title":"Configuration Changes"},"1635":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1635","title":"Migration Steps"},"1636":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1636","title":"Migrating Storage Backends"},"1637":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1637","title":"Filesystem to AWS S3"},"1638":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1638","title":"AWS S3 to Filesystem"},"1639":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1639","title":"Migrating Cryptographic Algorithms"},"164":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"164","title":"Installation"},"1640":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1640","title":"Ed25519 to Post-Quantum"},"1641":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1641","title":"Migrating Between Platforms"},"1642":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1642","title":"Node.js to Python"},"1643":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1643","title":"Sharing Agents Between Platforms"},"1644":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1644","title":"Migrating Key Formats"},"1645":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1645","title":"Unencrypted to Encrypted Keys"},"1646":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1646","title":"Database Migration"},"1647":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1647","title":"Adding Database Storage"},"1648":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1648","title":"MCP Integration Migration"},"1649":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1649","title":"Adding JACS to Existing MCP Server"},"165":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"165","title":"Requirements"},"1650":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1650","title":"HTTP API Migration"},"1651":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1651","title":"Adding JACS to Existing Express API"},"1652":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1652","title":"Troubleshooting Migration"},"1653":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1653","title":"Common Issues"},"1654":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1654","title":"Verification Checklist"},"1655":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1655","title":"Rollback Procedures"},"1656":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1656","title":"See Also"},"166":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"166","title":"Verify Rust Version"},"167":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"167","title":"Installing the CLI"},"168":{"body":"cargo install jacs-cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"168","title":"From crates.io (Recommended)"},"169":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Installation » From Homebrew (macOS)","id":"169","title":"From Homebrew (macOS)"},"17":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust with flexible key resolution (local trust stores, DNS, optional key services) Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"17","title":"The Problem JACS Solves"},"170":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS\ncargo install --path jacs-cli","breadcrumbs":"Installation » From Source","id":"170","title":"From Source"},"171":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"171","title":"Verify Installation"},"172":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Installation » MCP Server","id":"172","title":"MCP Server"},"173":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"173","title":"Using as a Library"},"174":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"174","title":"With Optional Features"},"175":{"body":"Feature Description cli (Deprecated -- use cargo install jacs-cli instead) otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Installation » Available Features","id":"175","title":"Available Features"},"176":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"176","title":"Platform Support"},"177":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq2025, legacy pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"177","title":"WebAssembly Notes"},"178":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ./jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"178","title":"Configuration"},"179":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"179","title":"Manual Configuration"},"18":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"18","title":"JACS Core Philosophy"},"180":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq2025, legacy pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"180","title":"Environment Variables"},"181":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"181","title":"Troubleshooting"},"182":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"182","title":"Build Errors"},"183":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"183","title":"Runtime Errors"},"184":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"184","title":"Next Steps"},"185":{"body":"This page walks through common CLI workflows. For a complete command reference, see the CLI Command Reference . For practical scripting examples, see CLI Examples . The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Tutorial » CLI Tutorial","id":"185","title":"CLI Tutorial"},"186":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Tutorial » Getting Help","id":"186","title":"Getting Help"},"187":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks jacs mcp Start the built-in MCP server (stdio transport)","breadcrumbs":"CLI Tutorial » Commands Overview","id":"187","title":"Commands Overview"},"188":{"body":"","breadcrumbs":"CLI Tutorial » Initialization","id":"188","title":"Initialization"},"189":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Tutorial » Quick Start","id":"189","title":"Quick Start"},"19":{"body":"JACS is built specifically for AI agent communication patterns, while still being usable as a general-purpose signed JSON provenance layer. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"19","title":"🎯 Agent-First Design"},"190":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"CLI Tutorial » MCP Server","id":"190","title":"MCP Server"},"191":{"body":"","breadcrumbs":"CLI Tutorial » Configuration Commands","id":"191","title":"Configuration Commands"},"192":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Tutorial » Create Configuration","id":"192","title":"Create Configuration"},"193":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Tutorial » Read Configuration","id":"193","title":"Read Configuration"},"194":{"body":"","breadcrumbs":"CLI Tutorial » Agent Commands","id":"194","title":"Agent Commands"},"195":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Tutorial » Create Agent","id":"195","title":"Create Agent"},"196":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Tutorial » Verify Agent","id":"196","title":"Verify Agent"},"197":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Tutorial » DNS Commands","id":"197","title":"DNS Commands"},"198":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Tutorial » Lookup Agent","id":"198","title":"Lookup Agent"},"199":{"body":"","breadcrumbs":"CLI Tutorial » Task Commands","id":"199","title":"Task Commands"},"2":{"body":"Signed JSON and file envelopes with tamper detection Persistent agent identity with encrypted private keys Trust bootstrap primitives such as share_public_key, share_agent, and trust_agent_with_key A2A artifact signing and trust policies (open, verified, strict) MCP integration paths for ready-made servers, transport security, or tool registration Framework adapters for Python and Node.js ecosystems Multi-party agreements with quorum, timeout, and algorithm constraints Cross-language compatibility across Rust, Python, Node.js, and Go","breadcrumbs":"Introduction » What JACS Gives You","id":"2","title":"What JACS Gives You"},"20":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"20","title":"🔐 Trust Through Cryptography"},"200":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Tutorial » Create Task","id":"200","title":"Create Task"},"201":{"body":"","breadcrumbs":"CLI Tutorial » Document Commands","id":"201","title":"Document Commands"},"202":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Create Document","id":"202","title":"Create Document"},"203":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Tutorial » Update Document","id":"203","title":"Update Document"},"204":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Tutorial » Verify Document","id":"204","title":"Verify Document"},"205":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Tutorial » Extract Embedded Content","id":"205","title":"Extract Embedded Content"},"206":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Tutorial » Agreement Commands","id":"206","title":"Agreement Commands"},"207":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Tutorial » Environment Variables","id":"207","title":"Environment Variables"},"208":{"body":"","breadcrumbs":"CLI Tutorial » Common Workflows","id":"208","title":"Common Workflows"},"209":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Tutorial » Create and Sign a Document","id":"209","title":"Create and Sign a Document"},"21":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"21","title":"📋 Standards-Based"},"210":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Tutorial » Multi-Agent Agreement","id":"210","title":"Multi-Agent Agreement"},"211":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Tutorial » Verify Another Agent","id":"211","title":"Verify Another Agent"},"212":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Tutorial » Exit Codes","id":"212","title":"Exit Codes"},"213":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Tutorial » Next Steps","id":"213","title":"Next Steps"},"214":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"214","title":"Creating an Agent"},"215":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"215","title":"What is an Agent?"},"216":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"216","title":"Creating Your First Agent"},"217":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"217","title":"Quick Method (Recommended)"},"218":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"218","title":"Manual Method"},"219":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"Engaging, accurate content delivered\", \"failureDescription\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"219","title":"With Custom Agent Definition"},"22":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"22","title":"Key Concepts"},"220":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"220","title":"Agent Types"},"221":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"name\": \"data-processing\", \"serviceDescription\": \"Process and transform data\", \"successDescription\": \"Data transformed successfully\", \"failureDescription\": \"Input data could not be processed\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"221","title":"AI Agent Example"},"222":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@example.com\", \"isPrimary\": true } ], \"jacsServices\": [ { \"name\": \"code-review\", \"serviceDescription\": \"Review code for quality and security\", \"successDescription\": \"Actionable review delivered\", \"failureDescription\": \"Could not complete review\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"222","title":"Human Agent Example"},"223":{"body":"Services define what an agent can do. Each service has: { \"name\": \"service-identifier\", \"serviceDescription\": \"What the service does\", \"successDescription\": \"Definition of successful completion\", \"failureDescription\": \"What constitutes failure\"\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"223","title":"Agent Services"},"224":{"body":"{ \"name\": \"document-processing\", \"serviceDescription\": \"Process and analyze documents\", \"successDescription\": \"Documents processed accurately\", \"failureDescription\": \"Unable to process one or more documents\", \"costDescription\": \"Usage-based pricing\", \"privacyPolicy\": \"https://example.com/privacy\", \"termsOfService\": \"https://example.com/terms\"\n}","breadcrumbs":"Creating an Agent » Detailed Service Example","id":"224","title":"Detailed Service Example"},"225":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"firstName\": \"Example\", \"lastName\": \"Agent\", \"email\": \"agent@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"225","title":"Agent Contacts"},"226":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"226","title":"Cryptographic Keys"},"227":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq2025 Post-quantum ML-DSA-87 signatures Future-proof security pq-dilithium Legacy post-quantum signatures Backward compatibility only (deprecated)","breadcrumbs":"Creating an Agent » Key Algorithms","id":"227","title":"Key Algorithms"},"228":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"228","title":"Configure Key Algorithm"},"229":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"229","title":"Key Storage"},"23":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"23","title":"Agents"},"230":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"230","title":"Verifying Agents"},"231":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"231","title":"Verify Your Own Agent"},"232":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"232","title":"Verify a Specific Agent File"},"233":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"233","title":"With DNS Verification"},"234":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"234","title":"Updating Agents"},"235":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"name\": \"content-generation\", \"serviceDescription\": \"Generate high-quality content\", \"successDescription\": \"High-quality content generated\", \"failureDescription\": \"Unable to generate requested content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"235","title":"Agent Document Structure"},"236":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"236","title":"Best Practices"},"237":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"237","title":"Security"},"238":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"238","title":"Agent Design"},"239":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"239","title":"Operations"},"24":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"24","title":"Documents"},"240":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"240","title":"Next Steps"},"241":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"241","title":"Working with Documents"},"242":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"242","title":"What is a JACS Document?"},"243":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"243","title":"Creating Documents"},"244":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"244","title":"From a JSON File"},"245":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"245","title":"From a Directory"},"246":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"246","title":"With Custom Schema"},"247":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"247","title":"Output Options"},"248":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"248","title":"Document Structure"},"249":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"249","title":"Required Header Fields"},"25":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"25","title":"Tasks"},"250":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"250","title":"Document Levels"},"251":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"251","title":"File Attachments"},"252":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"252","title":"Attach Files"},"253":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"253","title":"Embed vs. Reference"},"254":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"254","title":"Attachment Structure"},"255":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"255","title":"Verifying Documents"},"256":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"256","title":"Basic Verification"},"257":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"257","title":"Verify with Schema"},"258":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"258","title":"Verify Directory"},"259":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"259","title":"Verbose Output"},"26":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"26","title":"Agreements"},"260":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"260","title":"Updating Documents"},"261":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"261","title":"Update with Attachments"},"262":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"262","title":"Extracting Embedded Content"},"263":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"263","title":"Document Types"},"264":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"264","title":"Task Documents"},"265":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"265","title":"Message Documents"},"266":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"266","title":"Custom Documents"},"267":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"267","title":"Version History"},"268":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"268","title":"Working with Multiple Agents"},"269":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"269","title":"Different Agent Signs Document"},"27":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"27","title":"How JACS Works"},"270":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"270","title":"Verify Document from Unknown Agent"},"271":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"271","title":"Best Practices"},"272":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"272","title":"Document Design"},"273":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"273","title":"Security"},"274":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"274","title":"Performance"},"275":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"275","title":"Common Workflows"},"276":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"276","title":"Create and Share Document"},"277":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"277","title":"Track Document Changes"},"278":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"278","title":"Process Multiple Documents"},"279":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"279","title":"Next Steps"},"28":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"28","title":"Real-World Examples"},"280":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"280","title":"Creating and Using Agreements"},"281":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"281","title":"What is an Agreement?"},"282":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"282","title":"Agreement Lifecycle"},"283":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"283","title":"Creating Agreements"},"284":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"284","title":"Basic Agreement"},"285":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"285","title":"With Context"},"286":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"286","title":"Signing Agreements"},"287":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"287","title":"Sign as Current Agent"},"288":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"288","title":"Sign as Different Agent"},"289":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"289","title":"Sign with Response"},"29":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"29","title":"🤖 AI Content Pipeline"},"290":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"290","title":"Checking Agreement Status"},"291":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"291","title":"Check if Complete"},"292":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"292","title":"Agreement Structure"},"293":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"293","title":"Task Agreements"},"294":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"294","title":"Multi-Agent Workflow Example"},"295":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"295","title":"Agreement Hash"},"296":{"body":"","breadcrumbs":"Creating and Using Agreements » Agreement Options (v0.6.2+)","id":"296","title":"Agreement Options (v0.6.2+)"},"297":{"body":"Set a deadline after which the agreement expires: # Python\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id], timeout=\"2025-12-31T23:59:59Z\"\n) If the deadline passes before all required signatures are collected, check_agreement() returns an error.","breadcrumbs":"Creating and Using Agreements » Timeout","id":"297","title":"Timeout"},"298":{"body":"Require only a subset of agents to sign: # Only 2 of 3 agents need to sign\nagreement = client.create_agreement( document=proposal, agent_ids=[alice.agent_id, bob.agent_id, carol.agent_id], quorum=2\n) When quorum is met, check_agreement() succeeds even if some agents haven't signed.","breadcrumbs":"Creating and Using Agreements » Quorum (M-of-N Signing)","id":"298","title":"Quorum (M-of-N Signing)"},"299":{"body":"Enforce that only specific cryptographic algorithms can be used: # Only post-quantum algorithms allowed\nagreement = client.create_agreement( document=proposal, agent_ids=agent_ids, required_algorithms=[\"pq2025\", \"pq-dilithium\"], minimum_strength=\"post-quantum\"\n) An agent using RSA-PSS or Ed25519 will be rejected when trying to sign this agreement.","breadcrumbs":"Creating and Using Agreements » Algorithm Constraints","id":"299","title":"Algorithm Constraints"},"3":{"body":"If you are choosing where to start: Which Integration? Use Cases MCP Overview A2A Interoperability Python Framework Adapters Node.js LangChain.js","breadcrumbs":"Introduction » Best Entry Points","id":"3","title":"Best Entry Points"},"30":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"30","title":"📊 Data Processing Workflow"},"300":{"body":"agreement = client.create_agreement( document={\"proposal\": \"Deploy model v2\"}, agent_ids=[alice.agent_id, bob.agent_id, mediator.agent_id], question=\"Do you approve deployment?\", timeout=\"2025-06-30T00:00:00Z\", quorum=2, minimum_strength=\"post-quantum\"\n)","breadcrumbs":"Creating and Using Agreements » Combined Options","id":"300","title":"Combined Options"},"301":{"body":"For running multiple agents in one process, use JacsClient instead of the module-level API:","breadcrumbs":"Creating and Using Agreements » Using JacsClient (Instance-Based API)","id":"301","title":"Using JacsClient (Instance-Based API)"},"302":{"body":"from jacs.client import JacsClient alice = JacsClient.ephemeral(\"ring-Ed25519\") # for testing\nbob = JacsClient.ephemeral(\"ring-Ed25519\") signed = alice.sign_message({\"action\": \"approve\"})\n# alice.agent_id, bob.agent_id are unique See the full example: examples/multi_agent_agreement.py","breadcrumbs":"Creating and Using Agreements » Python","id":"302","title":"Python"},"303":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const alice = JacsClient.ephemeral('ring-Ed25519');\nconst bob = JacsClient.ephemeral('ring-Ed25519'); const signed = alice.signMessage({ action: 'approve' }); See the full example: examples/multi_agent_agreement.ts","breadcrumbs":"Creating and Using Agreements » Node.js","id":"303","title":"Node.js"},"304":{"body":"The JACS MCP server exposes agreement tools that LLMs can use directly: Tool Description jacs_create_agreement Create agreement with quorum, timeout, algorithm constraints jacs_sign_agreement Co-sign an agreement jacs_check_agreement Check status: who signed, quorum met, expired See MCP Integration for setup.","breadcrumbs":"Creating and Using Agreements » MCP Tools for Agreements","id":"304","title":"MCP Tools for Agreements"},"305":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree Use quorum for resilience : Don't require unanimous consent unless necessary Set timeouts : Prevent agreements from hanging indefinitely Enforce post-quantum for sensitive agreements : Use minimum_strength: \"post-quantum\" for long-term security","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"305","title":"Best Practices"},"306":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security Multi-Agent Agreement Example (Python) Multi-Agent Agreement Example (Node.js)","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"306","title":"Next Steps"},"307":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"307","title":"DNS-Based Agent Verification"},"308":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"308","title":"Overview"},"309":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider DNS verification is also a practical bridge for DID-style deployments: you can publish DID metadata for discovery while using DNS TXT + JACS signature verification as the operational trust anchor. No blockchain is required for this model.","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"309","title":"Why DNS Verification?"},"31":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"31","title":"🔍 Multi-Agent Analysis"},"310":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"310","title":"Publishing Agent Identity"},"311":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"311","title":"Generate DNS Commands"},"312":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"312","title":"Provider-Specific Formats"},"313":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"313","title":"DNS Record Structure"},"314":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"314","title":"Setting Up with Route 53 (AWS)"},"315":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"315","title":"Setting Up with Cloudflare"},"316":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"316","title":"Setting Up with Azure DNS"},"317":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"317","title":"Verifying Agents with DNS"},"318":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"318","title":"Look Up Another Agent"},"319":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"319","title":"Verify Agent with DNS"},"32":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ⚠️ Schema-native (lifecycle via integrations) ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent JACS provides signed artifacts, schemas, trust primitives, and auditability. Real-time transport and task orchestration are handled by integrations (e.g., A2A, MCP, HTTP server layers).","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"32","title":"Benefits Over Alternatives"},"320":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"320","title":"DNS Validation Modes"},"321":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"321","title":"Agent Domain Configuration"},"322":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"322","title":"DNSSEC Requirements"},"323":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"323","title":"Checking DNSSEC Status"},"324":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"324","title":"Security Considerations"},"325":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"325","title":"Trust Model"},"326":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"326","title":"Best Practices"},"327":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"327","title":"Caching"},"328":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"328","title":"Troubleshooting"},"329":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"329","title":"\"DNS record not found\""},"33":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"33","title":"When to Use JACS"},"330":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"330","title":"\"DNSSEC validation failed\""},"331":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"331","title":"\"Fingerprint mismatch\""},"332":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"332","title":"Integration with CI/CD"},"333":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"333","title":"Next Steps"},"334":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"334","title":"Rust Library API"},"335":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"335","title":"Adding JACS as a Dependency"},"336":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description sqlite Lightweight sync SQLite backend (default) sqlx-sqlite Async SQLite backend via sqlx (requires tokio) otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support agreements Agreement lifecycle support a2a Agent-to-Agent protocol support attestation Attestation support","breadcrumbs":"Rust Library API » Feature Flags","id":"336","title":"Feature Flags"},"337":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"337","title":"Core Types"},"338":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"338","title":"Agent"},"339":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"339","title":"JACSDocument"},"34":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"34","title":"Next Steps"},"340":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"340","title":"Creating an Agent"},"341":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"341","title":"Minimal Agent"},"342":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"342","title":"Loading by Configuration"},"343":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"343","title":"DNS Strict Mode"},"344":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"344","title":"Working with Documents"},"345":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"345","title":"Creating Documents"},"346":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"346","title":"Creating Documents with Attachments"},"347":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"347","title":"Loading Documents"},"348":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"348","title":"Updating Documents"},"349":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"349","title":"Verifying Documents"},"35":{"body":"Choose the smallest supported integration that matches your deployment.","breadcrumbs":"Which Integration? » Which JACS Path Should I Use?","id":"35","title":"Which JACS Path Should I Use?"},"350":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"350","title":"Saving Documents"},"351":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"351","title":"Creating Tasks"},"352":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"352","title":"Signing and Verification"},"353":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"353","title":"Signing Documents"},"354":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"354","title":"Verification"},"355":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"355","title":"Custom Schema Validation"},"356":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"356","title":"Configuration"},"357":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"357","title":"Loading Configuration"},"358":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"358","title":"Accessing Configuration"},"359":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"359","title":"Observability"},"36":{"body":"If you need... Start here Why Signed tool outputs inside LangChain / LangGraph on Python Python Framework Adapters Smallest path: sign tool results without adding MCP Signed tool outputs inside LangChain.js / LangGraph on Node Node.js LangChain.js Same idea for TypeScript A ready-made local MCP server for Claude, Codex, or another MCP client MCP Overview and jacs-mcp Fastest full server path To secure your existing MCP server/client code Python MCP or Node.js MCP Use wrappers or transport proxies around code you already have Cross-organization agent discovery and signed artifact exchange A2A Interoperability MCP is not enough for this boundary Signed HTTP APIs without adopting MCP Python Framework Adapters , Express , Koa Sign requests or responses at the web layer Multi-party approval or quorum workflows Multi-Agent Agreements Agreements are the right primitive, not just one-off signatures Direct signing from scripts, jobs, or services Quick Start , Python Basic Usage , Node Basic Usage , Go Installation Start from sign/verify before adding framework layers","breadcrumbs":"Which Integration? » Start Here","id":"36","title":"Start Here"},"360":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"360","title":"Initialize Default Observability"},"361":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"361","title":"Custom Observability Configuration"},"362":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // AWS object storage\nlet storage = MultiStorage::new(\"aws\".to_string())?; For signed document CRUD/search, prefer the unified DocumentService surface: use jacs::document::service_from_agent; let docs = service_from_agent(agent_handle)?;\n// `fs` and `rusqlite` currently resolve in JACS core.","breadcrumbs":"Rust Library API » Storage Backends","id":"362","title":"Storage Backends"},"363":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"363","title":"Error Handling"},"364":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"364","title":"Thread Safety"},"365":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"365","title":"Complete Example"},"366":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"366","title":"Next Steps"},"367":{"body":"This page covers the Rust-specific observability API: ObservabilityConfig, LogDestination, MetricsConfig, TracingConfig, and related types. For a cross-language guide covering structured events, OTEL collector setup, and monitoring backend integration, see the Observability & Monitoring Guide . JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your Rust applications.","breadcrumbs":"Observability (Rust API) » Observability (Rust API)","id":"367","title":"Observability (Rust API)"},"368":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability (Rust API) » Overview","id":"368","title":"Overview"},"369":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support Convenience helpers for recording operations are always available (no feature flag needed).","breadcrumbs":"Observability (Rust API) » Feature Flags","id":"369","title":"Feature Flags"},"37":{"body":"Everything stays inside one service you control and your own logs are enough You only need integrity, not signer identity or third-party verification A plain checksum or database audit log already satisfies the requirement","breadcrumbs":"Which Integration? » When You Probably Do Not Need JACS","id":"37","title":"When You Probably Do Not Need JACS"},"370":{"body":"","breadcrumbs":"Observability (Rust API) » Quick Start","id":"370","title":"Quick Start"},"371":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability (Rust API) » Default Configuration","id":"371","title":"Default Configuration"},"372":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability (Rust API) » Custom Configuration","id":"372","title":"Custom Configuration"},"373":{"body":"","breadcrumbs":"Observability (Rust API) » Logging","id":"373","title":"Logging"},"374":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability (Rust API) » Log Levels","id":"374","title":"Log Levels"},"375":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability (Rust API) » Log Destinations","id":"375","title":"Log Destinations"},"376":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability (Rust API) » Using Logs","id":"376","title":"Using Logs"},"377":{"body":"","breadcrumbs":"Observability (Rust API) » Metrics","id":"377","title":"Metrics"},"378":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Enabling Metrics","id":"378","title":"Enabling Metrics"},"379":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability (Rust API) » Metrics Destinations","id":"379","title":"Metrics Destinations"},"38":{"body":"Prototype with quickstart and simple sign/verify calls. Attach provenance at the boundary that already exists in your system: LangChain tool, FastAPI response, MCP call, or A2A artifact. Add trust policy only when other agents or organizations enter the picture. Add agreements, DNS, or attestations only if your deployment actually needs them. The mistake to avoid is starting with the broadest story. Start with the boundary you need to secure now.","breadcrumbs":"Which Integration? » Recommended Adoption Order","id":"38","title":"Recommended Adoption Order"},"380":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability (Rust API) » Recording Metrics","id":"380","title":"Recording Metrics"},"381":{"body":"JACS convenience helpers automatically record: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability (Rust API) » Built-in Metrics","id":"381","title":"Built-in Metrics"},"382":{"body":"","breadcrumbs":"Observability (Rust API) » Distributed Tracing","id":"382","title":"Distributed Tracing"},"383":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability (Rust API) » Enabling Tracing","id":"383","title":"Enabling Tracing"},"384":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability (Rust API) » Tracing Destinations","id":"384","title":"Tracing Destinations"},"385":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability (Rust API) » Sampling Configuration","id":"385","title":"Sampling Configuration"},"386":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability (Rust API) » Using Tracing Spans","id":"386","title":"Using Tracing Spans"},"387":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability (Rust API) » Configuration File","id":"387","title":"Configuration File"},"388":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability (Rust API) » OpenTelemetry Collector Setup","id":"388","title":"OpenTelemetry Collector Setup"},"389":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability (Rust API) » Reset and Cleanup","id":"389","title":"Reset and Cleanup"},"39":{"body":"This chapter stays close to current product use, not roadmap integrations.","breadcrumbs":"Use cases » Use Cases","id":"39","title":"Use Cases"},"390":{"body":"","breadcrumbs":"Observability (Rust API) » Best Practices","id":"390","title":"Best Practices"},"391":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability (Rust API) » Development","id":"391","title":"Development"},"392":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability (Rust API) » Production","id":"392","title":"Production"},"393":{"body":"","breadcrumbs":"Observability (Rust API) » Troubleshooting","id":"393","title":"Troubleshooting"},"394":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability (Rust API) » Logs Not Appearing","id":"394","title":"Logs Not Appearing"},"395":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability (Rust API) » Metrics Not Exporting","id":"395","title":"Metrics Not Exporting"},"396":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability (Rust API) » Traces Missing","id":"396","title":"Traces Missing"},"397":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability (Rust API) » Next Steps","id":"397","title":"Next Steps"},"398":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"398","title":"Node.js Installation"},"399":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"399","title":"Requirements"},"4":{"body":"","breadcrumbs":"Introduction » Implementations","id":"4","title":"Implementations"},"40":{"body":"Use this when: Claude Desktop, Codex, or another MCP client is calling tools that should not run on blind trust. Recommended JACS path: Use jacs-mcp if you want a full server immediately Use Python MCP Integration or Node.js MCP Integration if you already have server code What JACS adds: Signed JSON-RPC messages Fail-closed verification by default Agent identity and auditability for tool calls","breadcrumbs":"Use cases » 1. Secure A Local MCP Tool Server","id":"40","title":"1. Secure A Local MCP Tool Server"},"400":{"body":"","breadcrumbs":"Installation » Installation","id":"400","title":"Installation"},"401":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"401","title":"Using npm"},"402":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"402","title":"Using yarn"},"403":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"403","title":"Using pnpm"},"404":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality (async API)\ntry { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"404","title":"Verify Installation"},"405":{"body":"The @hai.ai/jacs package exposes these entry points:","breadcrumbs":"Installation » Package Structure","id":"405","title":"Package Structure"},"406":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';\nimport * as jacs from '@hai.ai/jacs/simple'; // quickstart, load, signMessage, verify, etc.","breadcrumbs":"Installation » Core and simple API","id":"406","title":"Core and simple API"},"407":{"body":"import { JacsClient } from '@hai.ai/jacs/client';","breadcrumbs":"Installation » Instance-based client (recommended for new code)","id":"407","title":"Instance-based client (recommended for new code)"},"408":{"body":"import { createJACSTransportProxy, createJACSTransportProxyAsync, registerJacsTools } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP (@hai.ai/jacs/mcp)","id":"408","title":"MCP (@hai.ai/jacs/mcp)"},"409":{"body":"import { jacsMiddleware } from '@hai.ai/jacs/express';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa';\nimport { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http'; // legacy","breadcrumbs":"Installation » HTTP / framework adapters","id":"409","title":"HTTP / framework adapters"},"41":{"body":"Use this when: your model already runs inside LangChain or LangGraph and you want signed tool outputs without introducing MCP. Recommended JACS path: Python Framework Adapters Node.js LangChain.js What JACS adds: Signed tool results Optional strict mode at the adapter boundary Minimal changes to existing framework code","breadcrumbs":"Use cases » 2. Add Provenance To LangChain Or LangGraph","id":"41","title":"2. Add Provenance To LangChain Or LangGraph"},"410":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"410","title":"TypeScript Support"},"411":{"body":"","breadcrumbs":"Installation » Configuration","id":"411","title":"Configuration"},"412":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"412","title":"Basic Configuration"},"413":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"413","title":"Configuration File"},"414":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"414","title":"Environment Variables"},"415":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"415","title":"Storage Backends"},"416":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"416","title":"File System (Default)"},"417":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"417","title":"Local Indexed SQLite"},"418":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"418","title":"AWS Storage"},"419":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"419","title":"Memory Storage (Testing)"},"42":{"body":"Use this when: one agent produces work that another organization, service, or team must verify before acting on it. Recommended JACS path: A2A Interoperability A2A Quickstart What JACS adds: Agent Cards with JACS provenance metadata Signed A2A artifacts Trust policies for admission control","breadcrumbs":"Use cases » 3. Exchange Signed Artifacts Across Organizations","id":"42","title":"3. Exchange Signed Artifacts Across Organizations"},"420":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"420","title":"Cryptographic Algorithms"},"421":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"421","title":"ring-Ed25519 (Recommended)"},"422":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"422","title":"RSA-PSS"},"423":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"423","title":"pq-dilithium (Post-Quantum)"},"424":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"424","title":"pq2025 (Post-Quantum Hybrid)"},"425":{"body":"","breadcrumbs":"Installation » Development Setup","id":"425","title":"Development Setup"},"426":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"426","title":"Project Structure"},"427":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"427","title":"Package.json Setup"},"428":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; async function main() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\" }); const signedDoc = await agent.createDocument(documentJson); console.log('Document created:', signedDoc); const isValid = await agent.verifyDocument(signedDoc); console.log('Document valid:', isValid); console.log('JACS agent ready!');\n}\nmain().catch(console.error);","breadcrumbs":"Installation » Basic Application","id":"428","title":"Basic Application"},"429":{"body":"","breadcrumbs":"Installation » Common Issues","id":"429","title":"Common Issues"},"43":{"body":"Use this when: the boundary is an API route, not an MCP transport. Recommended JACS path: Python Framework Adapters for FastAPI Express Middleware Koa Middleware What JACS adds: Signed JSON responses Verified inbound requests A clean upgrade path to A2A discovery on the same app boundary","breadcrumbs":"Use cases » 4. Sign HTTP Or API Boundaries Without MCP","id":"43","title":"4. Sign HTTP Or API Boundaries Without MCP"},"430":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"430","title":"Module Not Found"},"431":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"431","title":"Permission Errors"},"432":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"432","title":"Binary Compatibility"},"433":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"433","title":"TypeScript Issues"},"434":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"434","title":"Next Steps"},"435":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"435","title":"Examples"},"436":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"436","title":"Simplified API"},"437":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended -- does not block the event loop)\nconst signed = await jacs.signMessage({ action: 'approve' }); // Sync (blocks event loop, use in scripts or CLI tools)\nconst signed = jacs.signMessageSync({ action: 'approve' });","breadcrumbs":"Simplified API » v0.7.0: Async-First API","id":"437","title":"v0.7.0: Async-First API"},"438":{"body":"Quickstart -- one call (with required name/domain) to start signing: const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass { algorithm: 'ring-Ed25519' } to override the default (pq2025). To load an existing agent explicitly, use load() instead: const agent = await jacs.load('./jacs.config.json');\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });","breadcrumbs":"Simplified API » Quick Start","id":"438","title":"Quick Start"},"439":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"439","title":"When to Use the Simplified API"},"44":{"body":"Use this when: multiple agents must sign off on the same document, deployment, or decision. Recommended JACS path: Multi-Agent Agreements Rust Agreements What JACS adds: M-of-N quorum Timeout and algorithm constraints Verifiable signature chain across signers","breadcrumbs":"Use cases » 5. Run Multi-Agent Approval Workflows","id":"44","title":"5. Run Multi-Agent Approval Workflows"},"440":{"body":"Every function that calls into NAPI has both async (default) and sync variants: Function Sync Variant Description quickstart(options) quickstartSync(options) Create a persistent agent with keys on disk create(options) createSync(options) Create a new agent programmatically load(configPath) loadSync(configPath) Load agent from config file verifySelf() verifySelfSync() Verify agent's own integrity updateAgent(data) updateAgentSync(data) Update agent document updateDocument(id, data) updateDocumentSync(id, data) Update existing document signMessage(data) signMessageSync(data) Sign any JSON data signFile(path, embed) signFileSync(path, embed) Sign a file verify(doc) verifySync(doc) Verify signed document verifyById(id) verifyByIdSync(id) Verify by storage ID reencryptKey(old, new) reencryptKeySync(old, new) Re-encrypt private key createAgreement(doc, ids, ...) createAgreementSync(doc, ids, ...) Create multi-party agreement signAgreement(doc) signAgreementSync(doc) Sign an agreement checkAgreement(doc) checkAgreementSync(doc) Check agreement status audit(options?) auditSync(options?) Run a security audit Pure sync functions (no NAPI call, no suffix needed): Function Description verifyStandalone(doc, opts?) Verify without loading an agent getPublicKey() Get public key isLoaded() Check if agent is loaded getDnsRecord(domain, ttl?) Get DNS TXT record getWellKnownJson() Get well-known JSON trustAgent(json) Add agent to trust store listTrustedAgents() List trusted agent IDs untrustAgent(id) Remove from trust store isTrusted(id) Check if agent is trusted getTrustedAgent(id) Get trusted agent's JSON generateVerifyLink(doc, baseUrl?) Generate verification URL","breadcrumbs":"Simplified API » API Reference","id":"440","title":"API Reference"},"441":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Node quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before signMessage() or verify(). Parameters: options (object, required fields): { name: string, domain: string, description?: string, algorithm?: string, configPath?: string }. Default algorithm: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". Returns: Promise (async) or AgentInfo (sync) const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config path: ${info.configPath}`);\nconsole.log(`Public key: ${info.publicKeyPath}`);\nconsole.log(`Private key: ${info.privateKeyPath}`); // Or with a specific algorithm\nconst info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n}); // Sync variant (blocks event loop)\nconst info = jacs.quickstartSync({ name: 'my-agent', domain: 'my-agent.example.com', algorithm: 'ring-Ed25519',\n});","breadcrumbs":"Simplified API » quickstart(options)","id":"441","title":"quickstart(options)"},"442":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(options) when you want to load a specific config file explicitly. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: Promise (async) or AgentInfo (sync) const info = await jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`); // Sync variant\nconst info = jacs.loadSync('./jacs.config.json');","breadcrumbs":"Simplified API » load(configPath?)","id":"442","title":"load(configPath?)"},"443":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { await jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"443","title":"isLoaded()"},"444":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"444","title":"getAgentInfo()"},"445":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: Promise (async) or VerificationResult (sync) Throws: Error if no agent is loaded const result = await jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"445","title":"verifySelf()"},"446":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: Promise (async) or SignedDocument (sync) Throws: Error if no agent is loaded // Async (recommended)\nconst signed = await jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); // Sync\nconst signed = jacs.signMessageSync({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"446","title":"signMessage(data)"},"447":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: Promise (async) or SignedDocument (sync) // Reference only (stores hash)\nconst signed = await jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = await jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"447","title":"signFile(filePath, embed?)"},"448":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: Promise (async) or VerificationResult (sync) const result = await jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"448","title":"verify(signedDocument)"},"449":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (always sync -- no NAPI call) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"449","title":"verifyStandalone(signedDocument, options?)"},"45":{"body":"Use this when: you need an artifact to stay verifiable after it leaves the process that created it. Recommended JACS path: Verifying Signed Documents Working with Documents Python Basic Usage Node.js Basic Usage What JACS adds: Self-contained signed envelopes Re-verification at read time Cross-language interoperability","breadcrumbs":"Use cases » 6. Keep Signed Files Or JSON As Durable Artifacts","id":"45","title":"6. Keep Signed Files Or JSON As Durable Artifacts"},"450":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Promise (async) or object (sync) See Security Model -- Security Audit for full details and options. const result = await jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"450","title":"audit(options?)"},"451":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: Promise (async) or string (sync) -- The updated and re-signed agent document const agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'hybrid';\nconst updated = await jacs.updateAgent(agentDoc);","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"451","title":"updateAgent(newAgentData)"},"452":{"body":"Update an existing document with new data and re-sign it. Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: Promise (async) or SignedDocument (sync) const original = await jacs.signMessage({ status: 'pending', amount: 100 });\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved';\nconst updated = await jacs.updateDocument(original.documentId, doc);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"452","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"453":{"body":"Export the current agent document for sharing or inspection. Returns: string -- The agent JSON document (pure sync, no suffix needed) const agentDoc = jacs.exportAgent();\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"453","title":"exportAgent()"},"454":{"body":"Return the DNS TXT record line for the loaded agent. Pure sync, no suffix needed. Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"454","title":"getDnsRecord(domain, ttl?)"},"455":{"body":"Return the well-known JSON object for the loaded agent. Pure sync, no suffix needed. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"455","title":"getWellKnownJson()"},"456":{"body":"Get the loaded agent's public key in PEM format. Pure sync, no suffix needed. Returns: string -- PEM-encoded public key const pem = jacs.getPublicKey();\nconsole.log(pem);","breadcrumbs":"Simplified API » getPublicKey()","id":"456","title":"getPublicKey()"},"457":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"457","title":"Type Definitions"},"458":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"458","title":"AgentInfo"},"459":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"459","title":"SignedDocument"},"46":{"body":"Use this when: external systems need to verify your agent identity but you do not want a shared auth server in the middle. Recommended JACS path: DNS-Based Verification DNS Trust Anchoring What JACS adds: Public key fingerprint anchoring DNS-based verification flows Local private-key custody","breadcrumbs":"Use cases » 7. Publish Public Identity Without A Central Auth Service","id":"46","title":"7. Publish Public Identity Without A Central Auth Service"},"460":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"460","title":"VerificationResult"},"461":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"461","title":"Attachment"},"462":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = await jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = await jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = await jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = await jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = await jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nconst updatedAgent = await jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"462","title":"Complete Example"},"463":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\nawait jacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = await jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"463","title":"MCP Integration"},"464":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { await jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded await jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { await jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = await jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"464","title":"Error Handling"},"465":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"465","title":"See Also"},"466":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"466","title":"Basic Usage"},"467":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"Basic Usage » v0.7.0: Async-First API","id":"467","title":"v0.7.0: Async-First API"},"468":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"468","title":"Initializing an Agent"},"469":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file (async)\nawait agent.load('./jacs.config.json'); // Or use sync variant\nagent.loadSync('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"469","title":"Create and Load Agent"},"47":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"47","title":"Core Concepts"},"470":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"470","title":"Configuration File"},"471":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"471","title":"Creating Documents"},"472":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = await agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"472","title":"Basic Document Creation"},"473":{"body":"Validate against a custom JSON Schema: const signedDocument = await agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"473","title":"With Custom Schema"},"474":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"474","title":"With Output File"},"475":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"475","title":"Without Saving"},"476":{"body":"const signedDocument = await agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"476","title":"With Attachments"},"477":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"477","title":"Verifying Documents"},"478":{"body":"// Verify a document's signature and hash\nconst isValid = await agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"478","title":"Verify Document Signature"},"479":{"body":"// Verify with a custom signature field\nconst isValid = await agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"479","title":"Verify Specific Signature Field"},"48":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"48","title":"Agents"},"480":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"480","title":"Updating Documents"},"481":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"481","title":"Update Existing Document"},"482":{"body":"const updatedDocument = await agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"482","title":"Update with New Attachments"},"483":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"483","title":"Signing and Verification"},"484":{"body":"// Sign any string data\nconst signature = await agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"484","title":"Sign Arbitrary Data"},"485":{"body":"// Verify a signature on string data\nconst isValid = await agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"485","title":"Verify Arbitrary Data"},"486":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"486","title":"Working with Agreements"},"487":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = await agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"487","title":"Create an Agreement"},"488":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = await agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"488","title":"Sign an Agreement"},"489":{"body":"// Check which agents have signed\nconst status = await agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"489","title":"Check Agreement Status"},"49":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"49","title":"Agent Identity"},"490":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"490","title":"Agent Operations"},"491":{"body":"// Verify the loaded agent's signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent valid:', isValid);","breadcrumbs":"Basic Usage » Verify Agent","id":"491","title":"Verify Agent"},"492":{"body":"// Update agent document\nconst updatedAgentJson = await agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"492","title":"Update Agent"},"493":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = await agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"493","title":"Sign External Agent"},"494":{"body":"These methods remain synchronous (V8-thread-only, no Sync suffix):","breadcrumbs":"Basic Usage » Request/Response Signing","id":"494","title":"Request/Response Signing"},"495":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"495","title":"Sign a Request"},"496":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"496","title":"Verify a Response"},"497":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"497","title":"Utility Functions"},"498":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"498","title":"Hash String"},"499":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"499","title":"Create Configuration"},"5":{"body":"Deepest feature surface CLI plus library APIs Best fit when you want a ready-made MCP server via jacs mcp","breadcrumbs":"Introduction » Rust","id":"5","title":"Rust"},"50":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"50","title":"Agent Lifecycle"},"500":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { await agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = await agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = await agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"500","title":"Error Handling"},"501":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = await agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (await agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = await agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = await agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = await agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"501","title":"Complete Example"},"502":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"502","title":"Next Steps"},"503":{"body":"Node has two MCP stories: Wrap an MCP transport with signing and verification Register JACS operations as MCP tools on an existing server If you want a full out-of-the-box server instead, prefer the Rust jacs-mcp binary.","breadcrumbs":"MCP Integration (Node.js) » MCP Integration (Node.js)","id":"503","title":"MCP Integration (Node.js)"},"504":{"body":"npm install @hai.ai/jacs @modelcontextprotocol/sdk","breadcrumbs":"MCP Integration (Node.js) » Install","id":"504","title":"Install"},"505":{"body":"Use this when you already have an MCP server or client and want signed JSON-RPC messages.","breadcrumbs":"MCP Integration (Node.js) » 1. Wrap A Transport","id":"505","title":"1. Wrap A Transport"},"506":{"body":"import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); const transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server');","breadcrumbs":"MCP Integration (Node.js) » With a loaded client","id":"506","title":"With a loaded client"},"507":{"body":"import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( transport, './jacs.config.json', 'server',\n); createJACSTransportProxy() does not take a config path. Use the async factory when the agent is not already loaded.","breadcrumbs":"MCP Integration (Node.js) » With only a config path","id":"507","title":"With only a config path"},"508":{"body":"Use this when the model should explicitly call JACS operations such as signing, verification, agreement creation, or trust-store inspection. import { Server } from '@modelcontextprotocol/sdk/server/index.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { registerJacsTools } from '@hai.ai/jacs/mcp'; const server = new Server( { name: 'jacs-tools', version: '1.0.0' }, { capabilities: { tools: {} } },\n); const client = await JacsClient.quickstart({ name: 'mcp-agent', domain: 'mcp.local',\n}); registerJacsTools(server, client); The registered tool set includes: document signing and verification agreement helpers audit and agent-info helpers trust-store helpers setup and registry helper stubs For lower-level integration, use getJacsMcpToolDefinitions() plus handleJacsMcpToolCall().","breadcrumbs":"MCP Integration (Node.js) » 2. Register JACS Tools On Your MCP Server","id":"508","title":"2. Register JACS Tools On Your MCP Server"},"509":{"body":"The transport proxy is not permissive by default. Signing or verification failures fail closed unless you explicitly pass allowUnsignedFallback: true createJACSTransportProxy() expects a real JacsClient or JacsAgent, not an unloaded shell","breadcrumbs":"MCP Integration (Node.js) » Failure Behavior","id":"509","title":"Failure Behavior"},"51":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"51","title":"Verification: load() vs verify_standalone()"},"510":{"body":"import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const server = new McpServer({ name: 'my-server', version: '1.0.0' });\nconst transport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy(transport, client, 'server'); await server.connect(secureTransport); For stdio servers, keep logs on stderr, not stdout.","breadcrumbs":"MCP Integration (Node.js) » Common Pattern","id":"510","title":"Common Pattern"},"511":{"body":"jacsnpm/examples/mcp.stdio.server.js jacsnpm/examples/mcp.stdio.client.js jacsnpm/examples/mcp.sse.server.js jacsnpm/examples/mcp.sse.client.js","breadcrumbs":"MCP Integration (Node.js) » Example Paths In This Repo","id":"511","title":"Example Paths In This Repo"},"512":{"body":"Choose LangChain.js Integration instead when: the model and tools already live in the same Node.js process you only need signed tool outputs, not an MCP boundary you do not need other MCP clients to connect","breadcrumbs":"MCP Integration (Node.js) » When To Use LangChain Instead","id":"512","title":"When To Use LangChain Instead"},"513":{"body":"Use the LangChain.js adapter when the model already runs inside your Node.js app and you want provenance at the tool boundary.","breadcrumbs":"LangChain.js » LangChain.js Integration","id":"513","title":"LangChain.js Integration"},"514":{"body":"","breadcrumbs":"LangChain.js » Choose The Pattern","id":"514","title":"Choose The Pattern"},"515":{"body":"Use createJacsTools() when the model should explicitly ask to sign, verify, inspect trust, or create agreements. import { JacsClient } from '@hai.ai/jacs/client';\nimport { createJacsTools } from '@hai.ai/jacs/langchain'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n}); const jacsTools = createJacsTools({ client });\nconst llmWithTools = model.bindTools([...myTools, ...jacsTools]); The tool set includes 14 tools: jacs_sign jacs_verify jacs_create_agreement jacs_sign_agreement jacs_check_agreement jacs_verify_self jacs_trust_agent jacs_trust_agent_with_key jacs_list_trusted jacs_is_trusted jacs_share_public_key jacs_share_agent jacs_audit jacs_agent_info","breadcrumbs":"LangChain.js » Give The Agent JACS Tools","id":"515","title":"Give The Agent JACS Tools"},"516":{"body":"Use this when the model should keep using your existing tool set but every result needs a signature. Wrap one tool: import { signedTool } from '@hai.ai/jacs/langchain'; const signed = signedTool(mySearchTool, { client }); Wrap a LangGraph ToolNode: import { jacsToolNode } from '@hai.ai/jacs/langchain'; const node = jacsToolNode([tool1, tool2], { client }); For custom graph logic: import { jacsWrapToolCall } from '@hai.ai/jacs/langchain'; const wrapToolCall = jacsWrapToolCall({ client });","breadcrumbs":"LangChain.js » Auto-Sign Existing Tools","id":"516","title":"Auto-Sign Existing Tools"},"517":{"body":"npm install @hai.ai/jacs @langchain/core\nnpm install @langchain/langgraph @langchain/langgraph is only required for jacsToolNode().","breadcrumbs":"LangChain.js » Install","id":"517","title":"Install"},"518":{"body":"Pass strict: true when you want wrapper failures to throw instead of returning error-shaped output: const jacsTools = createJacsTools({ client, strict: true });","breadcrumbs":"LangChain.js » Strict Mode","id":"518","title":"Strict Mode"},"519":{"body":"jacsnpm/examples/langchain/basic-agent.ts jacsnpm/examples/langchain/signing-callback.ts","breadcrumbs":"LangChain.js » Examples In This Repo","id":"519","title":"Examples In This Repo"},"52":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"52","title":"Documents"},"520":{"body":"Choose Node.js MCP Integration instead when: the model is outside your process and connects over MCP you want a shared MCP server usable by multiple clients you need transport-level signing in addition to signed tool outputs","breadcrumbs":"LangChain.js » When To Use MCP Instead","id":"520","title":"When To Use MCP Instead"},"521":{"body":"Sign it. Prove it. -- for every AI model output. The JACS Vercel AI SDK adapter adds cryptographic provenance to AI-generated text and tool results using the LanguageModelV3Middleware pattern. Works with generateText, streamText, and any model provider (OpenAI, Anthropic, etc.).","breadcrumbs":"Vercel AI SDK » Vercel AI SDK","id":"521","title":"Vercel AI SDK"},"522":{"body":"","breadcrumbs":"Vercel AI SDK » 5-Minute Quickstart","id":"522","title":"5-Minute Quickstart"},"523":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai","breadcrumbs":"Vercel AI SDK » 1. Install","id":"523","title":"1. Install"},"524":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Vercel AI SDK » 2. Create a JACS client","id":"524","title":"2. Create a JACS client"},"525":{"body":"import { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const model = withProvenance(openai('gpt-4'), { client });\nconst { text, providerMetadata } = await generateText({ model, prompt: 'Hello!' }); console.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID","breadcrumbs":"Vercel AI SDK » 3. Sign every model output","id":"525","title":"3. Sign every model output"},"526":{"body":"import { JacsClient } from '@hai.ai/jacs/client';\nimport { withProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { openai } from '@ai-sdk/openai';\nimport { generateText } from 'ai'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst model = withProvenance(openai('gpt-4'), { client }); const { text, providerMetadata } = await generateText({ model, prompt: 'Summarize the quarterly report.',\n}); console.log(text);\nconsole.log(providerMetadata?.jacs?.text?.documentId); // JACS document ID\nconsole.log(providerMetadata?.jacs?.text?.signed); // true Every model output is signed by your JACS agent. The provenance record is attached to providerMetadata.jacs.","breadcrumbs":"Vercel AI SDK » Quick Start","id":"526","title":"Quick Start"},"527":{"body":"npm install @hai.ai/jacs ai @ai-sdk/openai # or any provider The ai package is a peer dependency.","breadcrumbs":"Vercel AI SDK » Installation","id":"527","title":"Installation"},"528":{"body":"","breadcrumbs":"Vercel AI SDK » Two Ways to Use","id":"528","title":"Two Ways to Use"},"529":{"body":"Wraps a model with the JACS middleware in one call: import { withProvenance } from '@hai.ai/jacs/vercel-ai'; const model = withProvenance(openai('gpt-4'), { client });","breadcrumbs":"Vercel AI SDK » withProvenance (convenience)","id":"529","title":"withProvenance (convenience)"},"53":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"53","title":"Document Structure"},"530":{"body":"Returns a LanguageModelV3Middleware you can compose with other middleware: import { jacsProvenance } from '@hai.ai/jacs/vercel-ai';\nimport { wrapLanguageModel } from 'ai'; const provenance = jacsProvenance({ client }); const model = wrapLanguageModel({ model: openai('gpt-4'), middleware: provenance,\n});","breadcrumbs":"Vercel AI SDK » jacsProvenance (composable)","id":"530","title":"jacsProvenance (composable)"},"531":{"body":"interface ProvenanceOptions { client: JacsClient; // Required: initialized JacsClient signText?: boolean; // Sign generated text (default: true) signToolResults?: boolean; // Sign tool call results (default: true) strict?: boolean; // Throw on signing failure (default: false) metadata?: Record; // Extra metadata in provenance records\n}","breadcrumbs":"Vercel AI SDK » Options","id":"531","title":"Options"},"532":{"body":"Streaming works automatically. Text chunks are accumulated and signed when the stream completes: import { streamText } from 'ai'; const result = streamText({ model: withProvenance(openai('gpt-4'), { client }), prompt: 'Write a haiku.',\n}); for await (const chunk of result.textStream) { process.stdout.write(chunk);\n} // Provenance is available after stream completes\nconst metadata = await result.providerMetadata;\nconsole.log(metadata?.jacs?.text?.signed); // true","breadcrumbs":"Vercel AI SDK » Streaming","id":"532","title":"Streaming"},"533":{"body":"When signToolResults is true (default), tool results in the prompt are signed: import { generateText, tool } from 'ai';\nimport { z } from 'zod'; const { text, providerMetadata } = await generateText({ model: withProvenance(openai('gpt-4'), { client }), tools: { getWeather: tool({ parameters: z.object({ city: z.string() }), execute: async ({ city }) => `Weather in ${city}: sunny, 72F`, }), }, prompt: 'What is the weather in Paris?',\n}); // Both text output and tool results are signed\nconsole.log(providerMetadata?.jacs?.text?.signed);\nconsole.log(providerMetadata?.jacs?.toolResults?.signed);","breadcrumbs":"Vercel AI SDK » Tool Call Signing","id":"533","title":"Tool Call Signing"},"534":{"body":"Each signed output produces a ProvenanceRecord: interface ProvenanceRecord { signed: boolean; // Whether signing succeeded documentId: string; // JACS document ID agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp error?: string; // Error message if signing failed metadata?: Record;\n} Access records from providerMetadata.jacs: const { providerMetadata } = await generateText({ model, prompt: '...' }); const textProvenance = providerMetadata?.jacs?.text;\nconst toolProvenance = providerMetadata?.jacs?.toolResults;","breadcrumbs":"Vercel AI SDK » Provenance Record","id":"534","title":"Provenance Record"},"535":{"body":"By default, signing failures are logged but do not throw. Enable strict to throw on failure: const model = withProvenance(openai('gpt-4'), { client, strict: true, // Throws if signing fails\n});","breadcrumbs":"Vercel AI SDK » Strict Mode","id":"535","title":"Strict Mode"},"536":{"body":"Express Middleware - Sign HTTP API responses MCP Integration - Secure MCP transport API Reference - Complete API documentation","breadcrumbs":"Vercel AI SDK » Next Steps","id":"536","title":"Next Steps"},"537":{"body":"Sign it. Prove it. -- in your Express app. JACS provides jacsMiddleware for Express v4/v5 that verifies incoming signed request bodies and optionally auto-signs JSON responses. No body-parser gymnastics, no monkey-patching.","breadcrumbs":"Express Middleware » Express Middleware","id":"537","title":"Express Middleware"},"538":{"body":"","breadcrumbs":"Express Middleware » 5-Minute Quickstart","id":"538","title":"5-Minute Quickstart"},"539":{"body":"npm install @hai.ai/jacs express","breadcrumbs":"Express Middleware » 1. Install","id":"539","title":"1. Install"},"54":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"54","title":"Required JACS Fields"},"540":{"body":"import { JacsClient } from '@hai.ai/jacs/client'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});","breadcrumbs":"Express Middleware » 2. Create a JACS client","id":"540","title":"2. Create a JACS client"},"541":{"body":"import express from 'express';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const app = express();\napp.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » 3. Add signing middleware","id":"541","title":"3. Add signing middleware"},"542":{"body":"import express from 'express';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsMiddleware } from '@hai.ai/jacs/express'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = express(); app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client, verify: true })); app.post('/api/data', (req, res) => { console.log(req.jacsPayload); // verified payload res.json({ status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"542","title":"Quick Start"},"543":{"body":"jacsMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign res.json() responses (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n}) If neither client nor configPath is provided, the middleware initializes a client with JacsClient.quickstart({ name: 'jacs-express', domain: 'localhost' }) on first request.","breadcrumbs":"Express Middleware » Options","id":"543","title":"Options"},"544":{"body":"Every request gets req.jacsClient -- a JacsClient instance you can use for manual signing/verification in route handlers. POST/PUT/PATCH with verify: true (default): The string body is verified as a JACS document. On success, req.jacsPayload contains the extracted payload. On failure, a 401 is returned (unless optional: true). With sign: true : res.json() is intercepted to auto-sign the response body before sending.","breadcrumbs":"Express Middleware » What the Middleware Does","id":"544","title":"What the Middleware Does"},"545":{"body":"app.use(express.text({ type: 'application/json' }));\napp.use(jacsMiddleware({ client })); app.post('/api/process', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Missing payload' }); } const { action, data } = req.jacsPayload; res.json({ processed: true, action });\n}); With optional: true, unsigned requests pass through with req.jacsPayload unset: app.use(jacsMiddleware({ client, optional: true })); app.post('/api/mixed', (req, res) => { if (req.jacsPayload) { // Verified JACS request res.json({ verified: true, data: req.jacsPayload }); } else { // Unsigned request -- handle accordingly res.json({ verified: false }); }\n});","breadcrumbs":"Express Middleware » Verify Incoming Requests","id":"545","title":"Verify Incoming Requests"},"546":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Express Middleware » Auth Replay Protection (Auth Endpoints)","id":"546","title":"Auth Replay Protection (Auth Endpoints)"},"547":{"body":"Enable sign: true to intercept res.json() calls: app.use(jacsMiddleware({ client, sign: true })); app.post('/api/data', (req, res) => { // This response will be JACS-signed automatically res.json({ result: 42, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Auto-Sign Responses","id":"547","title":"Auto-Sign Responses"},"548":{"body":"Use req.jacsClient for fine-grained control: app.use(jacsMiddleware({ client })); app.post('/api/custom', async (req, res) => { const result = processData(req.jacsPayload); // Sign manually const signed = await req.jacsClient.signMessage(result); res.type('application/json').send(signed.raw);\n});","breadcrumbs":"Express Middleware » Manual Signing in Routes","id":"548","title":"Manual Signing in Routes"},"549":{"body":"Apply JACS to specific routes only: const app = express();\nconst jacs = jacsMiddleware({ client }); // Public routes -- no JACS\napp.get('/health', (req, res) => res.json({ status: 'ok' })); // Protected routes\napp.use('/api', express.text({ type: 'application/json' }), jacs); app.post('/api/secure', (req, res) => { res.json({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Per-Route Middleware","id":"549","title":"Per-Route Middleware"},"55":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"55","title":"Document Types"},"550":{"body":"Use different JacsClient instances per route group: const adminClient = await JacsClient.quickstart({ name: 'admin-agent', domain: 'admin.example.com', algorithm: 'pq2025',\n});\nconst userClient = await JacsClient.quickstart({ name: 'user-agent', domain: 'user.example.com', algorithm: 'ring-Ed25519',\n}); app.use('/admin', express.text({ type: 'application/json' }));\napp.use('/admin', jacsMiddleware({ client: adminClient })); app.use('/user', express.text({ type: 'application/json' }));\napp.use('/user', jacsMiddleware({ client: userClient }));","breadcrumbs":"Express Middleware » Multiple Agents","id":"550","title":"Multiple Agents"},"551":{"body":"The legacy JACSExpressMiddleware from @hai.ai/jacs/http still works but is deprecated. To migrate: Old New import { JACSExpressMiddleware } from '@hai.ai/jacs/http' import { jacsMiddleware } from '@hai.ai/jacs/express' JACSExpressMiddleware({ configPath: '...' }) jacsMiddleware({ configPath: '...' }) Per-request agent init Shared client, lazy-loaded once res.send() monkey-patch res.json() interception (opt-in) The new middleware is simpler, faster (no per-request init), and gives you req.jacsClient for manual operations.","breadcrumbs":"Express Middleware » Migration from JACSExpressMiddleware","id":"551","title":"Migration from JACSExpressMiddleware"},"552":{"body":"Koa Middleware - Same pattern for Koa HTTP Server - Core HTTP integration concepts Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"552","title":"Next Steps"},"553":{"body":"Sign it. Prove it. -- in your Koa app. JACS provides jacsKoaMiddleware for Koa with the same design as the Express middleware -- verify incoming signed bodies, optionally auto-sign responses.","breadcrumbs":"Koa Middleware » Koa Middleware","id":"553","title":"Koa Middleware"},"554":{"body":"import Koa from 'koa';\nimport bodyParser from 'koa-bodyparser';\nimport { JacsClient } from '@hai.ai/jacs/client';\nimport { jacsKoaMiddleware } from '@hai.ai/jacs/koa'; const client = await JacsClient.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconst app = new Koa(); app.use(bodyParser({ enableTypes: ['text'] }));\napp.use(jacsKoaMiddleware({ client, verify: true })); app.use(async (ctx) => { console.log(ctx.state.jacsPayload); // verified payload ctx.body = { status: 'ok' };\n}); app.listen(3000);","breadcrumbs":"Koa Middleware » Quick Start","id":"554","title":"Quick Start"},"555":{"body":"jacsKoaMiddleware({ client?: JacsClient; // Pre-initialized client (preferred) configPath?: string; // Path to jacs.config.json (if no client) sign?: boolean; // Auto-sign ctx.body after next() (default: false) verify?: boolean; // Verify incoming POST/PUT/PATCH bodies (default: true) optional?: boolean; // Allow unsigned requests through (default: false) authReplay?: boolean | { // Replay protection for auth-style endpoints (default: false) enabled?: boolean; maxAgeSeconds?: number; // default: 30 clockSkewSeconds?: number; // default: 5 cacheTtlSeconds?: number; // default: maxAge + skew };\n})","breadcrumbs":"Koa Middleware » Options","id":"555","title":"Options"},"556":{"body":"Every request gets ctx.state.jacsClient for manual use. POST/PUT/PATCH with verify: true : The string body is verified. On success, ctx.state.jacsPayload is set. On failure, 401 is returned (unless optional: true). With sign: true : After downstream middleware runs, if ctx.body is a non-Buffer object, it is signed before the response is sent.","breadcrumbs":"Koa Middleware » How It Works","id":"556","title":"How It Works"},"557":{"body":"Enable replay protection when signed JACS bodies are used as authentication artifacts: app.use( jacsKoaMiddleware({ client, verify: true, authReplay: { enabled: true, maxAgeSeconds: 30, clockSkewSeconds: 5 }, })\n); When enabled, middleware enforces: signature timestamp freshness (maxAgeSeconds + clockSkewSeconds) single-use (signerId, signature) dedupe inside a TTL cache Notes: Keep this mode scoped to auth-style endpoints. Cache is in-memory per process; use a shared cache for multi-instance deployments.","breadcrumbs":"Koa Middleware » Auth Replay Protection (Auth Endpoints)","id":"557","title":"Auth Replay Protection (Auth Endpoints)"},"558":{"body":"app.use(jacsKoaMiddleware({ client, sign: true })); app.use(async (ctx) => { // This will be JACS-signed automatically after next() ctx.body = { result: 42, timestamp: new Date().toISOString() };\n});","breadcrumbs":"Koa Middleware » Auto-Sign Responses","id":"558","title":"Auto-Sign Responses"},"559":{"body":"app.use(jacsKoaMiddleware({ client })); app.use(async (ctx) => { const result = processData(ctx.state.jacsPayload); const signed = await ctx.state.jacsClient.signMessage(result); ctx.type = 'application/json'; ctx.body = signed.raw;\n});","breadcrumbs":"Koa Middleware » Manual Signing","id":"559","title":"Manual Signing"},"56":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"56","title":"Tasks"},"560":{"body":"Feature Express Koa Import jacsMiddleware from @hai.ai/jacs/express jacsKoaMiddleware from @hai.ai/jacs/koa Client access req.jacsClient ctx.state.jacsClient Payload req.jacsPayload ctx.state.jacsPayload Auto-sign target res.json() interception ctx.body after next()","breadcrumbs":"Koa Middleware » Comparison with Express","id":"560","title":"Comparison with Express"},"561":{"body":"Express Middleware - Express version Vercel AI SDK - AI model provenance signing API Reference - Complete API documentation","breadcrumbs":"Koa Middleware » Next Steps","id":"561","title":"Next Steps"},"562":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"562","title":"HTTP Server"},"563":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"563","title":"Overview"},"564":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"564","title":"Core Concepts"},"565":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"565","title":"Request/Response Flow"},"566":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"566","title":"HTTP Client"},"567":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"567","title":"Basic Client Usage"},"568":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"568","title":"Using Fetch"},"569":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"569","title":"Express Server"},"57":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"57","title":"Task Structure"},"570":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"570","title":"Using Express Middleware"},"571":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"571","title":"Middleware Configuration"},"572":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"572","title":"Manual Request/Response Handling"},"573":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"573","title":"Koa Server"},"574":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"574","title":"Using Koa Middleware"},"575":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"575","title":"API Reference"},"576":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"576","title":"jacs.signRequest(payload)"},"577":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"577","title":"jacs.verifyResponse(responseString)"},"578":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"578","title":"jacs.signResponse(payload)"},"579":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"579","title":"JACSExpressMiddleware(options)"},"58":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"58","title":"Task Lifecycle"},"580":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"580","title":"JACSKoaMiddleware(options)"},"581":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"581","title":"Complete Example"},"582":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"582","title":"Server (server.js)"},"583":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"583","title":"Client (client.js)"},"584":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"584","title":"Security Considerations"},"585":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"585","title":"Content-Type"},"586":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"586","title":"Error Handling"},"587":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"587","title":"Agent Keys"},"588":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"588","title":"Middleware Order"},"589":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"59","title":"Task Components"},"590":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"590","title":"API Reference"},"591":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"591","title":"Installation"},"592":{"body":"All NAPI operations now return Promises by default. Sync variants are available with a Sync suffix, following the Node.js convention (like fs.readFile vs fs.readFileSync). // Async (default, recommended)\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify(content)); // Sync (blocks event loop)\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify(content));","breadcrumbs":"API Reference » v0.7.0: Async-First API","id":"592","title":"v0.7.0: Async-First API"},"593":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"593","title":"Core Module"},"594":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"594","title":"JacsAgent Class"},"595":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() or loadSync() to initialize with a configuration. Example: const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"595","title":"Constructor"},"596":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: Promise (async) or string (sync) -- The loaded agent's JSON Example: const agent = new JacsAgent(); // Async (recommended)\nconst agentJson = await agent.load('./jacs.config.json'); // Sync\nconst agentJson = agent.loadSync('./jacs.config.json'); console.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath) / agent.loadSync(configPath)","id":"596","title":"agent.load(configPath) / agent.loadSync(configPath)"},"597":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: Promise (async) or string (sync) -- The signed document as a JSON string Example: // Basic document creation (async)\nconst doc = await agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // Without saving (sync)\nconst tempDoc = agent.createDocumentSync( JSON.stringify({ data: 'temporary' }), null, null, true\n);","breadcrumbs":"API Reference » agent.createDocument(...) / agent.createDocumentSync(...)","id":"597","title":"agent.createDocument(...) / agent.createDocumentSync(...)"},"598":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: Promise (async) or boolean (sync) -- True if the document is valid Example: const isValid = await agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n}","breadcrumbs":"API Reference » agent.verifyDocument(...) / agent.verifyDocumentSync(...)","id":"598","title":"agent.verifyDocument(...) / agent.verifyDocumentSync(...)"},"599":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifySignature(...) / agent.verifySignatureSync(...)","id":"599","title":"agent.verifySignature(...) / agent.verifySignatureSync(...)"},"6":{"body":"Best fit for LangChain, LangGraph, CrewAI, FastAPI, and local MCP/A2A helpers Strong adapter story for adding provenance inside an existing app","breadcrumbs":"Introduction » Python (jacs)","id":"6","title":"Python (jacs)"},"60":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"60","title":"Agreements"},"600":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: Promise (async) or string (sync) Example: const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`;\nconst updatedDoc = await agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title' })\n);","breadcrumbs":"API Reference » agent.updateDocument(...) / agent.updateDocumentSync(...)","id":"600","title":"agent.updateDocument(...) / agent.updateDocumentSync(...)"},"601":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.createAgreement(...) / agent.createAgreementSync(...)","id":"601","title":"agent.createAgreement(...) / agent.createAgreementSync(...)"},"602":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgreement(...) / agent.signAgreementSync(...)","id":"602","title":"agent.signAgreement(...) / agent.signAgreementSync(...)"},"603":{"body":"Check the status of an agreement. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name (default: 'jacsAgreement') Returns: Promise (async) or string (sync) -- JSON string with agreement status","breadcrumbs":"API Reference » agent.checkAgreement(...) / agent.checkAgreementSync(...)","id":"603","title":"agent.checkAgreement(...) / agent.checkAgreementSync(...)"},"604":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifactJson (string): JSON string of the artifact to sign artifactType (string): Type of artifact (e.g., \"task\", \"message\") parentSignaturesJson (string, optional): JSON string of parent signatures for chain of custody Returns: Promise (async) or string (sync) -- The signed, wrapped artifact as a JSON string Example: const signed = await agent.signArtifact( JSON.stringify({ action: 'classify', input: 'hello' }), 'task'\n);","breadcrumbs":"API Reference » agent.signArtifact(...) / agent.signArtifactSync(...)","id":"604","title":"agent.signArtifact(...) / agent.signArtifactSync(...)"},"605":{"body":"Deprecated since 0.9.0. Use signArtifact() / signArtifactSync() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to signArtifact() / signArtifactSync(). Parameters: Same as signArtifact() / signArtifactSync().","breadcrumbs":"API Reference » agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)","id":"605","title":"agent.wrapA2aArtifact(...) / agent.wrapA2aArtifactSync(...)"},"606":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: Promise (async) or string (sync) -- Base64-encoded signature","breadcrumbs":"API Reference » agent.signString(...) / agent.signStringSync(...)","id":"606","title":"agent.signString(...) / agent.signStringSync(...)"},"607":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyString(...) / agent.verifyStringSync(...)","id":"607","title":"agent.verifyString(...) / agent.verifyStringSync(...)"},"608":{"body":"Sign a request payload, wrapping it in a JACS document. This method is synchronous (no Sync suffix) because it uses V8-thread-only APIs. Parameters: params (any): The request payload object Returns: string -- JACS-signed request as a JSON string","breadcrumbs":"API Reference » agent.signRequest(params) -- V8-thread-only","id":"608","title":"agent.signRequest(params) -- V8-thread-only"},"609":{"body":"Verify a JACS-signed response and extract the payload. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object containing the verified payload","breadcrumbs":"API Reference » agent.verifyResponse(documentString) -- V8-thread-only","id":"609","title":"agent.verifyResponse(documentString) -- V8-thread-only"},"61":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"61","title":"Agreement Structure"},"610":{"body":"Verify a response and return both the payload and signer's agent ID. Synchronous only. Parameters: documentString (string): The JACS-signed response Returns: object -- Object with payload and agent ID","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString) -- V8-thread-only","id":"610","title":"agent.verifyResponseWithAgentId(documentString) -- V8-thread-only"},"611":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: Promise (async) or boolean (sync)","breadcrumbs":"API Reference » agent.verifyAgent(...) / agent.verifyAgentSync(...)","id":"611","title":"agent.verifyAgent(...) / agent.verifyAgentSync(...)"},"612":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.updateAgent(...) / agent.updateAgentSync(...)","id":"612","title":"agent.updateAgent(...) / agent.updateAgentSync(...)"},"613":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: Promise (async) or string (sync)","breadcrumbs":"API Reference » agent.signAgent(...) / agent.signAgentSync(...)","id":"613","title":"agent.signAgent(...) / agent.signAgentSync(...)"},"614":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"614","title":"Utility Functions"},"615":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string -- Hexadecimal hash string import { hashString } from '@hai.ai/jacs';\nconst hash = hashString('data to hash');","breadcrumbs":"API Reference » hashString(data)","id":"615","title":"hashString(data)"},"616":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional) jacsDataDirectory (string, optional) jacsKeyDirectory (string, optional) jacsAgentPrivateKeyFilename (string, optional) jacsAgentPublicKeyFilename (string, optional) jacsAgentKeyAlgorithm (string, optional) jacsPrivateKeyPassword (string, optional) jacsAgentIdAndVersion (string, optional) jacsDefaultStorage (string, optional) Returns: string -- Configuration as JSON string","breadcrumbs":"API Reference » createConfig(options)","id":"616","title":"createConfig(options)"},"617":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"617","title":"HTTP Module"},"618":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"618","title":"JACSExpressMiddleware(options)"},"619":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"619","title":"JACSKoaMiddleware(options)"},"62":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"62","title":"Agreement Process"},"620":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"620","title":"MCP Module"},"621":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"621","title":"createJACSTransportProxy(transport, configPath, role)"},"622":{"body":"Async factory that waits for JACS to be fully loaded. Returns: Promise","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"622","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"623":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');","breadcrumbs":"API Reference » TypeScript Support","id":"623","title":"TypeScript Support"},"624":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() -> Use agent.load() / agent.loadSync() signAgent() -> Use agent.signAgent() / agent.signAgentSync() verifyString() -> Use agent.verifyString() / agent.verifyStringSync() signString() -> Use agent.signString() / agent.signStringSync() verifyAgent() -> Use agent.verifyAgent() / agent.verifyAgentSync() updateAgent() -> Use agent.updateAgent() / agent.updateAgentSync() verifyDocument() -> Use agent.verifyDocument() / agent.verifyDocumentSync() updateDocument() -> Use agent.updateDocument() / agent.updateDocumentSync() verifySignature() -> Use agent.verifySignature() / agent.verifySignatureSync() createAgreement() -> Use agent.createAgreement() / agent.createAgreementSync() signAgreement() -> Use agent.signAgreement() / agent.signAgreementSync() createDocument() -> Use agent.createDocument() / agent.createDocumentSync() checkAgreement() -> Use agent.checkAgreement() / agent.checkAgreementSync() signRequest() -> Use agent.signRequest() (V8-thread-only, sync) verifyResponse() -> Use agent.verifyResponse() (V8-thread-only, sync) verifyResponseWithAgentId() -> Use agent.verifyResponseWithAgentId() (V8-thread-only, sync) Migration Example: // Old (deprecated, v0.6.x)\nimport jacs from '@hai.ai/jacs';\njacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, async)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json');\nconst doc = await agent.createDocument(JSON.stringify({ data: 'test' })); // New (v0.7.0, sync)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.loadSync('./jacs.config.json');\nconst doc = agent.createDocumentSync(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"624","title":"Deprecated Functions"},"625":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const doc = await agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"625","title":"Error Handling"},"626":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"626","title":"See Also"},"627":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"627","title":"Python Installation"},"628":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"628","title":"Requirements"},"629":{"body":"","breadcrumbs":"Installation » Installation","id":"629","title":"Installation"},"63":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"63","title":"Agreement Types"},"630":{"body":"pip install jacs For framework adapters (LangChain, FastAPI, CrewAI, Anthropic, etc.) use optional extras, e.g. pip install jacs[langchain], jacs[fastapi], or jacs[all]. Optional: jacs[langgraph], jacs[ws]. See Framework Adapters and the package pyproject.toml.","breadcrumbs":"Installation » Using pip","id":"630","title":"Using pip"},"631":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"631","title":"Using conda"},"632":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"632","title":"Using poetry"},"633":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"633","title":"Development Installation"},"634":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs\nprint('JACS Python bindings loaded successfully!') # Quick check (no config file; in-memory agent)\nfrom jacs.client import JacsClient\nclient = JacsClient.ephemeral()\nsigned = client.sign_message({\"hello\": \"jacs\"})\nresult = client.verify(signed.raw_json)\nprint('Sign & verify OK:', result.valid) Or with an existing config file: import jacs\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')\nprint('Agent loaded successfully!') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"634","title":"Verify Installation"},"635":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"635","title":"Package Structure"},"636":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"636","title":"Core Module"},"637":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"637","title":"JacsAgent Methods"},"638":{"body":"","breadcrumbs":"Installation » Configuration","id":"638","title":"Configuration"},"639":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"639","title":"Configuration File"},"64":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"64","title":"Cryptographic Security"},"640":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"640","title":"Load Configuration in Python"},"641":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"641","title":"Programmatic Configuration"},"642":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"642","title":"Environment Variables"},"643":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"643","title":"Storage Backends"},"644":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"644","title":"File System (Default)"},"645":{"body":"{ \"jacs_default_storage\": \"rusqlite\"\n} Use rusqlite when you want local full-text search and the upgraded DocumentService behavior in bindings and MCP.","breadcrumbs":"Installation » Local Indexed SQLite","id":"645","title":"Local Indexed SQLite"},"646":{"body":"{ \"jacs_default_storage\": \"aws\"\n} AWS credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » AWS Storage","id":"646","title":"AWS Storage"},"647":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"647","title":"Memory Storage (Testing)"},"648":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"648","title":"Cryptographic Algorithms"},"649":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"649","title":"ring-Ed25519 (Recommended)"},"65":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"65","title":"Supported Algorithms"},"650":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"650","title":"RSA-PSS"},"651":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"651","title":"pq-dilithium (Post-Quantum)"},"652":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"652","title":"pq2025 (Post-Quantum Hybrid)"},"653":{"body":"","breadcrumbs":"Installation » Development Setup","id":"653","title":"Development Setup"},"654":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"654","title":"Project Structure"},"655":{"body":"jacs>=0.9.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"655","title":"Requirements.txt Setup"},"656":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"656","title":"Basic Application"},"657":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"657","title":"Virtual Environment Setup"},"658":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"658","title":"Using venv"},"659":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"659","title":"Using conda"},"66":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"66","title":"Signature Process"},"660":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"660","title":"Using poetry"},"661":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"661","title":"Jupyter Notebook Setup"},"662":{"body":"","breadcrumbs":"Installation » Common Issues","id":"662","title":"Common Issues"},"663":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"663","title":"Module Not Found"},"664":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"664","title":"Permission Errors"},"665":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"665","title":"Binary Compatibility"},"666":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"666","title":"Windows Issues"},"667":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"667","title":"Type Hints and IDE Support"},"668":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"668","title":"Testing Setup"},"669":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"669","title":"Next Steps"},"67":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"67","title":"Key Management"},"670":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"670","title":"Examples"},"671":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"671","title":"Simplified API"},"672":{"body":"Zero-config -- one call to start signing: import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password. Pass algorithm=\"ring-Ed25519\" to override the default (pq2025). To load an existing agent explicitly, use load() instead: agent = jacs.load(\"./jacs.config.json\")\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})","breadcrumbs":"Simplified API » Quick Start","id":"672","title":"Quick Start"},"673":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"673","title":"When to Use the Simplified API"},"674":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"674","title":"API Reference"},"675":{"body":"Create a persistent agent with keys on disk. If ./jacs.config.json already exists, loads it. Otherwise creates a new agent, saving keys and config to disk. If JACS_PRIVATE_KEY_PASSWORD is unset, Python quickstart auto-generates a secure password in-process (JACS_SAVE_PASSWORD_FILE=true persists it to ./jacs_keys/.jacs_password). Call this once before sign_message() or verify(). Parameters: name (str, required): Agent name used for first-time creation. domain (str, required): Agent domain used for DNS/public-key verification workflows. description (str, optional): Human-readable description. algorithm (str, optional): Signing algorithm. Default: \"pq2025\". Also: \"ring-Ed25519\", \"RSA-PSS\". config_path (str, optional): Config path (default: \"./jacs.config.json\"). Returns: AgentInfo dataclass info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config path: {info.config_path}\")\nprint(f\"Public key: {info.public_key_path}\")\nprint(f\"Private key: {info.private_key_path}\") # Or with a specific algorithm\ninfo = jacs.quickstart( name=\"my-agent\", domain=\"my-agent.example.com\", algorithm=\"ring-Ed25519\",\n)","breadcrumbs":"Simplified API » quickstart(name, domain, description=None, algorithm=None, config_path=None)","id":"675","title":"quickstart(name, domain, description=None, algorithm=None, config_path=None)"},"676":{"body":"Load a persistent agent from a configuration file. Use this instead of quickstart(name=..., domain=..., ...) when you want to load a specific config file explicitly. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") strict (bool, optional): If True, verification failures raise; if None, uses JACS_STRICT_MODE env var Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None, strict=None)","id":"676","title":"load(config_path=None, strict=None)"},"677":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"677","title":"is_loaded()"},"678":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"678","title":"get_agent_info()"},"679":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"679","title":"verify_self()"},"68":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"68","title":"Versioning and Audit Trails"},"680":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"680","title":"sign_message(data)"},"681":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"681","title":"sign_file(file_path, embed=False)"},"682":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str|dict|SignedDocument): The signed document as JSON string, dict, or SignedDocument Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"682","title":"verify(signed_document)"},"683":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"683","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"684":{"body":"Verify a document by its storage ID (uuid:version) without passing the full JSON. Requires the document to be stored locally (e.g. in the agent's data directory). Parameters: document_id (str): Document ID in format \"uuid:version\" Returns: VerificationResult","breadcrumbs":"Simplified API » verify_by_id(document_id)","id":"684","title":"verify_by_id(document_id)"},"685":{"body":"Re-encrypt the loaded agent's private key with a new password. Parameters: old_password (str), new_password (str) Raises: AgentNotLoadedError if no agent loaded; JacsError if password is wrong","breadcrumbs":"Simplified API » reencrypt_key(old_password, new_password)","id":"685","title":"reencrypt_key(old_password, new_password)"},"686":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"686","title":"audit(config_path=None, recent_n=None)"},"687":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"687","title":"update_agent(new_agent_data)"},"688":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"688","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"689":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"689","title":"export_agent()"},"69":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"69","title":"Version Management"},"690":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"690","title":"get_dns_record(domain, ttl=3600)"},"691":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"691","title":"get_well_known_json()"},"692":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"692","title":"get_public_key()"},"693":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"693","title":"Type Definitions"},"694":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"694","title":"AgentInfo"},"695":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"695","title":"SignedDocument"},"696":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"696","title":"VerificationResult"},"697":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type content_hash: str # SHA-256 hash of file content content: Optional[str] = None # Base64-encoded content (if embedded) size_bytes: int = 0 # Size of the original file","breadcrumbs":"Simplified API » Attachment","id":"697","title":"Attachment"},"698":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"698","title":"Exceptions"},"699":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"699","title":"Complete Example"},"7":{"body":"Best fit for Express, Koa, Vercel AI SDK, LangChain.js, and MCP transport/tool integration Also exposes A2A helpers and Express discovery middleware","breadcrumbs":"Introduction » Node.js (@hai.ai/jacs)","id":"7","title":"Node.js (@hai.ai/jacs)"},"70":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"70","title":"Audit Trail Benefits"},"700":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"700","title":"MCP Integration"},"701":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"701","title":"Error Handling"},"702":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"702","title":"See Also"},"703":{"body":"This chapter covers fundamental JACS operations in Python. For quick signing and verification, start with the Simplified API (jacs.simple) or JacsClient ; the sections below use the JacsAgent class directly for fine-grained control.","breadcrumbs":"Basic Usage » Basic Usage","id":"703","title":"Basic Usage"},"704":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"704","title":"Initializing an Agent"},"705":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"705","title":"Create and Load Agent"},"706":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"706","title":"Configuration File"},"707":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"707","title":"Creating Documents"},"708":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"708","title":"Basic Document Creation"},"709":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"709","title":"With Custom Schema"},"71":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"71","title":"Storage and Transport"},"710":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"710","title":"With Output File"},"711":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"711","title":"Without Saving"},"712":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"712","title":"With Attachments"},"713":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"713","title":"Verifying Documents"},"714":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"714","title":"Verify Document Signature"},"715":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"715","title":"Verify Specific Signature Field"},"716":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"716","title":"Updating Documents"},"717":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"717","title":"Update Existing Document"},"718":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"718","title":"Update with New Attachments"},"719":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"719","title":"Signing and Verification"},"72":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"72","title":"Storage Options"},"720":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"720","title":"Sign Arbitrary Data"},"721":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"721","title":"Verify Arbitrary Data"},"722":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"722","title":"Working with Agreements"},"723":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"723","title":"Create an Agreement"},"724":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"724","title":"Sign an Agreement"},"725":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"725","title":"Check Agreement Status"},"726":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"726","title":"Agent Operations"},"727":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"727","title":"Verify Agent"},"728":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"728","title":"Update Agent"},"729":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"729","title":"Sign External Agent"},"73":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"73","title":"Transport Mechanisms"},"730":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"730","title":"Request/Response Signing"},"731":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"731","title":"Sign a Request"},"732":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"732","title":"Verify a Response"},"733":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"733","title":"Utility Functions"},"734":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"734","title":"Hash String"},"735":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"735","title":"Create Configuration"},"736":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"736","title":"Error Handling"},"737":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"737","title":"Complete Example"},"738":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"738","title":"Working with Document Data"},"739":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"739","title":"Parse Signed Documents"},"74":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"74","title":"Format Compatibility"},"740":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"740","title":"Document Key Format"},"741":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"741","title":"Configuration Management"},"742":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"742","title":"Load from File"},"743":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"743","title":"Environment Variables"},"744":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"744","title":"Programmatic Configuration"},"745":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"745","title":"Next Steps"},"746":{"body":"Python exposes two different MCP stories: Secure a local FastMCP transport with jacs.mcp Expose JACS operations as MCP tools with jacs.adapters.mcp Use the first when you already have an MCP server or client. Use the second when you want the model to call JACS signing, agreement, A2A, or trust helpers as normal MCP tools.","breadcrumbs":"MCP Integration (Python) » MCP Integration (Python)","id":"746","title":"MCP Integration (Python)"},"747":{"body":"Local FastMCP server wrapping with JACSMCPServer Local FastMCP client wrapping with JACSMCPClient One-line server creation with create_jacs_mcp_server() FastMCP tool registration with register_jacs_tools(), register_a2a_tools(), and register_trust_tools()","breadcrumbs":"MCP Integration (Python) » What Is Supported","id":"747","title":"What Is Supported"},"748":{"body":"JACSMCPClient, JACSMCPServer, and jacs_call() enforce loopback-only URLs Unsigned fallback is disabled by default strict=True is about config loading and failure behavior, not an opt-in to security","breadcrumbs":"MCP Integration (Python) » Important Constraints","id":"748","title":"Important Constraints"},"749":{"body":"The shortest path is the factory: from jacs.mcp import create_jacs_mcp_server mcp = create_jacs_mcp_server(\"My Server\", \"./jacs.config.json\") @mcp.tool()\ndef hello(name: str) -> str: return f\"Hello, {name}!\" If you already have a FastMCP instance: from fastmcp import FastMCP\nfrom jacs.mcp import JACSMCPServer mcp = JACSMCPServer(FastMCP(\"Secure Server\"), \"./jacs.config.json\")","breadcrumbs":"MCP Integration (Python) » 1. Secure A FastMCP Server","id":"749","title":"1. Secure A FastMCP Server"},"75":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"75","title":"Next Steps"},"750":{"body":"from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\", \"./jacs.config.json\") async with client: result = await client.call_tool(\"hello\", {\"name\": \"World\"}) To allow unsigned fallback explicitly: client = JACSMCPClient( \"http://localhost:8000/sse\", \"./jacs.config.json\", allow_unsigned_fallback=True,\n)","breadcrumbs":"MCP Integration (Python) » 2. Secure A FastMCP Client","id":"750","title":"2. Secure A FastMCP Client"},"751":{"body":"This is the better fit when the model should be able to ask for signatures, agreements, A2A cards, or trust-store operations directly. from fastmcp import FastMCP\nfrom jacs.client import JacsClient\nfrom jacs.adapters.mcp import ( register_jacs_tools, register_a2a_tools, register_trust_tools,\n) client = JacsClient.quickstart(name=\"mcp-agent\", domain=\"mcp.local\")\nmcp = FastMCP(\"JACS Tools\") register_jacs_tools(mcp, client=client)\nregister_a2a_tools(mcp, client=client)\nregister_trust_tools(mcp, client=client) The core tool set includes document signing, verification, agreements, audit, and agent-info helpers. The A2A and trust helpers are opt-in registrations.","breadcrumbs":"MCP Integration (Python) » 3. Register JACS As MCP Tools","id":"751","title":"3. Register JACS As MCP Tools"},"752":{"body":"From jacs.mcp: jacs_tool to sign a specific tool's response jacs_middleware() for explicit Starlette middleware jacs_call() for one-off authenticated local MCP calls","breadcrumbs":"MCP Integration (Python) » Useful Helper APIs","id":"752","title":"Useful Helper APIs"},"753":{"body":"jacspy/examples/mcp/server.py jacspy/examples/mcp/client.py jacspy/examples/mcp_server.py jacspy/tests/test_adapters_mcp.py","breadcrumbs":"MCP Integration (Python) » Example Paths In This Repo","id":"753","title":"Example Paths In This Repo"},"754":{"body":"Choose Python Framework Adapters instead of MCP when: the model and tools already live in the same Python process you only need signed LangChain, LangGraph, CrewAI, or FastAPI boundaries you do not need MCP clients to connect from outside the app","breadcrumbs":"MCP Integration (Python) » When To Use Adapters Instead","id":"754","title":"When To Use Adapters Instead"},"755":{"body":"Use adapters when the model already runs inside your Python app and you want provenance at the framework boundary, not a separate MCP server.","breadcrumbs":"Framework Adapters » Framework Adapters","id":"755","title":"Framework Adapters"},"756":{"body":"If you need... API Start here Signed LangChain tool results jacs_signing_middleware, signed_tool LangChain / LangGraph section below Signed LangGraph ToolNode outputs jacs_wrap_tool_call, with_jacs_signing LangChain / LangGraph section below Signed FastAPI responses and verified inbound requests JacsMiddleware, jacs_route FastAPI section below Signed CrewAI task output jacs_guardrail, signed_task CrewAI section below Signed Anthropic tool return values jacs.adapters.anthropic.signed_tool Anthropic section below Install only the extra you need: pip install jacs[langchain]\npip install jacs[fastapi]\npip install jacs[crewai]\npip install jacs[anthropic] Optional: jacs[langgraph] (LangGraph ToolNode), jacs[ws] (WebSockets). See pyproject.toml for the full list.","breadcrumbs":"Framework Adapters » Choose The Adapter","id":"756","title":"Choose The Adapter"},"757":{"body":"This is the smallest JACS path if your model already lives in LangChain.","breadcrumbs":"Framework Adapters » LangChain / LangGraph","id":"757","title":"LangChain / LangGraph"},"758":{"body":"from langchain.agents import create_agent\nfrom jacs.client import JacsClient\nfrom jacs.adapters.langchain import jacs_signing_middleware client = JacsClient.quickstart(name=\"langchain-agent\", domain=\"langchain.local\") agent = create_agent( model=\"openai:gpt-4o\", tools=[search_tool, calc_tool], middleware=[jacs_signing_middleware(client=client)],\n)","breadcrumbs":"Framework Adapters » LangChain middleware","id":"758","title":"LangChain middleware"},"759":{"body":"from jacs.adapters.langchain import with_jacs_signing tool_node = with_jacs_signing([search_tool, calc_tool], client=client)","breadcrumbs":"Framework Adapters » LangGraph ToolNode","id":"759","title":"LangGraph ToolNode"},"76":{"body":"Get signing and verifying in under a minute. No manual setup needed.","breadcrumbs":"Quick Start » Quick Start Guide","id":"76","title":"Quick Start Guide"},"760":{"body":"from jacs.adapters.langchain import signed_tool signed_search = signed_tool(search_tool, client=client) The executable example to start from in this repo is jacspy/examples/langchain/signing_callback.py.","breadcrumbs":"Framework Adapters » Wrap one tool instead of the whole graph","id":"760","title":"Wrap one tool instead of the whole graph"},"761":{"body":"Use this when the trust boundary is an API route instead of an MCP transport. from fastapi import FastAPI\nfrom jacs.client import JacsClient\nfrom jacs.adapters.fastapi import JacsMiddleware client = JacsClient.quickstart(name=\"api-agent\", domain=\"api.local\")\napp = FastAPI()\napp.add_middleware(JacsMiddleware, client=client) Useful options: strict=True to reject verification failures instead of passing through sign_responses=False or verify_requests=False to narrow the behavior a2a=True to also expose A2A discovery routes from the same FastAPI app For auth-style endpoints, replay protection is available: app.add_middleware( JacsMiddleware, client=client, strict=True, auth_replay_protection=True, auth_max_age_seconds=30, auth_clock_skew_seconds=5,\n) To sign only one route: from jacs.adapters.fastapi import jacs_route @app.get(\"/signed\")\n@jacs_route(client=client)\nasync def signed_endpoint(): return {\"ok\": True}","breadcrumbs":"Framework Adapters » FastAPI / Starlette","id":"761","title":"FastAPI / Starlette"},"762":{"body":"CrewAI support is guardrail-first: from crewai import Task\nfrom jacs.adapters.crewai import jacs_guardrail task = Task( description=\"Summarize the report\", agent=my_agent, guardrail=jacs_guardrail(client=client),\n) If you build tasks with factories, signed_task() can pre-attach the guardrail.","breadcrumbs":"Framework Adapters » CrewAI","id":"762","title":"CrewAI"},"763":{"body":"Use the Anthropic adapter when you want signed return values from normal Python tool functions: from jacs.adapters.anthropic import signed_tool @signed_tool(client=client)\ndef get_weather(location: str) -> str: return f\"Weather in {location}: sunny\"","breadcrumbs":"Framework Adapters » Anthropic / Claude SDK","id":"763","title":"Anthropic / Claude SDK"},"764":{"body":"Choose Python MCP Integration instead of adapters when: the model is outside your process and talks over MCP you want an MCP tool suite for JACS operations you need the same server to be usable by external MCP clients","breadcrumbs":"Framework Adapters » When To Use MCP Instead","id":"764","title":"When To Use MCP Instead"},"765":{"body":"Complete API documentation for the jacs Python package. For most use cases, the Simplified API (jacs.simple) and JacsClient (instance-based, multiple agents) are recommended. This page documents the lower-level JacsAgent class and module-level functions.","breadcrumbs":"API Reference » API Reference","id":"765","title":"API Reference"},"766":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"766","title":"Installation"},"767":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"767","title":"Core Module"},"768":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"768","title":"JacsAgent Class"},"769":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"769","title":"Constructor"},"77":{"body":"quickstart(name, domain, ...) creates a persistent agent with keys on disk (default algorithm: pq2025). If ./jacs.config.json already exists, it loads it; otherwise it creates a new agent. Returned AgentInfo includes config/key paths (config_path/public_key_path/private_key_path in Python, configPath/publicKeyPath/privateKeyPath in Node) plus key directory metadata so you can locate key material immediately. Rust/CLI quickstart requires an explicit password source (JACS_PRIVATE_KEY_PASSWORD, or JACS_PASSWORD_FILE in CLI). Python/Node can auto-generate a password if needed; set JACS_SAVE_PASSWORD_FILE=true if you want that generated password persisted to ./jacs_keys/.jacs_password.","breadcrumbs":"Quick Start » Zero-Config Quick Start","id":"77","title":"Zero-Config Quick Start"},"770":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"770","title":"agent.load(config_path)"},"771":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"771","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"772":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"772","title":"agent.verify_document(document_string)"},"773":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"773","title":"agent.verify_signature(document_string, signature_field=None)"},"774":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"774","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"775":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"775","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"776":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"776","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"777":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"777","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"778":{"body":"Sign an A2A artifact with JACS provenance. This is the canonical method name. Parameters: artifact_json (str): JSON string of the artifact to sign artifact_type (str): Type of artifact (e.g., \"task\", \"message\") parent_signatures_json (str, optional): JSON string of parent signatures for chain of custody Returns: str - The signed, wrapped artifact as a JSON string Example: signed = agent.sign_artifact( json.dumps({\"action\": \"classify\", \"input\": \"hello\"}), \"task\"\n)","breadcrumbs":"API Reference » agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"778","title":"agent.sign_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"779":{"body":"Deprecated since 0.9.0. Use sign_artifact() instead. This method will be removed in 1.0.0. Set JACS_SHOW_DEPRECATIONS=1 to see runtime warnings when deprecated methods are called. Wraps an A2A artifact with JACS provenance signature. Identical behavior to sign_artifact(). Parameters: Same as sign_artifact().","breadcrumbs":"API Reference » agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)","id":"779","title":"agent.wrap_a2a_artifact(artifact_json, artifact_type, parent_signatures_json=None)"},"78":{"body":"Rust CLI quickstart requires a password source. Choose one: # Option A: Environment variable (recommended for CI/servers)\nexport JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations)\njacs keychain set --agent-id # prompts once, then JACS finds the password automatically # Option C: Password file (CLI convenience)\nexport JACS_PASSWORD_FILE=/secure/path/jacs-password.txt If both JACS_PRIVATE_KEY_PASSWORD and JACS_PASSWORD_FILE are set, CLI fails fast to avoid ambiguity. The OS keychain is the lowest-priority source and is only consulted when neither env var nor password file is set. Python/Node quickstart can auto-generate a secure password if JACS_PRIVATE_KEY_PASSWORD is unset. Set JACS_SAVE_PASSWORD_FILE=true if you want the generated password persisted to ./jacs_keys/.jacs_password. In production, set JACS_PRIVATE_KEY_PASSWORD explicitly. One call and you're signing. Python pip install jacs import jacs.simple as jacs info = jacs.quickstart(name=\"my-agent\", domain=\"my-agent.example.com\")\nprint(info.config_path, info.public_key_path, info.private_key_path)\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}, Signer: {result.signer_id}\") Node.js npm install @hai.ai/jacs const jacs = require('@hai.ai/jacs/simple'); const info = await jacs.quickstart({ name: 'my-agent', domain: 'my-agent.example.com',\n});\nconsole.log(info.configPath, info.publicKeyPath, info.privateKeyPath);\nconst signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}, Signer: ${result.signerId}`); Rust CLI cargo install jacs-cli # Info mode -- prints agent ID and algorithm\njacs quickstart --name my-agent --domain my-agent.example.com # Sign JSON from stdin\necho '{\"action\":\"approve\"}' | jacs quickstart --name my-agent --domain my-agent.example.com --sign # Sign a file\njacs quickstart --name my-agent --domain my-agent.example.com --sign --file mydata.json Pass algorithm=\"ring-Ed25519\" (or { algorithm: 'ring-Ed25519' } in JS, --algorithm ring-Ed25519 in CLI) to override the default (pq2025). That's it -- you're signing. For most use cases, the quick start above is all you need. Jump to Which integration should I use? to find the right framework adapter, or read on for manual agent setup.","breadcrumbs":"Quick Start » Password bootstrap","id":"78","title":"Password bootstrap"},"780":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"780","title":"agent.sign_string(data)"},"781":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"781","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"782":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"782","title":"agent.sign_request(params)"},"783":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"783","title":"agent.verify_response(document_string)"},"784":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"784","title":"agent.verify_response_with_agent_id(document_string)"},"785":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"785","title":"agent.verify_agent(agent_file=None)"},"786":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"786","title":"agent.update_agent(new_agent_string)"},"787":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"787","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"788":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"788","title":"Module-Level Functions"},"789":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"789","title":"jacs.load(config_path)"},"79":{"body":"brew tap HumanAssisted/homebrew-jacs\nbrew install jacs","breadcrumbs":"Quick Start » macOS Homebrew install (Rust CLI)","id":"79","title":"macOS Homebrew install (Rust CLI)"},"790":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"790","title":"jacs.sign_request(data)"},"791":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"791","title":"jacs.verify_request(data)"},"792":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"792","title":"jacs.sign_response(data)"},"793":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"793","title":"jacs.verify_response(data)"},"794":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient, create_jacs_mcp_server, jacs_call Canonical MCP documentation lives at Python MCP Integration . This API section lists the MCP entry points only: JACSMCPServer(mcp_server, config_path=\"./jacs.config.json\", strict=False) - Wrap a FastMCP server with JACS request verification and response signing. JACSMCPClient(url, config_path=\"./jacs.config.json\", strict=False, **kwargs) - Create a FastMCP client with JACS signing/verification interceptors. create_jacs_mcp_server(name, config_path=None) - One-line server factory. jacs_call(server_url, method, **params) - One-shot authenticated MCP call. For examples, strict-mode behavior, and security guidance, see Python MCP Integration .","breadcrumbs":"API Reference » MCP Module","id":"794","title":"MCP Module"},"795":{"body":"","breadcrumbs":"API Reference » Configuration","id":"795","title":"Configuration"},"796":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"796","title":"Configuration File Format"},"797":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"797","title":"Configuration Options"},"798":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"798","title":"Error Handling"},"799":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"799","title":"Common Exceptions"},"8":{"body":"Good fit for services that need signing and verification without framework adapters","breadcrumbs":"Introduction » Go (jacsgo)","id":"8","title":"Go (jacsgo)"},"80":{"body":"The MCP server is built into the jacs binary. No separate install step needed. # Start the MCP server (stdio transport)\njacs mcp","breadcrumbs":"Quick Start » MCP server (Rust CLI)","id":"80","title":"MCP server (Rust CLI)"},"800":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"800","title":"Type Hints"},"801":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"801","title":"Thread Safety"},"802":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"802","title":"See Also"},"803":{"body":"jacsgo provides Go bindings for signing and verifying JACS documents in services, APIs, and agent runtimes. Note: Go bindings are community-maintained. Python and Node.js currently have broader framework adapter coverage. For full MCP surface use the Rust jacs-mcp server; the Go MCP examples in the repo are demo code.","breadcrumbs":"Installation & Quick Start » Go (jacsgo) Installation and Quick Start","id":"803","title":"Go (jacsgo) Installation and Quick Start"},"804":{"body":"go get github.com/HumanAssisted/JACS/jacsgo","breadcrumbs":"Installation & Quick Start » Install","id":"804","title":"Install"},"805":{"body":"Create an agent first (CLI: jacs create --name my-agent, or programmatically with jacs.Create() and JACS_PRIVATE_KEY_PASSWORD). Then: package main import ( \"fmt\" \"log\" jacs \"github.com/HumanAssisted/JACS/jacsgo\"\n) func main() { // Load agent: nil = default ./jacs.config.json if err := jacs.Load(nil); err != nil { log.Fatal(\"create an agent first: jacs create --name my-agent\") } signed, err := jacs.SignMessage(map[string]interface{}{ \"event\": \"tool-result\", \"status\": \"ok\", }) if err != nil { log.Fatal(err) } result, err := jacs.Verify(signed.Raw) if err != nil { log.Fatal(err) } fmt.Printf(\"Valid: %t signer=%s\\n\", result.Valid, result.SignerID)\n}","breadcrumbs":"Installation & Quick Start » Minimal Sign + Verify","id":"805","title":"Minimal Sign + Verify"},"806":{"body":"Use jacs.Create(name, &jacs.CreateAgentOptions{...}). Password must be set in options or via JACS_PRIVATE_KEY_PASSWORD. See the jacsgo README for the full API table and options.","breadcrumbs":"Installation & Quick Start » Programmatic agent creation","id":"806","title":"Programmatic agent creation"},"807":{"body":"For multiple agents in one process, use NewJacsAgent(), then agent.Load(path) and agent methods; call agent.Close() when done. Attestation, A2A (agent cards, trust policy), and protocol helpers are available on JacsAgent and as package-level wrappers (see godoc or the jacsgo README).","breadcrumbs":"Installation & Quick Start » Concurrent use","id":"807","title":"Concurrent use"},"808":{"body":"Sign outbound API/MCP payloads before crossing trust boundaries Verify inbound signed payloads before executing sensitive actions Sign files (SignFile) for portable chain-of-custody workflows Generate DNS TXT fingerprints (GetDnsRecord) for public identity verification","breadcrumbs":"Installation & Quick Start » Common Go Use Cases","id":"808","title":"Common Go Use Cases"},"809":{"body":"The Go repository includes runnable examples for transport-level signing: jacsgo/examples/mcp/main.go for MCP-style request/response signing jacsgo/examples/http/ for signed HTTP client/server traffic","breadcrumbs":"Installation & Quick Start » MCP and HTTP Patterns","id":"809","title":"MCP and HTTP Patterns"},"81":{"body":"For full control over agent creation, you can set up an agent manually with a config file and JACS_PRIVATE_KEY_PASSWORD environment variable. This is optional since quickstart(...) already creates a persistent agent. Rust CLI","breadcrumbs":"Quick Start » Advanced: Explicit Agent Setup","id":"81","title":"Advanced: Explicit Agent Setup"},"810":{"body":"JACS agent identity is key-based (jacsId + versioned signatures) Verification behavior follows the configured key-resolution order in the runtime (for example local and remote resolution modes supported by the underlying JACS core) DID interoperability is possible at the integration layer without requiring blockchain infrastructure See DNS-Based Verification and DID Integration (No Blockchain Required) .","breadcrumbs":"Installation & Quick Start » Identity and Trust Notes","id":"810","title":"Identity and Trust Notes"},"811":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"811","title":"JSON Schemas"},"812":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"812","title":"Schema Architecture"},"813":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"813","title":"Schema Categories"},"814":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"814","title":"Configuration Schema"},"815":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"815","title":"Document Schemas"},"816":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"816","title":"Component Schemas"},"817":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"817","title":"Schema Locations"},"818":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"818","title":"Using Schemas"},"819":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"819","title":"In Documents"},"82":{"body":"cargo install jacs-cli","breadcrumbs":"Quick Start » Install","id":"82","title":"Install"},"820":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"820","title":"In Configuration Files"},"821":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"821","title":"Custom Schema Validation"},"822":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"822","title":"HAI Extensions"},"823":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"823","title":"Versioning"},"824":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"824","title":"Schema Composition"},"825":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"825","title":"Creating Custom Schemas"},"826":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"826","title":"Validation Rules"},"827":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"827","title":"Required Fields"},"828":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"828","title":"Format Validation"},"829":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"829","title":"Enum Constraints"},"83":{"body":"# Create configuration and agent in one step\njacs init # Or step by step:\n# 1. Create config\njacs config create\n# 2. Create agent with keys\njacs agent create --create-keys true\n# 3. Verify\njacs agent verify","breadcrumbs":"Quick Start » Initialize","id":"83","title":"Initialize"},"830":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"830","title":"Schema Reference"},"831":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"831","title":"See Also"},"832":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"832","title":"Agent Schema"},"833":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"833","title":"Schema Location"},"834":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"834","title":"Overview"},"835":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"835","title":"Schema Structure"},"836":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"836","title":"Agent Types"},"837":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"837","title":"Contact Requirements"},"838":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"838","title":"Agent Properties"},"839":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"839","title":"Core Fields (from Header)"},"84":{"body":"jacs document create -f mydata.json Node.js","breadcrumbs":"Quick Start » Sign a document","id":"84","title":"Sign a document"},"840":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"840","title":"Agent-Specific Fields"},"841":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"841","title":"Services"},"842":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"842","title":"Service Schema Fields"},"843":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"843","title":"PII Types"},"844":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"844","title":"Contacts"},"845":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"845","title":"Contact Schema Fields"},"846":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"846","title":"DNS Verification"},"847":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"847","title":"Complete Example"},"848":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"848","title":"AI Agent"},"849":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"849","title":"Human Agent"},"85":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install","id":"85","title":"Install"},"850":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"850","title":"Organization Agent"},"851":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"851","title":"Creating Agents"},"852":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"852","title":"Python"},"853":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"853","title":"Node.js"},"854":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"854","title":"CLI"},"855":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"855","title":"Verifying Agents"},"856":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"856","title":"See Also"},"857":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"857","title":"Document Schema"},"858":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"858","title":"Schema Location"},"859":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"859","title":"Overview"},"86":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load from config file\nawait jacs.load('./jacs.config.json'); const signed = await jacs.signMessage({ action: 'approve', amount: 100 });\nconst result = await jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`); Python","breadcrumbs":"Quick Start » Load and use","id":"86","title":"Load and use"},"860":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"860","title":"Core Fields"},"861":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"861","title":"Identification"},"862":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"862","title":"Versioning"},"863":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"863","title":"Document Level"},"864":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"864","title":"Cryptographic Fields"},"865":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string Yes Algorithm used (ring-Ed25519, RSA-PSS, pq2025; pq-dilithium is legacy/deprecated) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"865","title":"Signature"},"866":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"866","title":"Registration"},"867":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"867","title":"Hash"},"868":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"868","title":"Agreements"},"869":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"869","title":"Agreement Schema Fields"},"87":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install","id":"87","title":"Install"},"870":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"870","title":"File Attachments"},"871":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"871","title":"File Schema Fields"},"872":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"872","title":"Vector Embeddings"},"873":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"873","title":"Embedding Schema Fields"},"874":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"874","title":"Complete Example"},"875":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"875","title":"HAI Field Categories"},"876":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"876","title":"Working with Documents"},"877":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"877","title":"Creating Documents"},"878":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"878","title":"Verifying Documents"},"879":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"879","title":"Updating Documents"},"88":{"body":"import jacs.simple as jacs # Load from config file\njacs.load(\"./jacs.config.json\") signed = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Quick Start » Load and use","id":"88","title":"Load and use"},"880":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"880","title":"Adding Attachments"},"881":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"881","title":"Version History"},"882":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"882","title":"See Also"},"883":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"883","title":"Task Schema"},"884":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"884","title":"Schema Location"},"885":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"885","title":"Overview"},"886":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"886","title":"Schema Structure"},"887":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"887","title":"Task States"},"888":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"888","title":"State Transitions"},"889":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"889","title":"Task Properties"},"89":{"body":"For scripts, CI/CD, and server environments where you need agents created programmatically with explicit parameters (without interactive prompts), use create(). For most cases, quickstart(...) above is simpler and also creates a persistent agent. Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = await jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Programmatic Agent Creation (v0.6.0+)","id":"89","title":"Programmatic Agent Creation (v0.6.0+)"},"890":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"890","title":"Core Fields (from Header)"},"891":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"891","title":"Task-Specific Fields"},"892":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"892","title":"Relationship Fields"},"893":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"893","title":"Actions"},"894":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"894","title":"Action Schema Fields"},"895":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"895","title":"Unit Schema"},"896":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"896","title":"Agreements"},"897":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"897","title":"Start Agreement"},"898":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"898","title":"End Agreement"},"899":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"899","title":"Complete Example"},"9":{"body":"","breadcrumbs":"Introduction » Quick Start","id":"9","title":"Quick Start"},"90":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"90","title":"Understanding What Happened"},"900":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"900","title":"Task Relationships"},"901":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"901","title":"Sub-Tasks"},"902":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"902","title":"Task Copies (Branching)"},"903":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"903","title":"Merged Tasks"},"904":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"904","title":"Task Workflow"},"905":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"905","title":"1. Creating a Task"},"906":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"906","title":"2. Assigning an Agent"},"907":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"907","title":"3. Signing Start Agreement"},"908":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"908","title":"4. Completing Work"},"909":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"909","title":"5. Final Completion"},"91":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"91","title":"1. Agent Creation"},"910":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"910","title":"State Machine Rules"},"911":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"911","title":"See Also"},"912":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"912","title":"Agent State Schema"},"913":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"913","title":"Schema Location"},"914":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"914","title":"Overview"},"915":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"915","title":"Schema Structure"},"916":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"916","title":"State Types"},"917":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"917","title":"Properties"},"918":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"918","title":"Required Fields"},"919":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"919","title":"Optional Fields"},"92":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"92","title":"2. Configuration Setup"},"920":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"920","title":"Origin Tracking"},"921":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"921","title":"File References"},"922":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"922","title":"Examples"},"923":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"923","title":"Minimal Agent State"},"924":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"924","title":"Memory File with Embedding"},"925":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"925","title":"Adopted Skill"},"926":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"926","title":"General-Purpose Signed Document"},"927":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"927","title":"Rust API"},"928":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"928","title":"Creating Agent State Documents"},"929":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"929","title":"Signing and Verification"},"93":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"93","title":"3. Task Creation"},"930":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document by JACS document ID (jacs_id) jacs_load_state Load an agent state document by JACS document ID (jacs_id) jacs_update_state Update and re-sign an agent state document by JACS document ID (jacs_id) jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"930","title":"MCP Tools"},"931":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"931","title":"MCP Example: Sign a Memory File"},"932":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"932","title":"MCP Example: Sign Any Document"},"933":{"body":"All agent state documents are stored within the JACS data directory for security MCP verify/load/update flows are jacs_id-based; direct path-only access is disabled Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"933","title":"Security Notes"},"934":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"934","title":"See Also"},"935":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"935","title":"Commitment Schema"},"936":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"936","title":"Schema"},"937":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"937","title":"Required Fields"},"938":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"938","title":"Status Lifecycle"},"939":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"939","title":"Optional Fields"},"94":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature (async)\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"94","title":"Verify Everything Works"},"940":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"940","title":"Cross-References"},"941":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"941","title":"Multi-Agent Agreements"},"942":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"942","title":"Example"},"943":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"943","title":"Rust API"},"944":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"944","title":"Versioning"},"945":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"945","title":"See Also"},"946":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"946","title":"Todo List Schema"},"947":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"947","title":"Schema"},"948":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"948","title":"Required Fields"},"949":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"949","title":"Optional Fields"},"95":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nawait reviewer.load('./reviewer.config.json'); // Create agreement between agents\nconst signedAgreement = await agent.createAgreement( signedTask, [agentDoc.jacsId, reviewerDoc.jacsId], 'Do you agree to collaborate on this content task?'\n); // Both agents sign the agreement\nconst signed1 = await agent.signAgreement(signedAgreement);\nconst signed2 = await reviewer.signAgreement(signed1); // Check agreement status\nconst status = await agent.checkAgreement(signed2);\nconsole.log('Agreement status:', JSON.parse(status)); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"95","title":"Next Steps: Multi-Agent Workflow"},"950":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"950","title":"Todo Items"},"951":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"951","title":"Required Item Fields"},"952":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"952","title":"Optional Item Fields"},"953":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"953","title":"Cross-References"},"954":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"954","title":"Item Hierarchy"},"955":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"955","title":"Example"},"956":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"956","title":"Rust API"},"957":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"957","title":"Versioning"},"958":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"958","title":"See Also"},"959":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"959","title":"Conversation Schema"},"96":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"96","title":"What You've Accomplished"},"960":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"960","title":"Schema"},"961":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"961","title":"Message Fields"},"962":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"962","title":"Required"},"963":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"963","title":"Optional"},"964":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"964","title":"Threading Model"},"965":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"965","title":"Immutability"},"966":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"966","title":"Example"},"967":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"967","title":"Rust API"},"968":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"968","title":"Cross-References"},"969":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"969","title":"See Also"},"97":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"97","title":"Key Takeaways"},"970":{"body":"This page documents the jacs.config.json schema fields. For a comprehensive configuration guide including observability setup, storage backends, zero-config quickstart, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Config File Schema","id":"970","title":"Config File Schema"},"971":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Config File Schema » Schema Location","id":"971","title":"Schema Location"},"972":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"YOUR_AGENT_ID:YOUR_VERSION\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} All other settings use sensible defaults (./jacs_data, ./jacs_keys, fs storage). Override only what you need.","breadcrumbs":"Config File Schema » Minimal Configuration","id":"972","title":"Minimal Configuration"},"973":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend jacs_keychain_backend string OS keychain backend: \"auto\", \"macos-keychain\", \"linux-secret-service\", \"disabled\"","breadcrumbs":"Config File Schema » Fields","id":"973","title":"Fields"},"974":{"body":"","breadcrumbs":"Config File Schema » Configuration Options","id":"974","title":"Configuration Options"},"975":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable or jacs keychain set (OS keychain) instead. See OS Keychain Configuration .","breadcrumbs":"Config File Schema » Key Configuration","id":"975","title":"Key Configuration"},"976":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Config File Schema » Storage Configuration","id":"976","title":"Storage Configuration"},"977":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Config File Schema » Agent Identity","id":"977","title":"Agent Identity"},"978":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Config File Schema » Schema Versions","id":"978","title":"Schema Versions"},"979":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Config File Schema » DNS Configuration","id":"979","title":"DNS Configuration"},"98":{"body":"Now that you have the basics working: Verify Signed Documents - Verify any document from CLI, Python, or Node.js -- no agent required A2A Quickstart - Make your agent discoverable by other A2A agents in minutes Framework Adapters - Add auto-signing to LangChain, FastAPI, CrewAI, or Anthropic SDK in 1-3 lines Multi-Agent Agreements - Cross-trust-boundary verification with quorum and timeout Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"98","title":"Where to Go Next"},"980":{"body":"jacs_keychain_backend OS keychain backend for password storage. Controls whether JACS looks up the private key password from the OS credential store. { \"jacs_keychain_backend\": \"auto\"\n} Value Description \"auto\" Detect platform default (macOS Keychain or Linux Secret Service) \"macos-keychain\" macOS Keychain \"linux-secret-service\" Linux D-Bus Secret Service \"disabled\" Never consult OS keychain (recommended for CI/headless) Override with env var: JACS_KEYCHAIN_BACKEND=disabled See OS Keychain Configuration for full details. jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Config File Schema » Security","id":"980","title":"Security"},"981":{"body":"The observability object supports logs, metrics, and tracing sub-objects. For full details on all destinations, sampling options, and production patterns, see the Configuration Reference .","breadcrumbs":"Config File Schema » Observability Fields","id":"981","title":"Observability Fields"},"982":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory JACS_KEYCHAIN_BACKEND jacs_keychain_backend","breadcrumbs":"Config File Schema » Environment Variables","id":"982","title":"Environment Variables"},"983":{"body":"Configuration Reference - Full configuration guide with examples JSON Schemas Overview - Schema architecture Observability (Rust API) - Rust observability API Observability & Monitoring Guide - Structured events, OTEL collector setup","breadcrumbs":"Config File Schema » See Also","id":"983","title":"See Also"},"984":{"body":"JACS occupies a unique position as an agent-layer attestation framework. This page compares JACS with related standards and explains when to use them together.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS Attestation vs. Other Standards","id":"984","title":"JACS Attestation vs. Other Standards"},"985":{"body":"Feature JACS in-toto / SLSA Sigstore / cosign SCITT IETF RATS / EAT Primary domain AI agent runtime Build provenance Artifact signing Transparency logs Hardware/platform attestation Identity model Decentralized (key pairs) Build system certs Keyless (OIDC) Issuer certs Platform certs Agent-native Yes No No No Partial Offline verification Yes Yes (with keys) No (requires Rekor) No (requires log) Depends Multi-agent quorum Yes (M-of-N) No No No No Evidence normalization Yes (A2A, email, JWT, custom) No No No Partial (EAT claims) Transform receipts Yes (derivation chains) Yes (build steps) No No No Probabilistic claims Yes (confidence + assurance) No No No No Post-quantum Yes (ML-DSA-87) No No No Depends Central infrastructure Not required Not required Required (Fulcio + Rekor) Required (transparency log) Depends Schema format JSON Schema + JCS in-toto layout Sigstore bundle SCITT receipt CBOR/COSE","breadcrumbs":"JACS Attestation vs. Other Standards » Comparison Table","id":"985","title":"Comparison Table"},"986":{"body":"Domain difference: in-toto and SLSA focus on build provenance -- proving that a software artifact was built by a specific builder from specific source code. JACS focuses on runtime agent actions -- proving that a specific agent performed a specific action with specific evidence. Interoperability: JACS exports attestations as DSSE (Dead Simple Signing Envelope) documents, the same format used by in-toto v1.0+. This means: A JACS attestation can include an in-toto predicate type URI SLSA verifiers can validate the DSSE envelope structure JACS and in-toto attestations can coexist in the same verification pipeline When to use both: If your workflow includes both software builds (use SLSA/in-toto for build provenance) and AI agent actions (use JACS for runtime attestation), you can link them via derivation chains.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. in-toto / SLSA","id":"986","title":"JACS vs. in-toto / SLSA"},"987":{"body":"Domain difference: Sigstore provides signing infrastructure (Fulcio CA, Rekor transparency log) and cosign is a tool for signing container images and artifacts. JACS provides its own signing with decentralized identity. Key difference: Sigstore's keyless signing relies on centralized OIDC identity providers and a public transparency log. JACS uses self-managed key pairs and does not require any centralized infrastructure. When to use both: Sigstore for container image signing in CI/CD pipelines. JACS for AI agent action signing at runtime. A planned Sigstore bundle verification adapter (N+2) would let JACS attestations reference Sigstore signatures as evidence.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. Sigstore / cosign","id":"987","title":"JACS vs. Sigstore / cosign"},"988":{"body":"Most overlap. SCITT (Supply Chain Integrity, Transparency and Trust) defines a centralized transparency service for recording signed statements about artifacts. Key difference: SCITT requires a transparency log (centralized notary). JACS is fully decentralized and offline-capable. JACS verification works without contacting any server. Complementary use: JACS signs and attests. SCITT logs. An organization could use JACS to create signed attestations and then submit them to a SCITT transparency log for auditability, getting the benefits of both decentralized creation and centralized discoverability.","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. SCITT","id":"988","title":"JACS vs. SCITT"},"989":{"body":"Layer difference: RATS (Remote ATtestation procedureS) and EAT (Entity Attestation Token) focus on hardware and platform attestation -- proving that a device or execution environment is in a known-good state. JACS fills the software agent layer above hardware. Alignment opportunity: JACS claim names could align with IANA-registered EAT claim types where they overlap. A JACS attestation could reference a RATS attestation result as evidence, creating a trust chain from hardware to agent. IETF drafts of interest: draft-huang-rats-agentic-eat-cap-attest-00 -- Capability attestation for agents, directly aligned with JACS claims model draft-messous-eat-ai-00 -- EAT profile for AI agents draft-jiang-seat-dynamic-attestation-00 -- Dynamic attestation for runtime assertions","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. IETF RATS / EAT","id":"989","title":"JACS vs. IETF RATS / EAT"},"99":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"99","title":"Troubleshooting"},"990":{"body":"The Cloud Security Alliance's Agentic Trust Framework defines progressive trust levels that map directly to JACS's trust model: CSA Level JACS Equivalent Verification None No JACS No signing Basic Open Valid signature accepted Standard Verified Trust store + DNS verification Enhanced Strict Attestation-level evidence required","breadcrumbs":"JACS Attestation vs. Other Standards » JACS vs. CSA Agentic Trust Framework","id":"990","title":"JACS vs. CSA Agentic Trust Framework"},"991":{"body":"Use JACS when you need: Agent identity that works without PKI/CA infrastructure Non-repudiable action logging for AI agent workflows Multi-agent authorization with quorum (M-of-N approval) Offline verification without centralized services Evidence-backed trust that goes beyond simple signing Post-quantum readiness for long-lived agent identities","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS","id":"991","title":"When to Use JACS"},"992":{"body":"Scenario JACS + ... CI/CD pipeline with AI agents JACS (agent actions) + SLSA (build provenance) Enterprise with compliance requirements JACS (signing) + SCITT (transparency log) IoT/edge with hardware attestation JACS (agent layer) + RATS/EAT (hardware layer) Container-based agent deployment JACS (runtime signing) + cosign (image signing)","breadcrumbs":"JACS Attestation vs. Other Standards » When to Use JACS Alongside Other Tools","id":"992","title":"When to Use JACS Alongside Other Tools"},"993":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"993","title":"Security Model"},"994":{"body":"Passwords : The private key password can be provided via JACS_PRIVATE_KEY_PASSWORD environment variable, JACS_PASSWORD_FILE, or the OS keychain (macOS Keychain / Linux Secret Service). It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : Registry verification requires HTTPS for JACS_REGISTRY_URL (legacy alias: HAI_API_URL). Localhost HTTP is allowed for local testing only. No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0+)","id":"994","title":"Security Model (v0.6.0+)"},"995":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"995","title":"Core Security Principles"},"996":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"996","title":"1. Cryptographic Identity"},"997":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"997","title":"2. Document Integrity"},"998":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"998","title":"3. Non-Repudiation"},"999":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"999","title":"Security Audit (audit())"}},"length":1657,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.0},"1245":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.0},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.0}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.0}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.0},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.0},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.0},"1246":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.4142135623730951}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.0},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.0},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.0},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":71,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1262":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":2.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.4142135623730951},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.0},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":40,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.449489742783178},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.4142135623730951},"756":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.0},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"241":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.0},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":63,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.0},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.0},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.4142135623730951}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1046":{"tf":1.0},"1487":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":629,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":2.8284271247461903},"1009":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"110":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.0},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.4142135623730951},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.449489742783178},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":1.7320508075688772},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.0},"1282":{"tf":1.7320508075688772},"1283":{"tf":2.23606797749979},"1284":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.0},"1412":{"tf":2.8284271247461903},"1413":{"tf":3.3166247903554},"1414":{"tf":2.6457513110645907},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":2.0},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":1.7320508075688772},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.449489742783178},"196":{"tf":3.3166247903554},"197":{"tf":2.8284271247461903},"198":{"tf":2.0},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":1.7320508075688772},"211":{"tf":2.0},"213":{"tf":1.7320508075688772},"214":{"tf":1.7320508075688772},"215":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.7320508075688772},"228":{"tf":1.0},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"234":{"tf":1.7320508075688772},"235":{"tf":2.23606797749979},"237":{"tf":1.0},"238":{"tf":2.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":2.23606797749979},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.6457513110645907},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":1.7320508075688772},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.23606797749979},"310":{"tf":1.0},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":2.23606797749979},"319":{"tf":2.6457513110645907},"32":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.6457513110645907},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":2.449489742783178},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":1.7320508075688772},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.449489742783178},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":2.0},"493":{"tf":1.0},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.7320508075688772},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.4142135623730951},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":1.7320508075688772},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":1.7320508075688772},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.4142135623730951},"728":{"tf":2.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.8284271247461903},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"81":{"tf":2.0},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.0},"834":{"tf":1.7320508075688772},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.7320508075688772},"853":{"tf":1.0},"854":{"tf":2.0},"855":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.0},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"912":{"tf":2.449489742783178},"914":{"tf":1.7320508075688772},"915":{"tf":1.4142135623730951},"916":{"tf":2.449489742783178},"918":{"tf":1.0},"919":{"tf":1.0},"92":{"tf":1.0},"920":{"tf":1.7320508075688772},"921":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"931":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.4142135623730951},"946":{"tf":1.0},"95":{"tf":4.242640687119285},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.4142135623730951},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.4142135623730951},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":150,"docs":{"1":{"tf":1.0},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":2.0},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"105":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.449489742783178},"1219":{"tf":2.0},"1220":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.0},"1408":{"tf":2.6457513110645907},"1409":{"tf":3.605551275463989},"1410":{"tf":3.3166247903554},"1440":{"tf":1.0},"1441":{"tf":2.23606797749979},"1442":{"tf":2.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":2.23606797749979},"1465":{"tf":2.0},"1466":{"tf":1.0},"1501":{"tf":3.1622776601683795},"1565":{"tf":1.0},"1566":{"tf":2.23606797749979},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":1.7320508075688772},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":2.8284271247461903},"210":{"tf":2.6457513110645907},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.0},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"293":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.4142135623730951},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"304":{"tf":2.0},"305":{"tf":1.7320508075688772},"306":{"tf":2.0},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.0},"63":{"tf":2.23606797749979},"722":{"tf":1.0},"723":{"tf":1.4142135623730951},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.0},"869":{"tf":1.0},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":45,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1391":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"29":{"tf":1.0},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":104,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1111":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1121":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":2.0},"1131":{"tf":1.0},"1133":{"tf":2.23606797749979},"1136":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":2.23606797749979},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.449489742783178},"1554":{"tf":2.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.0},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.7320508075688772},"228":{"tf":1.0},"237":{"tf":1.0},"299":{"tf":1.7320508075688772},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.0},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":1.7320508075688772},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"117":{"tf":1.0},"1196":{"tf":1.4142135623730951},"120":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"318":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.4142135623730951},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":103,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.0},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"184":{"tf":1.0},"301":{"tf":1.4142135623730951},"32":{"tf":1.0},"334":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.4142135623730951},"397":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"467":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.0},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.4142135623730951},"592":{"tf":1.0},"608":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"674":{"tf":1.0},"683":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.7320508075688772},"794":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.0},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1372":{"tf":1.0},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.0},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.0},"130":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.0},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0}}}}}},"df":63,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":2.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.0},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.4142135623730951},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.449489742783178},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.0},"252":{"tf":2.449489742783178},"253":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.0},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.4142135623730951},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":79,"docs":{"123":{"tf":1.7320508075688772},"124":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"129":{"tf":2.0},"130":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.4142135623730951},"1317":{"tf":1.7320508075688772},"1318":{"tf":1.0},"132":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":2.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":2.0},"1345":{"tf":1.7320508075688772},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":2.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.7320508075688772},"1598":{"tf":2.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.8284271247461903},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1614":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951},"989":{"tf":3.0},"990":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.0}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.0},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.0},"686":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.7320508075688772}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.23606797749979},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.0},"1618":{"tf":1.0},"175":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.23606797749979},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.23606797749979},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.0},"646":{"tf":2.0},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.0},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":2.449489742783178},"1571":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1636":{"tf":1.0},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":51,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.0},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.4142135623730951},"321":{"tf":1.0},"327":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.0},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":44,"docs":{"1156":{"tf":1.0},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1461":{"tf":1.0},"1503":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1611":{"tf":1.0},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":1.7320508075688772},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.0},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.0},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.0},"70":{"tf":1.0},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.4142135623730951},"503":{"tf":1.0},"665":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":1.7320508075688772},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.0}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.7320508075688772},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.0},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"130":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.0},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.4142135623730951},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":23,"docs":{"1":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.449489742783178},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":31,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.0},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.0},"875":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.0},"1071":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.0},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.0},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.0},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1249":{"tf":1.0},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.0},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.0},"332":{"tf":1.0},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":1.7320508075688772},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.0},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.4142135623730951},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.4142135623730951},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.0}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1482":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1614":{"tf":1.0},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"207":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.0},"80":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.0},"1459":{"tf":1.0},"1462":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.0},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":46,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.0},"1277":{"tf":1.0},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1629":{"tf":1.0},"212":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":1.7320508075688772},"983":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":40,"docs":{"1062":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":1.7320508075688772},"1483":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.4142135623730951},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":23,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"942":{"tf":1.0},"943":{"tf":2.6457513110645907},"944":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"149":{"tf":1.0},"1502":{"tf":1.0},"1506":{"tf":1.0},"1523":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"380":{"tf":1.0},"429":{"tf":1.0},"436":{"tf":1.0},"510":{"tf":1.0},"626":{"tf":1.0},"662":{"tf":1.0},"671":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.0},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.0},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":26,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.4142135623730951},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"874":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.0},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.0},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"125":{"tf":1.0},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.4142135623730951},"552":{"tf":1.0},"564":{"tf":1.0},"75":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":1.7320508075688772},"659":{"tf":2.0},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.0},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":109,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.0},"982":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":180,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":2.0},"1531":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1580":{"tf":1.4142135623730951},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.0},"250":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.4142135623730951},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.4142135623730951},"820":{"tf":1.0},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.23606797749979},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1247":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"397":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.0},"1251":{"tf":1.0},"2":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.4142135623730951},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.4142135623730951},"840":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.4142135623730951},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.4142135623730951},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.0},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.4142135623730951},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.0},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":34,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.0},"130":{"tf":1.0},"136":{"tf":1.0},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.0},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.0},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.0},"434":{"tf":1.0},"47":{"tf":1.0},"552":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"751":{"tf":1.0},"767":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.0},"1229":{"tf":2.23606797749979},"1230":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":293,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":3.872983346207417},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.449489742783178},"1410":{"tf":2.449489742783178},"1412":{"tf":2.8284271247461903},"1416":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":3.872983346207417},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.4142135623730951},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":1.7320508075688772},"195":{"tf":3.1622776601683795},"200":{"tf":2.0},"202":{"tf":3.1622776601683795},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":2.23606797749979},"219":{"tf":2.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"284":{"tf":1.4142135623730951},"294":{"tf":1.7320508075688772},"304":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.7320508075688772},"346":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"499":{"tf":1.4142135623730951},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.0},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.0},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.0},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.0},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":102,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.0},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.4142135623730951},"648":{"tf":1.0},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.0},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":2.0},"1169":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":1.7320508075688772},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"372":{"tf":1.0},"439":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"825":{"tf":1.4142135623730951},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.7320508075688772},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.0}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.4142135623730951},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":15,"docs":{"1124":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.0},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.0},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.0},"362":{"tf":1.0},"371":{"tf":1.7320508075688772},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.0},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.4142135623730951},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":29,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":1.4142135623730951},"144":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.4142135623730951},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.4142135623730951},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.0},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.0},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"653":{"tf":1.0},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.4142135623730951},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.0},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.0},"252":{"tf":1.0},"258":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":6,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":97,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.0},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":2.8284271247461903},"1199":{"tf":1.7320508075688772},"120":{"tf":2.8284271247461903},"1200":{"tf":2.449489742783178},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1203":{"tf":2.8284271247461903},"1204":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1557":{"tf":1.7320508075688772},"1558":{"tf":2.23606797749979},"1559":{"tf":2.0},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.6457513110645907},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.0},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.7320508075688772},"308":{"tf":2.0},"309":{"tf":2.449489742783178},"311":{"tf":2.449489742783178},"312":{"tf":2.6457513110645907},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":3.3166247903554},"320":{"tf":3.4641016151377544},"321":{"tf":1.0},"322":{"tf":1.7320508075688772},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.4142135623730951},"331":{"tf":2.0},"332":{"tf":2.449489742783178},"333":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.0},"979":{"tf":2.0},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.23606797749979},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.23606797749979},"323":{"tf":2.23606797749979},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":473,"docs":{"1004":{"tf":2.0},"1005":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.0},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.23606797749979},"1160":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.23606797749979},"121":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.0},"1218":{"tf":1.0},"122":{"tf":1.0},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":3.605551275463989},"1404":{"tf":3.3166247903554},"1405":{"tf":2.6457513110645907},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.23606797749979},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.7320508075688772},"1432":{"tf":2.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":2.0},"1456":{"tf":1.7320508075688772},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":3.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":1.7320508075688772},"1497":{"tf":4.0},"1498":{"tf":3.0},"1499":{"tf":3.1622776601683795},"1500":{"tf":3.1622776601683795},"1501":{"tf":3.1622776601683795},"1503":{"tf":2.8284271247461903},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.0},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.4142135623730951},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":3.3166247903554},"203":{"tf":2.6457513110645907},"204":{"tf":3.1622776601683795},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.23606797749979},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.7320508075688772},"240":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":1.4142135623730951},"243":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.7320508075688772},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"25":{"tf":1.0},"250":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"255":{"tf":1.0},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"260":{"tf":1.7320508075688772},"261":{"tf":1.0},"262":{"tf":2.449489742783178},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":2.23606797749979},"277":{"tf":2.0},"278":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"347":{"tf":2.0},"348":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"350":{"tf":1.4142135623730951},"353":{"tf":2.0},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"48":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":2.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.4142135623730951},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.23606797749979},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":2.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":2.0},"74":{"tf":1.0},"740":{"tf":1.4142135623730951},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.4142135623730951},"819":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":2.0},"876":{"tf":1.0},"877":{"tf":2.449489742783178},"878":{"tf":1.0},"879":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":2.0},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.4142135623730951},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":57,"docs":{"1008":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1487":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.449489742783178}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.0},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.0},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":26,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1383":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.0},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.0},"452":{"tf":1.7320508075688772},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.4142135623730951},"254":{"tf":1.0},"262":{"tf":1.0},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.4142135623730951},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.0},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.4142135623730951},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":124,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":3.605551275463989},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":2.449489742783178},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.7320508075688772},"1572":{"tf":1.7320508075688772},"1573":{"tf":1.4142135623730951},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.4142135623730951},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.4142135623730951},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"500":{"tf":2.0},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.4142135623730951},"625":{"tf":2.23606797749979},"664":{"tf":1.4142135623730951},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":2.6457513110645907},"798":{"tf":1.7320508075688772},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.0},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":2.449489742783178},"1324":{"tf":2.0},"1325":{"tf":2.449489742783178},"1326":{"tf":2.23606797749979},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.23606797749979},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":2.23606797749979},"1336":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.8284271247461903},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":112,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1082":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"146":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1478":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1536":{"tf":1.0},"155":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"185":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.0},"435":{"tf":1.7320508075688772},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"581":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":1.7320508075688772},"699":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.4142135623730951},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.4142135623730951},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":16,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.0},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.4142135623730951},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.23606797749979},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.4142135623730951},"133":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":40,"docs":{"1192":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1429":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":2.23606797749979},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"539":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"543":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":2.23606797749979},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.0},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.0},"729":{"tf":1.0},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.449489742783178},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.23606797749979},"262":{"tf":2.23606797749979},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.0},"152":{"tf":1.0},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"159":{"tf":1.0},"1594":{"tf":1.0},"160":{"tf":1.0},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.0},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1210":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.4142135623730951},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.0},"1332":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.23606797749979},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.0},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.0},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.0},"750":{"tf":1.0},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.6457513110645907},"175":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"369":{"tf":2.23606797749979},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.0},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":1.7320508075688772},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.7320508075688772},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":2.0},"890":{"tf":1.7320508075688772},"891":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"945":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"981":{"tf":1.0},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":204,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":2.0},"1511":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"247":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.4142135623730951},"414":{"tf":1.0},"416":{"tf":1.0},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"642":{"tf":1.0},"644":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.23606797749979},"871":{"tf":2.0},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":1.7320508075688772},"924":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.0}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.4142135623730951},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"184":{"tf":1.0},"19":{"tf":1.0},"210":{"tf":1.0},"216":{"tf":1.0},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.0},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"348":{"tf":1.0},"369":{"tf":1.4142135623730951},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"13":{"tf":1.0},"140":{"tf":1.0},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1127":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.0},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.23606797749979},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.23606797749979},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1577":{"tf":1.0},"161":{"tf":1.0},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.4142135623730951},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.0},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":35,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.0},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1334":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.0},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.4142135623730951}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.0},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.4142135623730951},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.0},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.4142135623730951},"1240":{"tf":2.6457513110645907},"1241":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.4142135623730951},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.0},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.0},"515":{"tf":1.0},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.0},"1506":{"tf":1.0},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":2.0},"804":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.0},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.0},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.0},"1535":{"tf":1.0},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":33,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1204":{"tf":1.0},"1260":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":1.4142135623730951},"163":{"tf":1.0},"164":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.0},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.0},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.0},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.0},"439":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":1.7320508075688772},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.4142135623730951},"673":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":1.7320508075688772},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.0},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.23606797749979},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.23606797749979},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.0},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.0},"171":{"tf":1.0},"186":{"tf":2.6457513110645907},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.0},"800":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.4142135623730951},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.0},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":40,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.0},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.0},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.0},"1650":{"tf":1.0},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.7320508075688772},"617":{"tf":1.0},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.4142135623730951},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.4142135623730951},"451":{"tf":1.0},"652":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":137,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1046":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.4142135623730951},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.0},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.0},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":13,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.0},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.0},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.0},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":80,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.7320508075688772},"152":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"165":{"tf":1.0},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.7320508075688772},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"404":{"tf":1.0},"430":{"tf":1.0},"432":{"tf":1.0},"434":{"tf":1.0},"504":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"527":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"633":{"tf":1.7320508075688772},"634":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.4142135623730951},"78":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"518":{"tf":1.0},"520":{"tf":1.4142135623730951},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.4142135623730951},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":109,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1327":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.0},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.0},"35":{"tf":1.0},"354":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.0}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1561":{"tf":1.7320508075688772},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.0},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"163":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":2.449489742783178},"953":{"tf":1.7320508075688772},"954":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":588,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.449489742783178},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.4142135623730951},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.23606797749979},"1256":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.449489742783178},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.0},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1485":{"tf":2.449489742783178},"1486":{"tf":2.6457513110645907},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.7320508075688772},"1489":{"tf":1.7320508075688772},"149":{"tf":1.0},"1491":{"tf":1.7320508075688772},"1493":{"tf":1.7320508075688772},"1495":{"tf":1.7320508075688772},"1496":{"tf":1.0},"1497":{"tf":3.0},"1498":{"tf":2.449489742783178},"1499":{"tf":2.23606797749979},"1500":{"tf":2.0},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1599":{"tf":1.0},"16":{"tf":1.4142135623730951},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.0},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.7320508075688772},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":1.7320508075688772},"51":{"tf":1.0},"515":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":2.449489742783178},"987":{"tf":2.23606797749979},"988":{"tf":2.23606797749979},"989":{"tf":2.23606797749979},"990":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951},"992":{"tf":2.449489742783178},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.4142135623730951},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.0},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.0},"803":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.7320508075688772}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":170,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.0},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.3166247903554},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.0},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.69041575982343},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.0},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":2.449489742783178},"1008":{"tf":3.0},"1009":{"tf":2.23606797749979},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.449489742783178},"1065":{"tf":1.0},"1066":{"tf":2.0},"1067":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":2.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":2.23606797749979},"1075":{"tf":1.7320508075688772},"1076":{"tf":1.0},"1077":{"tf":2.23606797749979},"1078":{"tf":1.7320508075688772},"1079":{"tf":3.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":2.0},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.4142135623730951},"1089":{"tf":2.0},"1090":{"tf":2.0},"1091":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.7320508075688772},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.0},"1127":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":1.7320508075688772},"125":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":2.0},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":1.7320508075688772},"1546":{"tf":2.449489742783178},"1547":{"tf":2.449489742783178},"1548":{"tf":1.7320508075688772},"1549":{"tf":2.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":2.23606797749979},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":1.7320508075688772},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.0},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951},"973":{"tf":1.7320508075688772},"975":{"tf":2.449489742783178},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.0},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":13,"docs":{"1393":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":1.7320508075688772},"554":{"tf":2.0},"560":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":2.6457513110645907},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":7,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.4142135623730951},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1478":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"512":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"758":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.4142135623730951},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.4142135623730951},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.0},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"1360":{"tf":1.4142135623730951},"137":{"tf":2.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"140":{"tf":2.23606797749979},"141":{"tf":2.0},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.0},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.4142135623730951},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.4142135623730951},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.0},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.4142135623730951},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":16,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.0},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.0},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":41,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"949":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":3.0},"957":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.7320508075688772},"343":{"tf":1.0},"347":{"tf":1.4142135623730951},"355":{"tf":1.0},"357":{"tf":1.4142135623730951},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":2.0},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.4142135623730951},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.4142135623730951},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.4142135623730951},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"871":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"924":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.0},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.605551275463989},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":2.449489742783178},"376":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.23606797749979},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.4142135623730951},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"910":{"tf":1.0}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.0},"670":{"tf":1.0},"69":{"tf":1.0},"737":{"tf":1.0},"741":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.0},"218":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":2.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.0},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":96,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":2.0},"1227":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":2.6457513110645907},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"1252":{"tf":2.0},"1253":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.7320508075688772},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":2.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":2.0},"187":{"tf":1.4142135623730951},"190":{"tf":2.0},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.7320508075688772},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.23606797749979},"408":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.23606797749979},"505":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":2.0},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.23606797749979},"749":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.23606797749979},"794":{"tf":2.449489742783178},"80":{"tf":2.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.0},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.0},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.4142135623730951},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.0},"928":{"tf":1.7320508075688772},"931":{"tf":2.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.0},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.4142135623730951},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.4142135623730951},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.0},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.1622776601683795},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":2.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":1.7320508075688772},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":50,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.0},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.4142135623730951},"556":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.0},"571":{"tf":1.0},"574":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.0}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":32,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1538":{"tf":1.4142135623730951},"1615":{"tf":1.7320508075688772},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1639":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.4142135623730951},"1654":{"tf":1.0},"1655":{"tf":1.0},"551":{"tf":1.4142135623730951},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.0},"1329":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"972":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.0},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":4.0},"1227":{"tf":2.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":22,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":76,"docs":{"1000":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":1.7320508075688772},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.4142135623730951},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1371":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":45,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.0},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.0},"1470":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.0},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.0},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":1.7320508075688772},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":1.7320508075688772},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"1435":{"tf":1.7320508075688772},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"910":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":85,"docs":{"1":{"tf":1.0},"103":{"tf":1.0},"112":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.0},"1396":{"tf":1.0},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"1450":{"tf":1.4142135623730951},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.23606797749979},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1174":{"tf":1.0},"1188":{"tf":1.0},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.0},"1640":{"tf":1.0},"177":{"tf":1.0},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.4142135623730951},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.0},"1589":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1377":{"tf":1.0},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"387":{"tf":1.4142135623730951},"397":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.4142135623730951},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.4142135623730951}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.0},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1604":{"tf":1.0},"1606":{"tf":1.0},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":1.7320508075688772},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.0},"51":{"tf":1.0},"588":{"tf":1.4142135623730951},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.4142135623730951},"836":{"tf":1.0},"850":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.0},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"250":{"tf":1.0},"259":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.0},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1181":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"3":{"tf":1.0},"308":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.4142135623730951},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.4142135623730951},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":1.7320508075688772},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.47213595499958},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.0},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":2.8284271247461903},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.0},"1270":{"tf":1.0},"1272":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.4142135623730951},"511":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.0},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1478":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.0},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.7320508075688772},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.4142135623730951},"660":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.0},"1477":{"tf":1.0},"3":{"tf":1.0},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.0},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.0},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.4142135623730951},"65":{"tf":1.0},"651":{"tf":1.4142135623730951},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"309":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.0}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"1487":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1241":{"tf":1.0},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.0},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":1.7320508075688772},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.0},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.0},"1064":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1458":{"tf":1.0},"1469":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.4142135623730951},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.4142135623730951},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.4142135623730951},"735":{"tf":1.0},"744":{"tf":1.4142135623730951},"805":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.4142135623730951},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.4142135623730951},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1245":{"tf":1.0},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.0},"915":{"tf":1.0},"917":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.4142135623730951},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.449489742783178},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.23606797749979},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.0},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.4142135623730951}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":103,"docs":{"1":{"tf":1.0},"102":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.0},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"1475":{"tf":1.7320508075688772},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":2.0},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.0},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":29,"docs":{"1062":{"tf":1.0},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"163":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":26,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.0},"13":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.449489742783178},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.23606797749979},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.0}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.0},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.4142135623730951},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.0},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.23606797749979},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.7320508075688772},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.4142135623730951},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.4142135623730951},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.4142135623730951},"1066":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.0},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":85,"docs":{"105":{"tf":1.0},"1060":{"tf":1.0},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1504":{"tf":1.0},"1512":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.4142135623730951},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.0},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.0},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"751":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.0},"1260":{"tf":1.0},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.0},"900":{"tf":1.0},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":24,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.0},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.0},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.0},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.0},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.4142135623730951},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.0},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.7320508075688772},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.0},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.0},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.0},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.0},"935":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"110":{"tf":1.0},"122":{"tf":1.0},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.0},"289":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":119,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.4142135623730951},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1072":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1079":{"tf":2.23606797749979},"1080":{"tf":2.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1095":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":2.0},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.4142135623730951},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.0},"1144":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.4142135623730951},"183":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.0},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":61,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":1.7320508075688772},"34":{"tf":1.0},"367":{"tf":1.7320508075688772},"397":{"tf":1.0},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1637":{"tf":2.0},"1638":{"tf":1.4142135623730951},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.0},"801":{"tf":1.0},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1487":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.0},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.4142135623730951},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":149,"docs":{"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.7320508075688772},"1158":{"tf":1.0},"1159":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":2.0},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.0},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":1.7320508075688772},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.23606797749979},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"817":{"tf":1.7320508075688772},"818":{"tf":1.0},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":2.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0},"830":{"tf":3.0},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":2.449489742783178},"842":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":2.0},"858":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.7320508075688772},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"886":{"tf":2.23606797749979},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.0},"911":{"tf":2.0},"912":{"tf":1.4142135623730951},"913":{"tf":1.0},"915":{"tf":2.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.7320508075688772},"926":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"945":{"tf":1.7320508075688772},"946":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"966":{"tf":1.0},"969":{"tf":1.7320508075688772},"970":{"tf":1.4142135623730951},"971":{"tf":1.0},"972":{"tf":1.0},"978":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.23606797749979},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.0},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.0},"1391":{"tf":1.0},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.0},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":130,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.0},"1013":{"tf":1.0},"1019":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1199":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.0},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.4142135623730951},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"990":{"tf":1.0},"993":{"tf":1.4142135623730951},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.0},"140":{"tf":1.7320508075688772},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"605":{"tf":1.0},"626":{"tf":1.0},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1112":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"1051":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":1.7320508075688772},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":10,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":87,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.449489742783178},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.4142135623730951},"172":{"tf":1.7320508075688772},"187":{"tf":1.0},"190":{"tf":1.7320508075688772},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.0},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.4142135623730951},"573":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"583":{"tf":1.0},"587":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.23606797749979},"224":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"842":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.0},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.4142135623730951},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.4142135623730951},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.0},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.0},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.0},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.449489742783178},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.0},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.7320508075688772},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.7320508075688772},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.0},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":437,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.23606797749979},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.4142135623730951},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.23606797749979},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1125":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1206":{"tf":2.23606797749979},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1221":{"tf":2.23606797749979},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":1.7320508075688772},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1316":{"tf":2.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.0},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":2.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":2.0},"1394":{"tf":2.0},"1395":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":2.8284271247461903},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":1.7320508075688772},"1567":{"tf":2.0},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.0},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.0},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.7320508075688772},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.7320508075688772},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"488":{"tf":1.4142135623730951},"489":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.4142135623730951},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":1.7320508075688772},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.0},"548":{"tf":1.7320508075688772},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":1.7320508075688772},"559":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":1.0},"724":{"tf":1.4142135623730951},"725":{"tf":1.0},"729":{"tf":1.4142135623730951},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.23606797749979}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":9,"docs":{"1621":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"463":{"tf":1.0},"671":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.449489742783178},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.0},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.0},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.0},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.0},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.0},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.7320508075688772},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":1.4142135623730951},"990":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.0}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":55,"docs":{"1":{"tf":1.0},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.0},"370":{"tf":1.0},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.4142135623730951},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"760":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.4142135623730951},"910":{"tf":1.7320508075688772},"938":{"tf":1.0},"967":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":37,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.7320508075688772},"912":{"tf":2.0},"914":{"tf":2.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":2.6457513110645907},"933":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.0},"304":{"tf":1.0},"323":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.0},"163":{"tf":1.4142135623730951},"1635":{"tf":1.0},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"30":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":60,"docs":{"1045":{"tf":1.0},"111":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":2.23606797749979},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.0},"1571":{"tf":2.0},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.0},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":2.8284271247461903},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"419":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.4142135623730951},"646":{"tf":1.0},"647":{"tf":1.0},"684":{"tf":1.0},"71":{"tf":1.4142135623730951},"72":{"tf":1.7320508075688772},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.7320508075688772},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":2.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1487":{"tf":3.1622776601683795},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.0},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1389":{"tf":2.23606797749979},"1391":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":1.7320508075688772},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.0},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.4142135623730951},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.4142135623730951},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.0},"1039":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1126":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.0},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.0},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.0},"1419":{"tf":1.0},"1619":{"tf":1.0},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.0},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.449489742783178},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.0},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.0},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.0},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.0},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":91,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":2.6457513110645907},"1494":{"tf":1.0},"1495":{"tf":2.0},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":3.4641016151377544},"25":{"tf":1.4142135623730951},"264":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"58":{"tf":2.0},"59":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"887":{"tf":2.0},"889":{"tf":1.0},"890":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"892":{"tf":1.7320508075688772},"896":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.7320508075688772},"902":{"tf":1.4142135623730951},"903":{"tf":1.4142135623730951},"904":{"tf":1.0},"905":{"tf":1.4142135623730951},"906":{"tf":1.0},"93":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":78,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.0},"1213":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1215":{"tf":3.3166247903554},"1216":{"tf":1.0},"1217":{"tf":2.449489742783178},"1218":{"tf":2.0},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1223":{"tf":2.23606797749979},"1224":{"tf":1.7320508075688772},"1226":{"tf":2.6457513110645907},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1233":{"tf":2.449489742783178},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1236":{"tf":3.0},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1239":{"tf":1.0},"1241":{"tf":1.0},"1243":{"tf":2.0},"1244":{"tf":2.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1315":{"tf":1.0},"1329":{"tf":2.0},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":2.449489742783178},"1471":{"tf":1.0},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":1.7320508075688772},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.0},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.0},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"364":{"tf":1.7320508075688772},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772},"801":{"tf":2.8284271247461903},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":1.7320508075688772},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.0},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1559":{"tf":1.0},"2":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":17,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.0},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":74,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1223":{"tf":1.0},"1240":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1347":{"tf":1.0},"1349":{"tf":1.7320508075688772},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":1.7320508075688772},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":1.7320508075688772},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.449489742783178},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":1.7320508075688772},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.0}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.449489742783178}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.4641016151377544},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.7320508075688772},"384":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.7320508075688772},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.4142135623730951},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.4142135623730951},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1227":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"73":{"tf":1.0},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.0},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":114,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1031":{"tf":1.7320508075688772},"1032":{"tf":1.7320508075688772},"1033":{"tf":1.7320508075688772},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":1.7320508075688772},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.0},"1184":{"tf":2.23606797749979},"1185":{"tf":2.23606797749979},"1186":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1196":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":2.23606797749979},"1291":{"tf":1.7320508075688772},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.449489742783178},"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1360":{"tf":1.0},"137":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"1385":{"tf":1.0},"139":{"tf":2.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":2.23606797749979},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.0},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.23606797749979},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.0},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1313":{"tf":1.4142135623730951},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":1.7320508075688772},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"689":{"tf":1.0},"693":{"tf":1.4142135623730951},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.0},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"623":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.0},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.0},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.0},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":1.7320508075688772},"270":{"tf":1.0},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.0},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1498":{"tf":2.6457513110645907},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.23606797749979},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.0},"261":{"tf":1.4142135623730951},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":2.0},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.0},"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"728":{"tf":2.0},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.23606797749979},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"119":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.4142135623730951},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":34,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":377,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.0},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.23606797749979},"1305":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.4142135623730951},"3":{"tf":1.0},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.0},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":1.7320508075688772},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":1.4142135623730951},"397":{"tf":1.0},"40":{"tf":1.7320508075688772},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"528":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.0},"632":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.0},"811":{"tf":1.0},"818":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.0},"562":{"tf":1.0},"614":{"tf":1.0},"636":{"tf":1.0},"733":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.4142135623730951},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":1.7320508075688772},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"338":{"tf":1.0},"355":{"tf":1.4142135623730951},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.4142135623730951},"228":{"tf":1.0},"414":{"tf":1.4142135623730951},"418":{"tf":1.0},"642":{"tf":1.4142135623730951},"646":{"tf":1.0},"743":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.0},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.0},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":7,"docs":{"1391":{"tf":1.0},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":203,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.0},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1419":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.4142135623730951},"1555":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.0},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.0},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.4142135623730951},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":2.0},"318":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.4142135623730951},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.0},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.0},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":349,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":1.4142135623730951},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.3166247903554},"1074":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"111":{"tf":1.0},"1128":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1404":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.3166247903554},"1493":{"tf":1.0},"1499":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.7320508075688772},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.4142135623730951},"1610":{"tf":1.0},"1611":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.0},"17":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":2.6457513110645907},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.0},"319":{"tf":2.6457513110645907},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.0},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"48":{"tf":1.0},"485":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"496":{"tf":1.7320508075688772},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.0},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":1.7320508075688772},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.23606797749979},"878":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.1622776601683795},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.0},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":1.7320508075688772},"1070":{"tf":2.0},"1071":{"tf":1.7320508075688772},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.0},"1084":{"tf":2.23606797749979},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.23606797749979},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.0},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.7320508075688772},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.23606797749979},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.0},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"957":{"tf":1.7320508075688772},"977":{"tf":1.0},"978":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":22,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.0},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.0},"592":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.4142135623730951},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":1.7320508075688772},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.0}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.0},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":52,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.4142135623730951}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":75,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1027":{"tf":1.0},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.0},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.0},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.0},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":20,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.0},"1329":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":3,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0},"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"388":{"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":{}},"0":{"2":{"3":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1521":{"tf":1.0}}},"5":{"df":1,"docs":{"1525":{"tf":1.0}}},"df":2,"docs":{"127":{"tf":1.0},"1521":{"tf":1.0}}},"1":{"df":4,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.4142135623730951}}}},"df":6,"docs":{"1346":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1517":{"tf":1.0},"1525":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":4,"docs":{"1628":{"tf":1.4142135623730951},"1630":{"tf":2.449489742783178},"605":{"tf":1.0},"779":{"tf":1.0}}},"df":0,"docs":{}},"5":{"df":6,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.4142135623730951}}},"df":3,"docs":{"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"0":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"1":{"df":12,"docs":{"1157":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"872":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"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":{"989":{"tf":1.7320508075688772}}},"1":{"2":{"3":{"df":2,"docs":{"225":{"tf":1.0},"844":{"tf":1.0}}},"df":0,"docs":{}},"df":28,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1128":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"375":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"737":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"862":{"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":{}}},"2":{"df":9,"docs":{"107":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.4142135623730951},"501":{"tf":1.0},"737":{"tf":1.0}}},"3":{"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1602":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"942":{"tf":1.4142135623730951}}},"4":{"df":0,"docs":{},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"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":{"1334":{"tf":1.0}}}},"6":{"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"300":{"tf":1.0}}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"1052":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1510":{"tf":1.0},"811":{"tf":1.0}}},"df":32,"docs":{"1016":{"tf":1.0},"103":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1174":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"1408":{"tf":1.0},"1418":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1442":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"212":{"tf":1.0},"668":{"tf":1.0},"697":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"980":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"862":{"tf":1.0}}},"8":{"df":1,"docs":{"862":{"tf":1.0}}},"9":{"df":9,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"849":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"850":{"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":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":2,"docs":{"1131":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":14,"docs":{"1179":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1461":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":2.449489742783178},"387":{"tf":1.0},"427":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"928":{"tf":1.0}}},"df":0,"docs":{}},"df":12,"docs":{"127":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1368":{"tf":1.0},"1387":{"tf":1.0},"1521":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.0}}},"3":{"df":2,"docs":{"1098":{"tf":1.4142135623730951},"1113":{"tf":1.0}}},"5":{"df":1,"docs":{"116":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}},"df":5,"docs":{"145":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1409":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"821":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.0}}},"1":{"df":1,"docs":{"850":{"tf":1.0}}},"df":3,"docs":{"1161":{"tf":1.0},"1410":{"tf":1.0},"266":{"tf":1.0}}},"df":18,"docs":{"1131":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"385":{"tf":1.0},"438":{"tf":1.4142135623730951},"452":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"895":{"tf":1.0},"999":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1389":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1140":{"tf":1.0},"1166":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1613":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":1,"docs":{"1592":{"tf":1.0}}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"107":{"tf":1.4142135623730951},"1486":{"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":{}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1107":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"1080":{"tf":1.0},"1329":{"tf":1.0},"264":{"tf":1.0},"446":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.0},"576":{"tf":1.0},"680":{"tf":1.0},"737":{"tf":1.0},"844":{"tf":1.0},"964":{"tf":1.7320508075688772}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0}}},":":{"0":{"0":{":":{"0":{"0":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"3":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"297":{"tf":1.0},"999":{"tf":1.0}}},"4":{"df":2,"docs":{"1328":{"tf":1.0},"515":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":2,"docs":{"1347":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"926":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0}}},"df":4,"docs":{"1086":{"tf":1.0},"1416":{"tf":1.0},"375":{"tf":1.0},"942":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"942":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":13,"docs":{"1017":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.7320508075688772},"248":{"tf":1.7320508075688772},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":2.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"866":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"850":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"399":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"430":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"899":{"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":{}}},"8":{"df":2,"docs":{"1233":{"tf":1.0},"145":{"tf":1.0}}},"df":85,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1060":{"tf":1.0},"107":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1172":{"tf":1.0},"1190":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1297":{"tf":1.7320508075688772},"130":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1486":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1585":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.0},"1637":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"225":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"380":{"tf":1.0},"40":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"749":{"tf":1.4142135623730951},"775":{"tf":1.0},"825":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"897":{"tf":1.0},"903":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"95":{"tf":1.0},"964":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"m":{"df":1,"docs":{"1591":{"tf":1.0}}}},"2":{",":{"5":{"9":{"2":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"df":3,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0}}},"5":{"df":3,"docs":{"1098":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1409":{"tf":1.0}}},"3":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":3,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0}}},"2":{"4":{"df":34,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.7320508075688772},"1128":{"tf":1.0},"1408":{"tf":1.0},"1416":{"tf":1.0},"1441":{"tf":1.0},"145":{"tf":1.0},"1464":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"235":{"tf":1.7320508075688772},"244":{"tf":1.0},"248":{"tf":2.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"874":{"tf":1.7320508075688772},"899":{"tf":2.8284271247461903}}},"6":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.7320508075688772},"1486":{"tf":1.4142135623730951},"1602":{"tf":1.0},"942":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":5,"docs":{"1098":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"1131":{"tf":1.0},"116":{"tf":1.0}}},"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}}},"df":1,"docs":{"61":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1004":{"tf":1.0},"1008":{"tf":1.0},"1086":{"tf":1.0},"1098":{"tf":1.0},"1107":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"1645":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1387":{"tf":1.0}},"t":{"1":{"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"1387":{"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":{}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"100":{"tf":1.0},"1008":{"tf":1.4142135623730951},"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"1036":{"tf":1.0},"104":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1059":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.0},"107":{"tf":1.0},"1131":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1207":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1273":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1290":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1540":{"tf":1.0},"1628":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"218":{"tf":1.0},"267":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"41":{"tf":1.4142135623730951},"436":{"tf":1.0},"508":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"661":{"tf":1.0},"671":{"tf":1.0},"750":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"845":{"tf":1.0},"868":{"tf":1.0},"895":{"tf":1.0},"899":{"tf":1.0},"903":{"tf":1.0},"906":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"964":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{",":{"2":{"9":{"3":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"0":{"df":5,"docs":{"1279":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1435":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}},"df":2,"docs":{"327":{"tf":1.0},"567":{"tf":1.0}}},"df":7,"docs":{"1368":{"tf":1.0},"1525":{"tf":1.0},"387":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"300":{"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":{}}},"1":{"df":2,"docs":{"244":{"tf":1.0},"248":{"tf":1.0}},"t":{"2":{"3":{":":{"5":{"9":{":":{"5":{"9":{"df":0,"docs":{},"z":{"df":1,"docs":{"297":{"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":{}}},"2":{"df":3,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1138":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1082":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0}}},"6":{"0":{"0":{"df":7,"docs":{"1086":{"tf":1.4142135623730951},"197":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"327":{"tf":1.0},"454":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":49,"docs":{"100":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.0},"104":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1190":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1328":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1379":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1647":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.0},"332":{"tf":1.0},"42":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"661":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":1.0},"83":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.0},"907":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"964":{"tf":1.0},"98":{"tf":1.0},"998":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"2":{"7":{"df":2,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.0}}},"df":0,"docs":{}},"4":{"4":{"df":1,"docs":{"1138":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"427":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"df":2,"docs":{"574":{"tf":1.0},"579":{"tf":1.0}}},"1":{"df":2,"docs":{"544":{"tf":1.0},"556":{"tf":1.0}}},"4":{"df":1,"docs":{"574":{"tf":1.0}}},"9":{"6":{"df":3,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1070":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{":":{"1":{"df":2,"docs":{"111":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"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":7,"docs":{"1449":{"tf":1.0},"1472":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"568":{"tf":1.0},"578":{"tf":1.0},"932":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"977":{"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":24,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0},"996":{"tf":1.0}}},"1":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"2":{"df":2,"docs":{"850":{"tf":1.0},"955":{"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":{}},"df":0,"docs":{}},"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0}}},"df":27,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"43":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"661":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.4142135623730951}},"o":{"df":4,"docs":{"1391":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"758":{"tf":1.0}}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":7,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"893":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"1098":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":1.0},"1367":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"2":{"df":2,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"312":{"tf":1.0},"314":{"tf":1.7320508075688772}}},"5":{"0":{"df":1,"docs":{"1138":{"tf":1.0}},"e":{"8":{"4":{"0":{"0":{"df":25,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":1.7320508075688772},"966":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"225":{"tf":1.0},"844":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1157":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":28,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1425":{"tf":1.0},"1503":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"212":{"tf":1.0},"294":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"44":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"661":{"tf":1.0},"909":{"tf":1.4142135623730951},"999":{"tf":1.0}},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1653":{"tf":1.0},"327":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}},"k":{"df":1,"docs":{"994":{"tf":1.0}}}},"df":5,"docs":{"103":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.0},"332":{"tf":1.0}}},"4":{"df":4,"docs":{"1098":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1138":{"tf":1.0}},"k":{"b":{"df":1,"docs":{"1326":{"tf":1.0}}},"df":0,"docs":{}}},"5":{"5":{"3":{"6":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"849":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1322":{"tf":1.4142135623730951},"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"45":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"7":{"0":{"0":{"df":2,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"1413":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":1,"docs":{"533":{"tf":1.0}}}},"4":{"2":{"5":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1627":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":7,"docs":{"1410":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"46":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"8":{",":{"0":{"0":{"0":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"323":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"850":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"x":{"df":1,"docs":{"1140":{"tf":1.0}}}},"6":{"0":{"1":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"327":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"8":{"5":{"df":2,"docs":{"1381":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}},"df":9,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1143":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":9,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1647":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1016":{"tf":1.0},"1627":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"844":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1164":{"tf":1.0}}},"6":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"1070":{"tf":1.4142135623730951},"1073":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"888":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":16,"docs":{"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.0},"737":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":3,"docs":{"1084":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1236":{"tf":1.0},"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"313":{"tf":1.0},"315":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1027":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"119":{"tf":1.0},"846":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1413":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1557":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"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":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":2,"docs":{"137":{"tf":1.0},"27":{"tf":1.0}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1268":{"tf":1.0},"1286":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1295":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1286":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1288":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1294":{"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":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1296":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"2":{"df":1,"docs":{"1297":{"tf":1.0}}},"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":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1631":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1630":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"df":90,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1194":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":2.0},"1262":{"tf":2.23606797749979},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":2.449489742783178},"1274":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.7320508075688772},"1279":{"tf":2.0},"128":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.7320508075688772},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"132":{"tf":2.449489742783178},"1324":{"tf":1.0},"1353":{"tf":2.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":2.0},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1360":{"tf":1.7320508075688772},"137":{"tf":2.0},"14":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":1.4142135623730951},"1479":{"tf":2.0},"1588":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"175":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"807":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0}}},"df":1,"docs":{"1220":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"849":{"tf":1.4142135623730951},"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"862":{"tf":1.7320508075688772},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"977":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":27,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"27":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":2,"docs":{"143":{"tf":1.0},"176":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"951":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{":":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1380":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"4":{"5":{"6":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.7320508075688772},"61":{"tf":1.0},"874":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"964":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1064":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":7,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1369":{"tf":1.0},"138":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1011":{"tf":1.0},"1206":{"tf":1.0},"1224":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1327":{"tf":1.0},"137":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1588":{"tf":1.0},"27":{"tf":1.0},"501":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"61":{"tf":1.0},"737":{"tf":1.4142135623730951},"906":{"tf":1.0},"990":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1572":{"tf":1.0}}}}}},"df":26,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"106":{"tf":1.0},"1182":{"tf":1.0},"1236":{"tf":1.0},"1327":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1559":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.0},"358":{"tf":1.7320508075688772},"364":{"tf":1.0},"431":{"tf":1.0},"534":{"tf":1.0},"560":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":1.0},"693":{"tf":1.0},"739":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"893":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"93":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"1389":{"tf":1.0},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"532":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":4,"docs":{"1075":{"tf":1.0},"1229":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"849":{"tf":1.0}}}}}},"m":{"df":7,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"850":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":2,"docs":{"104":{"tf":1.0},"42":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{":":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":43,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1224":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":2.0},"1316":{"tf":1.0},"1332":{"tf":1.0},"1343":{"tf":1.0},"1378":{"tf":1.0},"1420":{"tf":1.0},"1567":{"tf":1.0},"1621":{"tf":1.7320508075688772},"17":{"tf":1.0},"222":{"tf":1.0},"303":{"tf":1.0},"314":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"463":{"tf":1.0},"545":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"604":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"848":{"tf":1.0},"86":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"893":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"951":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1074":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1087":{"tf":1.0},"1095":{"tf":1.0},"1202":{"tf":1.0},"1339":{"tf":1.0},"141":{"tf":1.0},"1558":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"938":{"tf":1.4142135623730951},"942":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"1197":{"tf":1.0},"1223":{"tf":1.0},"1328":{"tf":1.0},"1384":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"308":{"tf":1.0},"314":{"tf":1.0},"38":{"tf":1.0},"55":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"872":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":62,"docs":{"105":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":2.23606797749979},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.0},"1329":{"tf":2.23606797749979},"1330":{"tf":2.8284271247461903},"1331":{"tf":1.0},"1332":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1389":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.7320508075688772},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.7320508075688772},"755":{"tf":2.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.4142135623730951},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"98":{"tf":1.0},"987":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"d":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1597":{"tf":1.0}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":78,"docs":{"1":{"tf":1.0},"1021":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1154":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1240":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.0},"1413":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1498":{"tf":1.0},"1562":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1651":{"tf":1.0},"173":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"294":{"tf":1.0},"315":{"tf":1.0},"335":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"521":{"tf":1.0},"541":{"tf":1.4142135623730951},"582":{"tf":1.0},"601":{"tf":1.0},"62":{"tf":1.0},"632":{"tf":1.0},"660":{"tf":1.4142135623730951},"669":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"906":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1022":{"tf":1.0},"1035":{"tf":1.0},"1134":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1279":{"tf":1.0},"1416":{"tf":1.0},"1498":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"200":{"tf":1.0},"520":{"tf":1.0},"601":{"tf":1.0},"775":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"144":{"tf":1.0},"152":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1386":{"tf":1.4142135623730951},"843":{"tf":2.23606797749979},"845":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":17,"docs":{"1033":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0},"1241":{"tf":1.0},"1277":{"tf":1.0},"1290":{"tf":1.0},"1313":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"241":{"tf":1.0},"335":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"6":{"tf":1.0},"776":{"tf":1.0},"880":{"tf":1.4142135623730951},"957":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":1,"docs":{"550":{"tf":1.0}}},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"1270":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}},"t":{"df":1,"docs":{"1267":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"1":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.4142135623730951},"925":{"tf":1.7320508075688772},"930":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":6,"docs":{"1163":{"tf":1.4142135623730951},"1388":{"tf":1.0},"397":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1085":{"tf":1.0},"1090":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1008":{"tf":1.0},"1645":{"tf":1.0},"994":{"tf":1.0}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1137":{"tf":1.0},"1531":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"g":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"27":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1559":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":17,"docs":{"1001":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1027":{"tf":1.0},"1056":{"tf":1.0},"1097":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1505":{"tf":1.0},"246":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":4,"docs":{"103":{"tf":1.0},"1328":{"tf":1.0},"1627":{"tf":1.0},"27":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":63,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1034":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1064":{"tf":1.0},"1089":{"tf":1.0},"1143":{"tf":1.0},"117":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1354":{"tf":1.0},"1369":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1385":{"tf":1.0},"1414":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1613":{"tf":1.0},"198":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.0},"440":{"tf":1.4142135623730951},"445":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"534":{"tf":1.0},"563":{"tf":1.0},"596":{"tf":1.0},"606":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"679":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"770":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"699":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"462":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1465":{"tf":1.0},"737":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"489":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"603":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"807":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"341":{"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":{}}}},"r":{"df":4,"docs":{"1464":{"tf":1.0},"723":{"tf":1.0},"737":{"tf":1.0},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":9,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.7320508075688772},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"800":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":5,"docs":{"1004":{"tf":1.0},"661":{"tf":1.0},"771":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1454":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}}},"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":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"736":{"tf":1.0},"798":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":1,"docs":{"637":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":2,"docs":{"346":{"tf":1.0},"365":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":7,"docs":{"1441":{"tf":1.0},"1619":{"tf":1.4142135623730951},"487":{"tf":1.0},"501":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"601":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1435":{"tf":1.0},"1619":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"597":{"tf":1.4142135623730951},"624":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"1215":{"tf":1.0},"500":{"tf":1.0},"597":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"877":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"1431":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1642":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1441":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1619":{"tf":1.0},"597":{"tf":1.7320508075688772},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":30,"docs":{"10":{"tf":1.0},"1082":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1485":{"tf":2.0},"155":{"tf":1.0},"1621":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"211":{"tf":1.0},"318":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"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":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"453":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"426":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1283":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.0},"1640":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"211":{"tf":1.0},"219":{"tf":1.4142135623730951},"269":{"tf":1.0},"319":{"tf":2.23606797749979},"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1436":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":60,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"404":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.0},"821":{"tf":1.4142135623730951},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.4142135623730951},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1223":{"tf":1.0},"1224":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1215":{"tf":1.0},"1474":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1215":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1619":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"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":{},"i":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"342":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"347":{"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":{"624":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1618":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"624":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"341":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"350":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"332":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"724":{"tf":1.0},"776":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1465":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"778":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"1039":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"637":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1104":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"720":{"tf":1.0},"780":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"493":{"tf":1.0},"613":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"613":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":4,"docs":{"1619":{"tf":1.4142135623730951},"488":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1442":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"602":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}},"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":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1620":{"tf":1.0},"608":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1436":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1223":{"tf":1.0},"495":{"tf":1.0},"624":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"484":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"606":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1031":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1032":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1130":{"tf":1.0},"728":{"tf":1.0},"786":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"740":{"tf":1.0},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}}},"df":1,"docs":{"1619":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1619":{"tf":1.0}}}}}}},"df":2,"docs":{"612":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1433":{"tf":1.0},"1619":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"624":{"tf":1.0},"879":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"355":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"727":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1455":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0}}}}}},"df":1,"docs":{"800":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"637":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"736":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"656":{"tf":1.0},"667":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"714":{"tf":1.0},"772":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"737":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"349":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"365":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"349":{"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":{}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"354":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1040":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"354":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"715":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1005":{"tf":1.0},"773":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1619":{"tf":1.4142135623730951},"491":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0},"855":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"855":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1619":{"tf":1.0},"611":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.4142135623730951},"1619":{"tf":1.4142135623730951}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"878":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1432":{"tf":1.0},"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1449":{"tf":1.0},"428":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"478":{"tf":1.0},"598":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"598":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1436":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1620":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"479":{"tf":1.0},"599":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"599":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"485":{"tf":1.0},"607":{"tf":1.4142135623730951},"624":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"607":{"tf":1.4142135623730951},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1631":{"tf":1.0},"779":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1630":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1631":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1630":{"tf":1.0},"605":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1630":{"tf":1.0},"605":{"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":{}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":2.0}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1529":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.0},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1566":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.4142135623730951},"487":{"tf":1.0},"723":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1409":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"285":{"tf":1.0},"487":{"tf":1.0},"723":{"tf":1.0}}},"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1387":{"tf":1.0},"1412":{"tf":1.0},"225":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"689":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1357":{"tf":1.0}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"364":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"852":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"852":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"687":{"tf":1.0},"689":{"tf":1.0},"699":{"tf":1.0},"852":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"332":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"785":{"tf":1.0}}}}},"i":{"d":{"df":11,"docs":{"1032":{"tf":1.0},"1040":{"tf":1.0},"1082":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1363":{"tf":1.0},"1410":{"tf":1.0},"1464":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"775":{"tf":1.7320508075688772}},"s":{"=":{"[":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"299":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"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":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"341":{"tf":1.0},"770":{"tf":1.0},"852":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1046":{"tf":1.0},"1487":{"tf":2.23606797749979}}},"df":0,"docs":{}}}}},"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"b":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"2":{"a":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1358":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"451":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"853":{"tf":1.0},"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":4,"docs":{"451":{"tf":1.0},"453":{"tf":1.0},"462":{"tf":1.0},"853":{"tf":1.0}}},"df":0,"docs":{}}},"df":651,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":2.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1007":{"tf":1.0},"1008":{"tf":2.8284271247461903},"1009":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.7320508075688772},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1027":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":2.0},"1032":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1036":{"tf":2.0},"1039":{"tf":1.0},"104":{"tf":1.7320508075688772},"1046":{"tf":1.0},"105":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":2.449489742783178},"106":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1069":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":2.0},"1080":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1087":{"tf":1.0},"109":{"tf":1.4142135623730951},"1094":{"tf":1.0},"110":{"tf":1.7320508075688772},"1103":{"tf":1.0},"1104":{"tf":1.0},"1126":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":2.0},"1135":{"tf":1.0},"114":{"tf":1.4142135623730951},"1141":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.7320508075688772},"1146":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1187":{"tf":2.23606797749979},"1188":{"tf":1.7320508075688772},"119":{"tf":1.7320508075688772},"1193":{"tf":2.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1218":{"tf":1.4142135623730951},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":2.0},"1241":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.4142135623730951},"1264":{"tf":2.0},"1265":{"tf":1.4142135623730951},"1267":{"tf":2.0},"1270":{"tf":1.4142135623730951},"1272":{"tf":1.0},"1273":{"tf":2.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"1278":{"tf":1.7320508075688772},"1279":{"tf":3.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":2.0},"1283":{"tf":2.449489742783178},"1284":{"tf":1.7320508075688772},"1285":{"tf":2.0},"1286":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.7320508075688772},"1290":{"tf":2.449489742783178},"1291":{"tf":2.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":2.23606797749979},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1315":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1354":{"tf":2.0},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":1.7320508075688772},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1385":{"tf":1.7320508075688772},"1387":{"tf":1.7320508075688772},"1388":{"tf":1.7320508075688772},"139":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1398":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1412":{"tf":3.0},"1413":{"tf":3.3166247903554},"1414":{"tf":2.8284271247461903},"1422":{"tf":1.0},"1423":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"146":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.7320508075688772},"1470":{"tf":2.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":2.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":3.1622776601683795},"1486":{"tf":1.4142135623730951},"1487":{"tf":3.7416573867739413},"1488":{"tf":1.4142135623730951},"1492":{"tf":1.4142135623730951},"1493":{"tf":2.23606797749979},"1495":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1508":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1531":{"tf":1.0},"1534":{"tf":1.0},"1542":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.7320508075688772},"1581":{"tf":2.0},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1621":{"tf":1.7320508075688772},"1640":{"tf":1.7320508075688772},"1643":{"tf":2.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.0},"17":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"19":{"tf":2.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.6457513110645907},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":2.23606797749979},"2":{"tf":1.0},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":2.23606797749979},"213":{"tf":1.7320508075688772},"214":{"tf":2.23606797749979},"215":{"tf":2.23606797749979},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":1.7320508075688772},"219":{"tf":2.8284271247461903},"220":{"tf":2.0},"221":{"tf":2.0},"222":{"tf":1.7320508075688772},"223":{"tf":2.0},"224":{"tf":1.0},"225":{"tf":2.23606797749979},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"233":{"tf":1.7320508075688772},"234":{"tf":2.23606797749979},"235":{"tf":2.6457513110645907},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":2.449489742783178},"239":{"tf":1.0},"240":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"250":{"tf":1.0},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"27":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":2.0},"29":{"tf":2.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.8284271247461903},"295":{"tf":1.0},"298":{"tf":1.7320508075688772},"299":{"tf":1.0},"30":{"tf":2.0},"301":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.7320508075688772},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.449489742783178},"310":{"tf":1.4142135623730951},"311":{"tf":2.6457513110645907},"312":{"tf":2.0},"313":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"317":{"tf":1.4142135623730951},"318":{"tf":2.449489742783178},"319":{"tf":2.8284271247461903},"32":{"tf":1.4142135623730951},"321":{"tf":2.0},"326":{"tf":1.4142135623730951},"329":{"tf":1.0},"33":{"tf":1.4142135623730951},"331":{"tf":1.0},"332":{"tf":2.0},"333":{"tf":1.7320508075688772},"334":{"tf":1.0},"336":{"tf":1.4142135623730951},"338":{"tf":2.8284271247461903},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":2.6457513110645907},"342":{"tf":1.4142135623730951},"343":{"tf":1.4142135623730951},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"354":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"38":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.4142135623730951},"412":{"tf":1.0},"413":{"tf":1.0},"42":{"tf":1.4142135623730951},"426":{"tf":1.0},"428":{"tf":1.4142135623730951},"435":{"tf":1.0},"438":{"tf":2.23606797749979},"439":{"tf":1.4142135623730951},"44":{"tf":2.0},"440":{"tf":3.0},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.7320508075688772},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":2.0},"453":{"tf":1.7320508075688772},"454":{"tf":1.0},"455":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":2.449489742783178},"463":{"tf":1.0},"464":{"tf":1.4142135623730951},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":2.0},"47":{"tf":1.0},"470":{"tf":1.0},"472":{"tf":1.0},"48":{"tf":1.7320508075688772},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":2.6457513110645907},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"492":{"tf":2.23606797749979},"493":{"tf":1.4142135623730951},"496":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":2.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.0},"510":{"tf":1.0},"515":{"tf":1.7320508075688772},"524":{"tf":1.0},"526":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"55":{"tf":2.23606797749979},"550":{"tf":2.0},"551":{"tf":1.0},"554":{"tf":1.0},"56":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"567":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"587":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"60":{"tf":1.0},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"61":{"tf":3.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.4142135623730951},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"62":{"tf":2.0},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.4142135623730951},"637":{"tf":1.4142135623730951},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"654":{"tf":1.0},"656":{"tf":2.23606797749979},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"670":{"tf":1.0},"672":{"tf":2.23606797749979},"673":{"tf":1.4142135623730951},"675":{"tf":2.449489742783178},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":2.449489742783178},"688":{"tf":1.0},"689":{"tf":2.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":2.6457513110645907},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"704":{"tf":1.4142135623730951},"705":{"tf":2.0},"706":{"tf":1.0},"708":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"727":{"tf":1.7320508075688772},"728":{"tf":2.23606797749979},"729":{"tf":1.4142135623730951},"732":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.4142135623730951},"758":{"tf":1.4142135623730951},"761":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"775":{"tf":2.23606797749979},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":2.8284271247461903},"784":{"tf":1.7320508075688772},"785":{"tf":2.23606797749979},"786":{"tf":1.7320508075688772},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"805":{"tf":2.23606797749979},"806":{"tf":1.4142135623730951},"807":{"tf":1.7320508075688772},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":2.0},"819":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":2.0},"830":{"tf":2.23606797749979},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":2.0},"835":{"tf":2.0},"836":{"tf":2.0},"837":{"tf":1.4142135623730951},"838":{"tf":1.7320508075688772},"839":{"tf":2.0},"840":{"tf":2.23606797749979},"841":{"tf":1.7320508075688772},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.0},"848":{"tf":2.0},"849":{"tf":2.0},"850":{"tf":2.0},"851":{"tf":1.7320508075688772},"852":{"tf":2.0},"853":{"tf":1.4142135623730951},"854":{"tf":2.23606797749979},"855":{"tf":2.6457513110645907},"856":{"tf":1.7320508075688772},"857":{"tf":1.0},"861":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":2.0},"875":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.4142135623730951},"89":{"tf":3.1622776601683795},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.1622776601683795},"905":{"tf":1.0},"906":{"tf":1.7320508075688772},"91":{"tf":2.0},"911":{"tf":1.4142135623730951},"912":{"tf":2.8284271247461903},"913":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.7320508075688772},"916":{"tf":2.6457513110645907},"917":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":2.0},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":2.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"95":{"tf":4.358898943540674},"952":{"tf":1.0},"96":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.7320508075688772},"979":{"tf":1.0},"98":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"987":{"tf":1.0},"989":{"tf":2.23606797749979},"99":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":2.0},"992":{"tf":2.0},"993":{"tf":1.0},"994":{"tf":1.4142135623730951},"996":{"tf":2.0},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"611":{"tf":1.0}}}}},"i":{"d":{"df":32,"docs":{"1017":{"tf":1.0},"103":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1128":{"tf":1.0},"1175":{"tf":1.0},"1186":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1568":{"tf":1.0},"206":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"53":{"tf":1.0},"534":{"tf":1.0},"57":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.4142135623730951},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"874":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.449489742783178},"996":{"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":1,"docs":{"103":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":12,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"458":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.7320508075688772},"77":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"596":{"tf":1.4142135623730951},"853":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":9,"docs":{"679":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}},"r":{"df":1,"docs":{"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1073":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1128":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1594":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"71":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":25,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"281":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"295":{"tf":1.0},"305":{"tf":1.0},"487":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"95":{"tf":1.7320508075688772},"966":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1568":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":2.0},"1410":{"tf":1.4142135623730951},"287":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1375":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1441":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0}}},"df":0,"docs":{}}},"df":154,"docs":{"1":{"tf":1.0},"100":{"tf":2.23606797749979},"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"1035":{"tf":1.7320508075688772},"1036":{"tf":1.7320508075688772},"1037":{"tf":1.7320508075688772},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1141":{"tf":1.0},"1195":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":2.0},"1211":{"tf":1.4142135623730951},"1218":{"tf":2.6457513110645907},"1219":{"tf":2.23606797749979},"1220":{"tf":2.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1398":{"tf":1.4142135623730951},"1407":{"tf":1.4142135623730951},"1408":{"tf":2.8284271247461903},"1409":{"tf":3.7416573867739413},"1410":{"tf":3.4641016151377544},"1440":{"tf":1.4142135623730951},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":1.4142135623730951},"1463":{"tf":1.4142135623730951},"1464":{"tf":2.449489742783178},"1465":{"tf":2.23606797749979},"1466":{"tf":1.4142135623730951},"1501":{"tf":3.3166247903554},"1565":{"tf":1.4142135623730951},"1566":{"tf":2.449489742783178},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.0},"1569":{"tf":2.0},"17":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"185":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":3.0},"210":{"tf":2.8284271247461903},"213":{"tf":1.4142135623730951},"240":{"tf":1.0},"26":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":2.449489742783178},"283":{"tf":1.7320508075688772},"284":{"tf":2.23606797749979},"285":{"tf":1.4142135623730951},"286":{"tf":1.7320508075688772},"287":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.7320508075688772},"291":{"tf":1.7320508075688772},"292":{"tf":2.23606797749979},"293":{"tf":2.0},"294":{"tf":3.0},"295":{"tf":2.0},"296":{"tf":1.7320508075688772},"297":{"tf":1.7320508075688772},"298":{"tf":1.4142135623730951},"299":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":2.449489742783178},"305":{"tf":2.0},"306":{"tf":2.23606797749979},"32":{"tf":1.0},"333":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"486":{"tf":1.4142135623730951},"487":{"tf":1.7320508075688772},"488":{"tf":2.0},"489":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"508":{"tf":1.4142135623730951},"515":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.7320508075688772},"61":{"tf":2.23606797749979},"62":{"tf":2.23606797749979},"63":{"tf":2.449489742783178},"722":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"724":{"tf":2.0},"725":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"775":{"tf":2.449489742783178},"776":{"tf":1.7320508075688772},"777":{"tf":2.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":2.23606797749979},"869":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"896":{"tf":1.7320508075688772},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"911":{"tf":1.4142135623730951},"935":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":3.7416573867739413},"958":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1207":{"tf":1.0}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"627":{"tf":1.0},"670":{"tf":1.0},"75":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":52,"docs":{"1021":{"tf":1.0},"1059":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1391":{"tf":2.0},"1396":{"tf":1.0},"1412":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"19":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"321":{"tf":1.0},"33":{"tf":2.0},"462":{"tf":1.0},"47":{"tf":1.0},"521":{"tf":2.449489742783178},"522":{"tf":1.0},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":2.0},"526":{"tf":2.0},"527":{"tf":2.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.7320508075688772},"531":{"tf":1.0},"532":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"687":{"tf":1.0},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"829":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.7320508075688772},"848":{"tf":1.7320508075688772},"95":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1369":{"tf":1.0},"1375":{"tf":2.0}}}}},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1142":{"tf":1.0},"1485":{"tf":1.0},"1554":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":2,"docs":{"1142":{"tf":1.0},"89":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":5,"docs":{"102":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":127,"docs":{"1002":{"tf":1.0},"104":{"tf":1.0},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.7320508075688772},"1043":{"tf":1.4142135623730951},"105":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":2.0},"1098":{"tf":2.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1125":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":2.449489742783178},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.0},"1133":{"tf":2.6457513110645907},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":2.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":2.6457513110645907},"1142":{"tf":2.0},"1143":{"tf":2.0},"1193":{"tf":1.0},"1208":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1299":{"tf":1.0},"1315":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.7320508075688772},"1377":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"1485":{"tf":2.23606797749979},"1515":{"tf":1.0},"1529":{"tf":1.0},"1549":{"tf":2.6457513110645907},"1554":{"tf":2.23606797749979},"157":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1640":{"tf":2.0},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":2.0},"304":{"tf":1.0},"354":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"412":{"tf":1.0},"420":{"tf":1.4142135623730951},"424":{"tf":1.0},"438":{"tf":1.4142135623730951},"44":{"tf":1.0},"441":{"tf":2.23606797749979},"485":{"tf":1.0},"499":{"tf":1.0},"550":{"tf":1.4142135623730951},"607":{"tf":1.0},"613":{"tf":1.0},"648":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"652":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.7320508075688772},"691":{"tf":1.0},"721":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":2.0},"92":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0}}}}}}}}},"i":{"a":{"df":6,"docs":{"1020":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1423":{"tf":2.0},"1630":{"tf":1.4142135623730951},"994":{"tf":1.0}},"s":{"df":2,"docs":{"1628":{"tf":1.7320508075688772},"1630":{"tf":1.0}}}},"c":{"df":3,"docs":{"1339":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"302":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.7320508075688772}}}}},"l":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1585":{"tf":1.0},"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"750":{"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":29,"docs":{"1013":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1020":{"tf":1.0},"1029":{"tf":1.0},"1061":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1153":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1293":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"144":{"tf":1.0},"1487":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"307":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"594":{"tf":1.0},"750":{"tf":1.0},"768":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"968":{"tf":1.0},"994":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"509":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"1276":{"tf":1.0},"1354":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1275":{"tf":1.0},"1527":{"tf":1.0},"272":{"tf":1.0},"992":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":35,"docs":{"1075":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1267":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1567":{"tf":2.23606797749979},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":4,"docs":{"1369":{"tf":1.0},"179":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":21,"docs":{"1008":{"tf":1.0},"1034":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1226":{"tf":1.0},"1238":{"tf":1.0},"1366":{"tf":1.0},"1387":{"tf":1.0},"1395":{"tf":1.0},"1537":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"586":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1532":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1209":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1156":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"131":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"1562":{"tf":1.0},"266":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951},"452":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.4142135623730951},"680":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"78":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"86":{"tf":1.0},"88":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":7,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"250":{"tf":1.0},"31":{"tf":2.0},"57":{"tf":1.0},"661":{"tf":1.0},"848":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.0}}},"z":{"df":4,"docs":{"224":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"117":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"309":{"tf":1.0},"46":{"tf":1.4142135623730951}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"994":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1093":{"tf":1.0},"292":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":24,"docs":{"1261":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1382":{"tf":1.0},"1414":{"tf":1.0},"160":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.4142135623730951},"318":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"493":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"785":{"tf":1.4142135623730951},"787":{"tf":1.0},"855":{"tf":1.4142135623730951},"920":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1140":{"tf":1.0},"1267":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"141":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":9,"docs":{"1332":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1350":{"tf":1.7320508075688772},"521":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.4142135623730951},"763":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"c":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"782":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"567":{"tf":1.0},"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"808":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"495":{"tf":1.0},"731":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":283,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1022":{"tf":1.0},"105":{"tf":1.0},"1079":{"tf":1.0},"1125":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1247":{"tf":2.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1303":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1367":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.4142135623730951},"138":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1435":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.0},"1621":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1650":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"184":{"tf":1.0},"301":{"tf":1.7320508075688772},"32":{"tf":1.0},"334":{"tf":1.7320508075688772},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"436":{"tf":2.0},"437":{"tf":1.7320508075688772},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.7320508075688772},"467":{"tf":1.4142135623730951},"5":{"tf":1.0},"502":{"tf":1.7320508075688772},"536":{"tf":1.7320508075688772},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"570":{"tf":1.0},"575":{"tf":1.4142135623730951},"582":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":2.0},"591":{"tf":1.0},"592":{"tf":1.7320508075688772},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.7320508075688772},"703":{"tf":1.0},"73":{"tf":1.0},"745":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":2.23606797749979},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"831":{"tf":1.0},"893":{"tf":1.0},"927":{"tf":1.4142135623730951},"943":{"tf":1.4142135623730951},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.4142135623730951}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1342":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"761":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"761":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1435":{"tf":1.0},"549":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"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":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1265":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"8":{"0":{"df":1,"docs":{"1282":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"375":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1224":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1458":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"1651":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"547":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1435":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"582":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"545":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"545":{"tf":1.0},"572":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"549":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1651":{"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":{"df":0,"docs":{},"s":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1651":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"588":{"tf":2.0}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}}}},"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"2":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"579":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1192":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":30,"docs":{"1":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1261":{"tf":1.0},"1265":{"tf":1.7320508075688772},"1280":{"tf":1.0},"1282":{"tf":2.0},"1342":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"427":{"tf":1.0},"43":{"tf":1.0},"513":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1189":{"tf":1.0},"1369":{"tf":1.0},"254":{"tf":1.0},"394":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1366":{"tf":1.0},"1623":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1438":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"559":{"tf":1.0},"919":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"254":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":24,"docs":{"1115":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1180":{"tf":1.0},"1191":{"tf":1.0},"1212":{"tf":1.0},"1248":{"tf":1.0},"14":{"tf":1.0},"1520":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"360":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.0},"398":{"tf":1.0},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"627":{"tf":1.0},"656":{"tf":1.4142135623730951},"673":{"tf":1.0},"75":{"tf":1.0}}},"df":7,"docs":{"1":{"tf":1.0},"1209":{"tf":1.0},"1564":{"tf":1.0},"260":{"tf":1.0},"549":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1118":{"tf":1.0},"1125":{"tf":1.0},"1190":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1389":{"tf":1.0},"17":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1207":{"tf":1.0},"1326":{"tf":1.0},"272":{"tf":1.0}}}}},"v":{"df":33,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1405":{"tf":1.0},"1602":{"tf":1.0},"1621":{"tf":1.7320508075688772},"300":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"452":{"tf":1.0},"463":{"tf":1.0},"672":{"tf":1.4142135623730951},"688":{"tf":1.0},"700":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.0},"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"182":{"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":10,"docs":{"446":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"606":{"tf":1.0},"607":{"tf":1.0},"680":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"364":{"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":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"364":{"tf":1.0}},"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":13,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1278":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"628":{"tf":1.0},"812":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":3,"docs":{"1146":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"1439":{"tf":1.0},"1649":{"tf":1.0},"463":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"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":10,"docs":{"1039":{"tf":1.0},"1425":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1605":{"tf":1.7320508075688772},"212":{"tf":1.0},"463":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"969":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":2,"docs":{"152":{"tf":1.0},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1193":{"tf":1.0}}}},"y":{"df":23,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1601":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"825":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"873":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.7320508075688772},"894":{"tf":1.0},"948":{"tf":1.0},"963":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1199":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1298":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.4142135623730951}}}}}},"df":66,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.23606797749979},"1293":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1299":{"tf":2.23606797749979},"1300":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0},"1537":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.7320508075688772},"1609":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"45":{"tf":1.7320508075688772},"54":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"916":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"604":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1461":{"tf":1.0},"655":{"tf":1.0}}}},"k":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"515":{"tf":1.0},"751":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"14":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"|":{"c":{"df":1,"docs":{"1329":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"!":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":19,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1226":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1266":{"tf":1.0},"127":{"tf":1.4142135623730951},"1294":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1472":{"tf":2.6457513110645907},"1623":{"tf":1.0},"989":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"137":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1268":{"tf":1.0},"1293":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":12,"docs":{"1268":{"tf":1.0},"1269":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1290":{"tf":1.0},"1293":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":2,"docs":{"1269":{"tf":1.0},"1288":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1288":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1268":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":1,"docs":{"1534":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":9,"docs":{"1298":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"891":{"tf":1.0},"899":{"tf":1.7320508075688772},"906":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"952":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1416":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"1395":{"tf":1.0},"14":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1335":{"tf":1.0},"1602":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"127":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"985":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"n":{"c":{"/":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1623":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":75,"docs":{"103":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":2.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.23606797749979},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1458":{"tf":2.23606797749979},"1462":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1621":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"533":{"tf":1.0},"548":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.4142135623730951},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"750":{"tf":1.0},"761":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1223":{"tf":1.0},"1462":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1609":{"tf":1.4142135623730951}}}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":54,"docs":{"1303":{"tf":1.0},"1336":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1403":{"tf":2.8284271247461903},"1497":{"tf":2.8284271247461903},"1498":{"tf":2.449489742783178},"1499":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1504":{"tf":2.6457513110645907},"1510":{"tf":1.0},"1511":{"tf":1.0},"202":{"tf":2.449489742783178},"203":{"tf":2.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.6457513110645907},"253":{"tf":1.4142135623730951},"254":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"274":{"tf":1.0},"346":{"tf":2.23606797749979},"348":{"tf":1.0},"38":{"tf":1.0},"452":{"tf":2.23606797749979},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"476":{"tf":1.7320508075688772},"482":{"tf":1.7320508075688772},"526":{"tf":1.0},"55":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"597":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"688":{"tf":1.7320508075688772},"696":{"tf":1.4142135623730951},"697":{"tf":1.7320508075688772},"712":{"tf":1.7320508075688772},"718":{"tf":1.7320508075688772},"73":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":2.0},"774":{"tf":1.7320508075688772},"816":{"tf":1.0},"859":{"tf":1.0},"870":{"tf":1.7320508075688772},"880":{"tf":1.7320508075688772},"963":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"202":{"tf":1.0},"874":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1406":{"tf":1.0},"262":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"476":{"tf":1.0},"712":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":10,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1115":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.7320508075688772},"921":{"tf":1.0},"933":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"131":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":9,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1375":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":10,"docs":{"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"1588":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1317":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1602":{"tf":1.0},"1607":{"tf":2.23606797749979}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1611":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1584":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":113,"docs":{"123":{"tf":2.23606797749979},"124":{"tf":1.7320508075688772},"125":{"tf":1.0},"126":{"tf":1.7320508075688772},"127":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":2.23606797749979},"130":{"tf":2.23606797749979},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.7320508075688772},"1311":{"tf":1.7320508075688772},"1312":{"tf":1.0},"1313":{"tf":2.23606797749979},"1314":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":2.23606797749979},"1318":{"tf":1.7320508075688772},"1319":{"tf":1.0},"132":{"tf":2.449489742783178},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1323":{"tf":2.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":2.449489742783178},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1341":{"tf":1.0},"1342":{"tf":2.23606797749979},"1343":{"tf":2.449489742783178},"1344":{"tf":1.0},"1345":{"tf":2.23606797749979},"1346":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.23606797749979},"1352":{"tf":1.7320508075688772},"1353":{"tf":2.0},"1354":{"tf":1.7320508075688772},"1355":{"tf":2.0},"1356":{"tf":1.7320508075688772},"1357":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1360":{"tf":2.0},"138":{"tf":2.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.4142135623730951},"1596":{"tf":2.0},"1597":{"tf":1.0},"1598":{"tf":2.449489742783178},"1599":{"tf":2.0},"1600":{"tf":1.4142135623730951},"1601":{"tf":2.0},"1602":{"tf":3.0},"1603":{"tf":2.0},"1604":{"tf":1.4142135623730951},"1605":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1607":{"tf":2.8284271247461903},"1608":{"tf":1.0},"1609":{"tf":1.7320508075688772},"1610":{"tf":2.0},"1611":{"tf":2.0},"1612":{"tf":2.23606797749979},"1613":{"tf":1.0},"1614":{"tf":2.0},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"38":{"tf":1.0},"807":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"989":{"tf":3.1622776601683795},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1321":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"u":{"d":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"440":{"tf":1.0},"450":{"tf":1.4142135623730951}}}}}},"df":37,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"1025":{"tf":1.0},"103":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1049":{"tf":1.7320508075688772},"1052":{"tf":2.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.4142135623730951},"508":{"tf":1.0},"68":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"751":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.0},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":2.23606797749979}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"5":{"df":1,"docs":{"761":{"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":{},"m":{"a":{"df":0,"docs":{},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"761":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1522":{"tf":1.4142135623730951},"46":{"tf":1.7320508075688772},"543":{"tf":1.0},"546":{"tf":2.23606797749979},"555":{"tf":1.0},"557":{"tf":2.23606797749979},"761":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":23,"docs":{"1027":{"tf":1.0},"107":{"tf":1.0},"1198":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1462":{"tf":1.0},"1522":{"tf":2.449489742783178},"1556":{"tf":1.4142135623730951},"17":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"242":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"70":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0},"899":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0},"993":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":21,"docs":{"100":{"tf":1.0},"1078":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.0},"1367":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1568":{"tf":1.4142135623730951},"307":{"tf":1.0},"309":{"tf":1.0},"866":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"991":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1075":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"o":{"c":{"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":{"1154":{"tf":1.0}}}}}}}}},"df":27,"docs":{"1280":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1478":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"155":{"tf":1.0},"249":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"516":{"tf":1.4142135623730951},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":34,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1126":{"tf":1.0},"1152":{"tf":1.0},"1185":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1202":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1334":{"tf":1.0},"1366":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1393":{"tf":1.0},"1486":{"tf":1.0},"1510":{"tf":1.0},"1538":{"tf":1.0},"1625":{"tf":1.0},"32":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"532":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"78":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"df":3,"docs":{"332":{"tf":1.0},"848":{"tf":1.0},"999":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":31,"docs":{"1203":{"tf":1.0},"1330":{"tf":1.0},"136":{"tf":1.0},"1366":{"tf":1.4142135623730951},"139":{"tf":1.0},"1391":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"152":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1618":{"tf":1.0},"175":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"369":{"tf":1.0},"437":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"532":{"tf":1.0},"592":{"tf":1.0},"761":{"tf":1.0},"807":{"tf":1.0},"817":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"930":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1140":{"tf":1.0},"38":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":132,"docs":{"103":{"tf":2.449489742783178},"113":{"tf":1.4142135623730951},"1142":{"tf":1.0},"115":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1264":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":2.6457513110645907},"1438":{"tf":1.4142135623730951},"1439":{"tf":2.449489742783178},"1441":{"tf":1.7320508075688772},"1442":{"tf":1.7320508075688772},"1443":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":2.23606797749979},"1449":{"tf":2.449489742783178},"1458":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":3.1622776601683795},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1631":{"tf":2.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.7320508075688772},"437":{"tf":1.0},"438":{"tf":2.23606797749979},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"462":{"tf":2.449489742783178},"463":{"tf":1.4142135623730951},"464":{"tf":2.0},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.449489742783178},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"534":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"559":{"tf":1.0},"567":{"tf":2.0},"568":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":2.6457513110645907},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.4142135623730951},"750":{"tf":1.0},"78":{"tf":1.7320508075688772},"86":{"tf":1.7320508075688772},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.23606797749979}}}},"r":{"df":3,"docs":{"1064":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0}}}},"df":22,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":2.6457513110645907},"1151":{"tf":1.0},"118":{"tf":1.0},"1413":{"tf":1.0},"143":{"tf":1.0},"147":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1533":{"tf":2.449489742783178},"1536":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"314":{"tf":2.449489742783178},"332":{"tf":1.0},"362":{"tf":1.0},"418":{"tf":2.23606797749979},"646":{"tf":2.23606797749979},"976":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0}}},"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1148":{"tf":1.0},"1536":{"tf":1.0},"1637":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1533":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1637":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"316":{"tf":2.23606797749979},"72":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"{":{"\\":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"2":{"5":{"6":{"df":1,"docs":{"1329":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\\":{"\"":{":":{"\\":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"\\":{"\"":{",":{"\\":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"b":{"\\":{"\"":{":":{"\\":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1329":{"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":{}}}}},"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":{"1187":{"tf":1.7320508075688772}}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"921":{"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":{}},"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":{}},"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1071":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1378":{"tf":1.0},"1500":{"tf":1.0},"320":{"tf":1.0},"888":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":37,"docs":{"1144":{"tf":1.7320508075688772},"1145":{"tf":2.23606797749979},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1150":{"tf":2.0},"1151":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1512":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1532":{"tf":2.0},"1533":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1538":{"tf":2.6457513110645907},"1571":{"tf":1.7320508075688772},"1573":{"tf":1.0},"1636":{"tf":1.4142135623730951},"1653":{"tf":1.0},"1656":{"tf":1.0},"175":{"tf":2.0},"177":{"tf":1.0},"180":{"tf":1.0},"336":{"tf":1.4142135623730951},"362":{"tf":1.7320508075688772},"366":{"tf":1.0},"367":{"tf":1.0},"412":{"tf":1.0},"415":{"tf":1.4142135623730951},"643":{"tf":1.4142135623730951},"797":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.4142135623730951},"980":{"tf":1.0}},"’":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":6,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1500":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"239":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1616":{"tf":1.0},"1628":{"tf":1.0},"227":{"tf":1.0},"788":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1359":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1034":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1164":{"tf":1.0}}}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"843":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{":":{":":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1329":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"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":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1240":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":31,"docs":{"1073":{"tf":1.0},"1104":{"tf":1.0},"1128":{"tf":1.0},"1241":{"tf":1.0},"1299":{"tf":1.0},"1387":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"485":{"tf":1.0},"53":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"61":{"tf":1.4142135623730951},"697":{"tf":1.0},"721":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"116":{"tf":1.0},"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":75,"docs":{"1008":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1063":{"tf":1.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"1112":{"tf":1.0},"1153":{"tf":1.0},"1164":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1237":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1316":{"tf":1.0},"1331":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1564":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.4142135623730951},"224":{"tf":1.0},"301":{"tf":1.4142135623730951},"307":{"tf":2.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"407":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"690":{"tf":1.0},"698":{"tf":1.0},"765":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.0},"815":{"tf":1.0},"822":{"tf":1.0},"834":{"tf":1.0},"857":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"933":{"tf":1.0},"979":{"tf":1.4142135623730951},"992":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1649":{"tf":2.0}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"i":{"c":{"df":120,"docs":{"1156":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1313":{"tf":1.0},"1404":{"tf":1.0},"1414":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"174":{"tf":1.0},"256":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"412":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.0},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"597":{"tf":1.0},"626":{"tf":1.0},"656":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.7320508075688772},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"771":{"tf":1.0},"802":{"tf":1.0},"841":{"tf":1.0},"877":{"tf":1.0},"98":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}},"z":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"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":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":9,"docs":{"1367":{"tf":2.23606797749979},"1404":{"tf":1.0},"1418":{"tf":2.0},"1469":{"tf":1.4142135623730951},"1470":{"tf":2.0},"1611":{"tf":1.4142135623730951},"274":{"tf":1.0},"314":{"tf":1.0},"388":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1116":{"tf":1.0}}}}}},"df":34,"docs":{"101":{"tf":1.0},"1046":{"tf":1.0},"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1187":{"tf":1.0},"1220":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"137":{"tf":2.0},"139":{"tf":2.0},"140":{"tf":1.4142135623730951},"1408":{"tf":1.0},"141":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1438":{"tf":2.8284271247461903},"1439":{"tf":1.0},"1441":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1464":{"tf":1.0},"27":{"tf":2.23606797749979},"294":{"tf":1.4142135623730951},"582":{"tf":2.449489742783178},"583":{"tf":1.0},"78":{"tf":1.0},"966":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1367":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1525":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"17":{"tf":1.0},"241":{"tf":1.0},"62":{"tf":1.0}}}}},"df":4,"docs":{"126":{"tf":1.0},"1601":{"tf":1.0},"19":{"tf":1.0},"887":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":46,"docs":{"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1188":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1236":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1290":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1618":{"tf":1.0},"1631":{"tf":2.0},"1649":{"tf":1.0},"1651":{"tf":1.4142135623730951},"26":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.4142135623730951},"326":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"441":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"580":{"tf":1.0},"588":{"tf":1.0},"675":{"tf":1.0},"808":{"tf":1.4142135623730951},"97":{"tf":1.0},"994":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1082":{"tf":1.4142135623730951},"692":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"939":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"887":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"1630":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1020":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1289":{"tf":1.0},"1479":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1630":{"tf":1.0},"320":{"tf":1.0},"417":{"tf":1.0},"509":{"tf":1.4142135623730951},"605":{"tf":1.0},"645":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"138":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"914":{"tf":1.0},"946":{"tf":1.0}}}},"w":{"df":9,"docs":{"1148":{"tf":1.0},"1362":{"tf":1.0},"1379":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979}}}},"t":{"df":1,"docs":{"1125":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1236":{"tf":1.0},"32":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1138":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1533":{"tf":2.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"327":{"tf":1.4142135623730951},"751":{"tf":1.0},"800":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":24,"docs":{"1017":{"tf":1.0},"1143":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"1495":{"tf":1.0},"1538":{"tf":1.7320508075688772},"1615":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1643":{"tf":1.4142135623730951},"19":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.0},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"123":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1162":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1410":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1426":{"tf":1.0},"1610":{"tf":1.0},"332":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"1252":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"432":{"tf":1.7320508075688772},"503":{"tf":1.0},"665":{"tf":1.7320508075688772},"80":{"tf":1.0}}}}},"d":{"df":26,"docs":{"1078":{"tf":1.0},"1147":{"tf":1.0},"1184":{"tf":1.0},"1201":{"tf":1.0},"121":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.7320508075688772},"26":{"tf":1.0},"280":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"62":{"tf":1.0},"627":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"667":{"tf":1.0},"803":{"tf":1.4142135623730951},"999":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"836":{"tf":1.0}}}}}},"t":{"df":8,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1138":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1195":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"14":{"tf":1.0},"309":{"tf":1.0},"810":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1061":{"tf":1.0},"1352":{"tf":1.4142135623730951},"137":{"tf":1.0},"139":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1347":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"o":{"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0},"302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"df":2,"docs":{"302":{"tf":1.0},"303":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":25,"docs":{"1209":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1436":{"tf":1.0},"1458":{"tf":2.0},"1587":{"tf":1.0},"495":{"tf":1.0},"537":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"588":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"962":{"tf":1.0},"966":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"554":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1":{"tf":1.0},"14":{"tf":1.4142135623730951}}},"l":{"df":13,"docs":{"1455":{"tf":1.0},"667":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":27,"docs":{"1174":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"443":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.7320508075688772},"534":{"tf":1.0},"543":{"tf":2.23606797749979},"555":{"tf":2.23606797749979},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"871":{"tf":1.0},"894":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":5,"docs":{"1193":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1485":{"tf":1.0},"2":{"tf":1.0},"78":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"95":{"tf":1.0}},"h":{"df":36,"docs":{"1072":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1180":{"tf":1.0},"1188":{"tf":1.0},"1195":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1251":{"tf":1.0},"1278":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1376":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1498":{"tf":1.0},"156":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"193":{"tf":1.0},"27":{"tf":1.0},"294":{"tf":1.0},"440":{"tf":1.0},"533":{"tf":1.0},"610":{"tf":1.0},"78":{"tf":1.0},"784":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":23,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1392":{"tf":1.0},"14":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":2.0},"512":{"tf":1.0},"513":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"761":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}}}},"df":2,"docs":{"1327":{"tf":1.0},"1588":{"tf":1.0}}},"df":0,"docs":{}}},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"a":{"2":{"a":{":":{":":{"a":{"2":{"a":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":15,"docs":{"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1533":{"tf":1.0},"503":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1229":{"tf":1.0},"862":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1023":{"tf":1.0},"1067":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1618":{"tf":1.4142135623730951},"582":{"tf":2.0},"901":{"tf":1.0}}}},"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}},"i":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":2,"docs":{"1138":{"tf":1.0},"951":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1204":{"tf":1.0},"803":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1249":{"tf":1.0},"38":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1118":{"tf":1.0},"31":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"920":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1145":{"tf":1.0},"1229":{"tf":1.0},"144":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1637":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1637":{"tf":1.4142135623730951},"1638":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1148":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.0},"1637":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0}}}}}},"df":4,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1389":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"461":{"tf":1.0},"485":{"tf":1.0},"556":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"163":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":34,"docs":{"1195":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.4142135623730951},"130":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1354":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":2.0},"182":{"tf":2.0},"21":{"tf":1.0},"562":{"tf":1.0},"666":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"762":{"tf":1.0},"841":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"986":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":28,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1150":{"tf":1.0},"1181":{"tf":1.0},"1193":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1314":{"tf":1.0},"1347":{"tf":1.0},"1369":{"tf":1.0},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"1533":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"293":{"tf":1.0},"32":{"tf":1.4142135623730951},"368":{"tf":1.0},"381":{"tf":1.4142135623730951},"667":{"tf":1.0},"80":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"147":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0}}}},"df":1,"docs":{"144":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1192":{"tf":1.0},"24":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":1.7320508075688772}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":18,"docs":{"1033":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1101":{"tf":1.7320508075688772},"1104":{"tf":1.0},"1107":{"tf":1.0},"1138":{"tf":2.8284271247461903},"1140":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1388":{"tf":1.0},"354":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"c":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":14,"docs":{"1033":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1200":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0},"327":{"tf":1.7320508075688772},"546":{"tf":1.7320508075688772},"557":{"tf":1.7320508075688772},"665":{"tf":1.0},"954":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"844":{"tf":1.0},"987":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1461":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":15,"docs":{"1008":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"27":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":1,"docs":{"1459":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"583":{"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":1,"docs":{"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"t":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":63,"docs":{"0":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1249":{"tf":1.0},"1254":{"tf":1.0},"1279":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1332":{"tf":1.0},"1335":{"tf":1.0},"1338":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1394":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"449":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.4142135623730951},"529":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"605":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"801":{"tf":1.0},"807":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}}},"df":1,"docs":{"1436":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":9,"docs":{"1387":{"tf":1.4142135623730951},"1597":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":2.0},"604":{"tf":1.0},"66":{"tf":1.0},"778":{"tf":1.0},"794":{"tf":1.0},"994":{"tf":1.0}},"i":{"c":{"df":7,"docs":{"1004":{"tf":1.0},"1033":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1597":{"tf":1.0},"66":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"l":{"df":19,"docs":{"1258":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1496":{"tf":1.0},"19":{"tf":1.0},"23":{"tf":1.0},"238":{"tf":1.0},"49":{"tf":1.0},"508":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"989":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1361":{"tf":1.0},"1487":{"tf":1.0},"385":{"tf":1.0}}}}}},"r":{"d":{"'":{"df":1,"docs":{"1277":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}}}}},"df":25,"docs":{"1":{"tf":1.0},"1193":{"tf":2.0},"1262":{"tf":1.0},"1264":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1287":{"tf":1.0},"1289":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"139":{"tf":1.0},"1479":{"tf":1.0},"42":{"tf":1.0},"751":{"tf":1.0},"807":{"tf":1.0},"843":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1331":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"326":{"tf":1.0}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"173":{"tf":1.0},"335":{"tf":1.0},"369":{"tf":1.0}}}}}}},"df":15,"docs":{"10":{"tf":1.0},"1052":{"tf":1.0},"1229":{"tf":3.0},"1240":{"tf":2.6457513110645907},"1252":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1533":{"tf":1.0},"162":{"tf":1.4142135623730951},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1192":{"tf":1.4142135623730951},"1276":{"tf":1.0},"136":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":38,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1016":{"tf":1.0},"1032":{"tf":1.0},"1099":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1208":{"tf":1.0},"1239":{"tf":1.0},"124":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1301":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":2.0},"1438":{"tf":2.0},"1532":{"tf":1.0},"250":{"tf":1.0},"3":{"tf":1.0},"39":{"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},"582":{"tf":2.0},"765":{"tf":1.0},"78":{"tf":1.0},"808":{"tf":1.4142135623730951},"89":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":8,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1419":{"tf":1.0},"1562":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"822":{"tf":1.4142135623730951},"875":{"tf":1.0},"919":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":3,"docs":{"59":{"tf":1.0},"813":{"tf":1.4142135623730951},"875":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":30,"docs":{"1209":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"985":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"d":{"df":6,"docs":{"1400":{"tf":1.0},"148":{"tf":1.4142135623730951},"151":{"tf":1.0},"162":{"tf":1.7320508075688772},"170":{"tf":1.0},"633":{"tf":1.0}}},"df":13,"docs":{"1046":{"tf":1.0},"1071":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":1.0},"140":{"tf":1.4142135623730951},"141":{"tf":1.0},"146":{"tf":1.0},"631":{"tf":1.0},"666":{"tf":1.7320508075688772},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"100":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"338":{"tf":1.0},"46":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1022":{"tf":1.0},"985":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1012":{"tf":2.0},"1022":{"tf":1.0},"1052":{"tf":1.0},"1196":{"tf":1.0},"1202":{"tf":1.0},"30":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":52,"docs":{"1012":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1055":{"tf":1.4142135623730951},"1071":{"tf":2.0},"1199":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"1294":{"tf":2.0},"1295":{"tf":1.4142135623730951},"1297":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1302":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1340":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1598":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.0},"267":{"tf":1.0},"325":{"tf":1.0},"44":{"tf":1.0},"604":{"tf":1.0},"69":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":52,"docs":{"1":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1191":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"136":{"tf":1.0},"1386":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1569":{"tf":1.0},"1588":{"tf":1.0},"1597":{"tf":1.0},"1618":{"tf":1.4142135623730951},"1620":{"tf":1.4142135623730951},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1630":{"tf":1.0},"1634":{"tf":1.4142135623730951},"215":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"314":{"tf":1.7320508075688772},"326":{"tf":1.4142135623730951},"331":{"tf":1.0},"41":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"63":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"863":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1034":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1187":{"tf":1.0},"67":{"tf":1.0}}}}}},"o":{"df":1,"docs":{"1205":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1":{"tf":1.0},"1212":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1476":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"39":{"tf":1.0},"466":{"tf":1.0},"703":{"tf":1.0},"846":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":2.0},"1033":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1104":{"tf":1.0},"116":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":2,"docs":{"942":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"1219":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1466":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1443":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":98,"docs":{"1033":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.0},"1198":{"tf":1.0},"1208":{"tf":1.0},"1241":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"130":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.0},"1410":{"tf":2.0},"1435":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1501":{"tf":1.4142135623730951},"151":{"tf":1.0},"1530":{"tf":1.0},"1559":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1573":{"tf":1.4142135623730951},"1576":{"tf":1.0},"1580":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1588":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1594":{"tf":1.7320508075688772},"161":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1653":{"tf":1.7320508075688772},"206":{"tf":1.4142135623730951},"210":{"tf":1.4142135623730951},"256":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.7320508075688772},"294":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"323":{"tf":1.7320508075688772},"329":{"tf":1.0},"330":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"440":{"tf":1.7320508075688772},"443":{"tf":1.0},"450":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"489":{"tf":1.7320508075688772},"501":{"tf":1.0},"603":{"tf":1.0},"634":{"tf":1.0},"663":{"tf":1.4142135623730951},"664":{"tf":1.0},"670":{"tf":1.0},"677":{"tf":1.0},"686":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"725":{"tf":1.7320508075688772},"737":{"tf":1.0},"777":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.4142135623730951},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"1055":{"tf":1.0},"1499":{"tf":1.0},"1511":{"tf":1.0},"37":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"954":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"431":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1377":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":18,"docs":{"1043":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"512":{"tf":1.0},"514":{"tf":1.4142135623730951},"520":{"tf":1.0},"75":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"764":{"tf":1.0},"78":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1141":{"tf":1.0}},"n":{"df":3,"docs":{"1141":{"tf":1.0},"1143":{"tf":1.0},"1182":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":5,"docs":{"1391":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1394":{"tf":2.0},"532":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"i":{"/":{"c":{"d":{"df":7,"docs":{"107":{"tf":1.0},"1202":{"tf":1.0},"1232":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"89":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1052":{"tf":1.0},"1487":{"tf":1.0},"980":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":6,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1229":{"tf":1.4142135623730951},"147":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1629":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"533":{"tf":1.7320508075688772}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":47,"docs":{"1019":{"tf":2.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.4142135623730951},"1022":{"tf":2.0},"1024":{"tf":2.0},"1025":{"tf":2.0},"1058":{"tf":1.4142135623730951},"1059":{"tf":2.23606797749979},"106":{"tf":1.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1198":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"128":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"133":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.7320508075688772},"1339":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"985":{"tf":1.4142135623730951},"989":{"tf":1.7320508075688772}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"=":{"[":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1321":{"tf":1.0},"1357":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":29,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1227":{"tf":1.0},"1265":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"439":{"tf":1.0},"465":{"tf":1.0},"594":{"tf":1.7320508075688772},"668":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.7320508075688772},"788":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1043":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1101":{"tf":1.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"834":{"tf":1.0},"840":{"tf":1.0}},"i":{"df":6,"docs":{"1266":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1296":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"836":{"tf":1.0}}}}}}},"u":{"d":{"df":9,"docs":{"1349":{"tf":1.4142135623730951},"36":{"tf":1.0},"40":{"tf":1.0},"763":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1243":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"43":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"389":{"tf":1.4142135623730951}}}}},"r":{"df":10,"docs":{"1012":{"tf":1.0},"1024":{"tf":1.0},"1329":{"tf":1.0},"134":{"tf":1.0},"238":{"tf":1.0},"29":{"tf":1.0},"305":{"tf":1.0},"31":{"tf":1.0},"389":{"tf":1.0},"430":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":149,"docs":{"10":{"tf":1.7320508075688772},"1008":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"116":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1252":{"tf":1.0},"1314":{"tf":1.0},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":2.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"164":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"170":{"tf":1.0},"175":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.6457513110645907},"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.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"5":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.449489742783178},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"805":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"854":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"750":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1317":{"tf":1.0},"1321":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1264":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1322":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1264":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1322":{"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":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"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":{"1268":{"tf":1.0},"1293":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"2":{"a":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1269":{"tf":1.0},"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"df":1,"docs":{"583":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1224":{"tf":1.0}}}},"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":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1277":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1293":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1305":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1266":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1316":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1305":{"tf":1.0},"634":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1266":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1319":{"tf":1.0},"1320":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"809":{"tf":1.0}}}}}}},"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":9,"docs":{"1257":{"tf":1.7320508075688772},"1287":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.0},"1349":{"tf":1.0},"751":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1192":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"1294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1294":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1297":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":94,"docs":{"1047":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1224":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":2.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":3.1622776601683795},"1459":{"tf":1.4142135623730951},"1462":{"tf":2.449489742783178},"1477":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1649":{"tf":1.7320508075688772},"36":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":2.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.0},"524":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"540":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"579":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.0},"750":{"tf":2.23606797749979},"751":{"tf":1.0},"754":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1017":{"tf":1.4142135623730951},"1018":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"162":{"tf":1.0},"170":{"tf":1.0},"364":{"tf":1.0},"633":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"1251":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"509":{"tf":1.0}}}},"u":{"d":{"df":6,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"118":{"tf":1.0},"1413":{"tf":1.0},"144":{"tf":1.0},"197":{"tf":1.0},"312":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"o":{"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"351":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1236":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1229":{"tf":1.0}}}}},"df":89,"docs":{"107":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1236":{"tf":1.0},"1237":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1382":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1539":{"tf":2.0},"1540":{"tf":2.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1545":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1550":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1555":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1560":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1612":{"tf":1.7320508075688772},"1629":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.4142135623730951},"264":{"tf":1.0},"293":{"tf":1.0},"36":{"tf":1.4142135623730951},"360":{"tf":1.0},"371":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.7320508075688772},"905":{"tf":1.0},"914":{"tf":1.0},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"928":{"tf":1.0},"931":{"tf":1.0},"986":{"tf":1.0}},"x":{"df":2,"docs":{"36":{"tf":1.0},"40":{"tf":1.0}}}}},"df":4,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"304":{"tf":1.0},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0},"986":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"33":{"tf":1.0},"95":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1207":{"tf":1.0},"1209":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.0},"281":{"tf":1.0},"297":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"'":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":8,"docs":{"1367":{"tf":2.23606797749979},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"379":{"tf":1.7320508075688772},"388":{"tf":2.0},"983":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1353":{"tf":1.0},"220":{"tf":1.0},"300":{"tf":1.4142135623730951},"424":{"tf":1.0},"652":{"tf":1.0},"740":{"tf":1.0},"836":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1079":{"tf":2.0},"1147":{"tf":1.0},"1208":{"tf":1.0},"1380":{"tf":1.0},"588":{"tf":1.0}}},"m":{"a":{"df":3,"docs":{"1514":{"tf":1.0},"1561":{"tf":1.0},"206":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"1062":{"tf":1.4142135623730951},"107":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1482":{"tf":2.23606797749979},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1495":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":2.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1530":{"tf":1.0},"1540":{"tf":1.0},"1583":{"tf":1.0},"1598":{"tf":1.4142135623730951},"1614":{"tf":1.0},"1649":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.0},"316":{"tf":1.4142135623730951},"332":{"tf":1.0},"75":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1157":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":24,"docs":{"1045":{"tf":1.0},"1051":{"tf":1.0},"121":{"tf":1.0},"237":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"830":{"tf":1.0},"916":{"tf":1.0},"935":{"tf":2.449489742783178},"936":{"tf":1.4142135623730951},"937":{"tf":1.4142135623730951},"938":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"943":{"tf":2.8284271247461903},"944":{"tf":1.4142135623730951},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.7320508075688772},"958":{"tf":1.0},"968":{"tf":1.4142135623730951},"969":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":29,"docs":{"1008":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.4142135623730951},"149":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1523":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"1653":{"tf":1.4142135623730951},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"380":{"tf":1.0},"429":{"tf":1.4142135623730951},"436":{"tf":1.0},"510":{"tf":1.4142135623730951},"626":{"tf":1.0},"662":{"tf":1.4142135623730951},"671":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.0},"808":{"tf":1.4142135623730951},"824":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":20,"docs":{"0":{"tf":1.4142135623730951},"1010":{"tf":1.0},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"132":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"17":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"562":{"tf":1.0},"803":{"tf":1.0},"95":{"tf":1.0},"993":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1408":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"836":{"tf":1.0}}}},"r":{"df":9,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1197":{"tf":1.0},"1327":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"308":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1056":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"560":{"tf":1.4142135623730951},"985":{"tf":1.4142135623730951}}}}}}},"t":{"df":32,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1138":{"tf":1.0},"1193":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1322":{"tf":1.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1510":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1575":{"tf":1.0},"1616":{"tf":1.7320508075688772},"1628":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"432":{"tf":1.7320508075688772},"665":{"tf":1.7320508075688772},"74":{"tf":1.7320508075688772},"788":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"57":{"tf":1.0}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"939":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"57":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1008":{"tf":1.0},"142":{"tf":1.0},"152":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"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":2,"docs":{"1359":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"t":{"df":93,"docs":{"1053":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1371":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1427":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1442":{"tf":1.0},"1443":{"tf":1.0},"1450":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1475":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1540":{"tf":1.0},"1569":{"tf":1.4142135623730951},"17":{"tf":1.0},"185":{"tf":1.0},"210":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"235":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"291":{"tf":1.7320508075688772},"293":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"365":{"tf":1.4142135623730951},"375":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"451":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"465":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"532":{"tf":1.4142135623730951},"536":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"589":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.4142135623730951},"745":{"tf":1.0},"765":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"874":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.4142135623730951},"887":{"tf":1.0},"888":{"tf":1.0},"891":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"90":{"tf":1.0},"903":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.7320508075688772},"910":{"tf":1.4142135623730951},"938":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"952":{"tf":1.0},"956":{"tf":1.4142135623730951},"97":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1409":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"952":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":7,"docs":{"1236":{"tf":1.0},"1241":{"tf":1.0},"31":{"tf":1.0},"32":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"802":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":20,"docs":{"100":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1093":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"124":{"tf":1.0},"1241":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1592":{"tf":1.0},"256":{"tf":1.0},"33":{"tf":1.0},"70":{"tf":1.0},"992":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"59":{"tf":1.4142135623730951},"812":{"tf":1.0},"816":{"tf":1.4142135623730951},"823":{"tf":1.0},"836":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":6,"docs":{"1236":{"tf":1.0},"132":{"tf":1.0},"1355":{"tf":1.0},"141":{"tf":1.0},"530":{"tf":1.7320508075688772},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"812":{"tf":1.0},"824":{"tf":1.4142135623730951},"835":{"tf":1.0},"975":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":10,"docs":{"1474":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1496":{"tf":1.0},"1512":{"tf":1.0},"1518":{"tf":1.0},"16":{"tf":1.0},"367":{"tf":1.0},"68":{"tf":1.0},"970":{"tf":1.0},"993":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"1001":{"tf":1.0},"1057":{"tf":1.0},"1066":{"tf":2.23606797749979},"1079":{"tf":1.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":2.0},"1200":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1587":{"tf":1.0},"250":{"tf":1.0},"295":{"tf":1.0},"859":{"tf":1.0},"863":{"tf":1.0},"872":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1326":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":36,"docs":{"125":{"tf":1.4142135623730951},"1323":{"tf":1.0},"19":{"tf":1.0},"22":{"tf":1.4142135623730951},"34":{"tf":1.0},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"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.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"1236":{"tf":1.0},"364":{"tf":1.0},"807":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"631":{"tf":2.0},"659":{"tf":2.23606797749979},"666":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"102":{"tf":1.0},"1020":{"tf":1.0},"1024":{"tf":1.0},"103":{"tf":1.0},"1164":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1464":{"tf":1.0},"62":{"tf":1.0},"840":{"tf":1.0}}}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"127":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.0},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1346":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.4142135623730951},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1004":{"tf":1.0},"1134":{"tf":1.0},"1174":{"tf":1.0},"1331":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"358":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"358":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"358":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1130":{"tf":1.0},"207":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1367":{"tf":1.0},"388":{"tf":1.0}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.4142135623730951},"744":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"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":{}}}},"=":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"675":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}},"df":10,"docs":{"1215":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"694":{"tf":1.0},"770":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":120,"docs":{"1008":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":2.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"13":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1491":{"tf":2.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.23606797749979},"1516":{"tf":1.0},"1533":{"tf":1.0},"1542":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.7320508075688772},"157":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"161":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"210":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"235":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"342":{"tf":1.0},"357":{"tf":2.23606797749979},"358":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"383":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"412":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.4142135623730951},"499":{"tf":1.0},"507":{"tf":1.7320508075688772},"51":{"tf":1.7320508075688772},"54":{"tf":1.0},"571":{"tf":1.0},"634":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"694":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"83":{"tf":1.4142135623730951},"86":{"tf":1.0},"863":{"tf":1.0},"88":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":2.0},"955":{"tf":1.0},"957":{"tf":1.0},"970":{"tf":2.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.4142135623730951},"983":{"tf":1.0},"994":{"tf":2.23606797749979}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"410":{"tf":1.0},"499":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":25,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1651":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"458":{"tf":1.0},"543":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.4142135623730951},"596":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":188,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1102":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1114":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1142":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1214":{"tf":1.0},"122":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1380":{"tf":1.0},"139":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1409":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1488":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1508":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.7320508075688772},"1518":{"tf":2.23606797749979},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1521":{"tf":2.449489742783178},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":2.449489742783178},"1531":{"tf":2.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1536":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"1541":{"tf":1.4142135623730951},"1542":{"tf":2.23606797749979},"1543":{"tf":2.0},"1549":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.7320508075688772},"1580":{"tf":1.7320508075688772},"1581":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.4142135623730951},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":1.0},"183":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"207":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"228":{"tf":1.4142135623730951},"250":{"tf":1.0},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"338":{"tf":1.0},"342":{"tf":1.4142135623730951},"356":{"tf":1.4142135623730951},"357":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"389":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"412":{"tf":1.4142135623730951},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"415":{"tf":1.0},"442":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"587":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.4142135623730951},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"643":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"735":{"tf":1.4142135623730951},"741":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.4142135623730951},"769":{"tf":1.0},"770":{"tf":1.4142135623730951},"789":{"tf":1.0},"795":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"810":{"tf":1.0},"814":{"tf":1.7320508075688772},"820":{"tf":1.4142135623730951},"823":{"tf":1.0},"83":{"tf":1.0},"830":{"tf":1.4142135623730951},"852":{"tf":1.0},"863":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":2.0},"95":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":8,"docs":{"102":{"tf":1.0},"106":{"tf":1.0},"1095":{"tf":1.0},"1197":{"tf":1.0},"1499":{"tf":1.0},"1557":{"tf":1.0},"395":{"tf":1.0},"907":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1562":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"134":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1223":{"tf":1.0},"1438":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":2.449489742783178},"395":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":13,"docs":{"1037":{"tf":1.0},"26":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"289":{"tf":1.4142135623730951},"305":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1018":{"tf":1.0},"1134":{"tf":1.0},"1140":{"tf":1.0},"1194":{"tf":1.0},"1331":{"tf":1.0},"289":{"tf":1.0},"327":{"tf":1.0},"33":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1025":{"tf":1.4142135623730951},"1054":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1132":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1331":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"324":{"tf":1.4142135623730951},"397":{"tf":1.0},"584":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1154":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.7320508075688772},"21":{"tf":1.0},"66":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}},"e":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1438":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"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":2,"docs":{"1435":{"tf":1.0},"404":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"500":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"464":{"tf":1.0}}}}},"j":{"a":{"c":{"df":3,"docs":{"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"464":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1172":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"464":{"tf":1.0},"500":{"tf":1.0}}}}}}}},"`":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"404":{"tf":1.0},"445":{"tf":1.0},"462":{"tf":1.0},"491":{"tf":1.0},"596":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":6,"docs":{"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"489":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"499":{"tf":1.0}}}}}}},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1447":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":7,"docs":{"1431":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"428":{"tf":1.4142135623730951},"478":{"tf":1.0},"500":{"tf":1.0},"598":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1436":{"tf":1.0},"583":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"445":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"498":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"404":{"tf":1.0},"428":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"570":{"tf":1.0},"574":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"496":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"582":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1431":{"tf":1.0},"1442":{"tf":1.0},"484":{"tf":1.0}}}}}},"df":2,"docs":{"472":{"tf":1.0},"496":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1442":{"tf":1.0},"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":2,"docs":{"1433":{"tf":1.0},"481":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1431":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1315":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"453":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1288":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1297":{"tf":1.0},"1320":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"441":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1316":{"tf":1.0},"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1288":{"tf":1.0},"1435":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1297":{"tf":1.0}}},"y":{"df":1,"docs":{"462":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"441":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"441":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"103":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0}}}}}},"df":2,"docs":{"446":{"tf":1.0},"448":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"554":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"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":{}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"456":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"?":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"525":{"tf":1.0},"526":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"526":{"tf":1.0},"533":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"533":{"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":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"541":{"tf":1.0},"542":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1266":{"tf":1.0},"449":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"526":{"tf":1.0}}}}}}},"df":2,"docs":{"1432":{"tf":2.0},"1443":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1056":{"tf":1.0},"234":{"tf":1.0}}}}},"df":169,"docs":{"103":{"tf":3.0},"113":{"tf":1.0},"114":{"tf":1.0},"1142":{"tf":1.0},"115":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1186":{"tf":1.7320508075688772},"1215":{"tf":2.449489742783178},"1220":{"tf":2.8284271247461903},"1223":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1255":{"tf":2.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.7320508075688772},"1282":{"tf":2.23606797749979},"1287":{"tf":1.4142135623730951},"1288":{"tf":2.23606797749979},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1358":{"tf":2.6457513110645907},"1391":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1429":{"tf":1.0},"1431":{"tf":2.0},"1432":{"tf":2.0},"1433":{"tf":2.23606797749979},"1435":{"tf":2.449489742783178},"1436":{"tf":2.6457513110645907},"1438":{"tf":2.0},"1439":{"tf":2.6457513110645907},"1441":{"tf":2.449489742783178},"1442":{"tf":2.23606797749979},"1443":{"tf":2.0},"1445":{"tf":3.7416573867739413},"1447":{"tf":1.7320508075688772},"1449":{"tf":3.7416573867739413},"1515":{"tf":1.4142135623730951},"1618":{"tf":3.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1647":{"tf":3.4641016151377544},"1649":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"303":{"tf":1.7320508075688772},"404":{"tf":1.0},"410":{"tf":1.7320508075688772},"412":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":2.0},"437":{"tf":1.4142135623730951},"438":{"tf":2.449489742783178},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"456":{"tf":1.0},"462":{"tf":3.1622776601683795},"463":{"tf":2.0},"464":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.4142135623730951},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.6457513110645907},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":2.0},"515":{"tf":1.7320508075688772},"516":{"tf":1.7320508075688772},"518":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.7320508075688772},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.7320508075688772},"533":{"tf":1.0},"534":{"tf":1.7320508075688772},"535":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"545":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"559":{"tf":1.4142135623730951},"567":{"tf":2.449489742783178},"568":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"572":{"tf":2.23606797749979},"574":{"tf":1.7320508075688772},"576":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":2.449489742783178},"586":{"tf":1.0},"592":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"600":{"tf":1.7320508075688772},"604":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":2.23606797749979},"625":{"tf":1.4142135623730951},"78":{"tf":2.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.7320508075688772},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"877":{"tf":1.4142135623730951},"878":{"tf":1.0},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"89":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"223":{"tf":1.0},"59":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":10,"docs":{"105":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"2":{"tf":1.0},"299":{"tf":1.4142135623730951},"304":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"748":{"tf":1.4142135623730951},"829":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1227":{"tf":1.0},"595":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.0},"78":{"tf":1.0},"849":{"tf":1.4142135623730951},"980":{"tf":1.0}}}},"m":{"df":3,"docs":{"121":{"tf":1.4142135623730951},"1480":{"tf":1.0},"51":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"850":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"117":{"tf":1.0},"1206":{"tf":1.0},"1412":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.7320508075688772},"238":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"816":{"tf":1.0},"834":{"tf":1.0},"837":{"tf":1.7320508075688772},"840":{"tf":1.0},"844":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"988":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":40,"docs":{"1033":{"tf":1.7320508075688772},"104":{"tf":1.0},"107":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"1197":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1368":{"tf":1.0},"1386":{"tf":1.0},"1391":{"tf":1.0},"147":{"tf":1.0},"1486":{"tf":1.0},"1500":{"tf":1.0},"153":{"tf":1.0},"1530":{"tf":1.0},"1543":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.7320508075688772},"45":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"609":{"tf":1.0},"74":{"tf":1.0},"783":{"tf":1.0},"846":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"919":{"tf":1.0},"946":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"143":{"tf":1.0},"375":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1224":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1317":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":116,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1039":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1601":{"tf":1.0},"203":{"tf":1.0},"205":{"tf":1.7320508075688772},"219":{"tf":2.449489742783178},"235":{"tf":2.449489742783178},"254":{"tf":1.0},"256":{"tf":1.0},"262":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"292":{"tf":1.0},"295":{"tf":1.7320508075688772},"315":{"tf":1.0},"345":{"tf":1.0},"348":{"tf":1.0},"428":{"tf":1.0},"447":{"tf":1.7320508075688772},"448":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"597":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"688":{"tf":1.0},"697":{"tf":1.7320508075688772},"708":{"tf":1.0},"717":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"800":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":2.0},"871":{"tf":2.0},"874":{"tf":1.7320508075688772},"875":{"tf":1.4142135623730951},"877":{"tf":2.0},"879":{"tf":2.0},"914":{"tf":1.0},"919":{"tf":1.7320508075688772},"921":{"tf":2.0},"928":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"95":{"tf":2.449489742783178},"962":{"tf":1.0},"966":{"tf":1.0},"997":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1317":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"938":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1464":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":31,"docs":{"103":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1317":{"tf":1.0},"132":{"tf":1.0},"138":{"tf":1.4142135623730951},"1601":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.7320508075688772},"305":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"487":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"723":{"tf":1.0},"745":{"tf":1.0},"775":{"tf":1.4142135623730951},"802":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"916":{"tf":1.0},"95":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":8,"docs":{"1023":{"tf":1.0},"1066":{"tf":1.0},"1078":{"tf":1.0},"1352":{"tf":1.0},"277":{"tf":1.0},"34":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"699":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":18,"docs":{"1140":{"tf":1.0},"1144":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1326":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1410":{"tf":3.605551275463989},"1416":{"tf":1.7320508075688772},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"285":{"tf":1.0},"292":{"tf":1.4142135623730951},"353":{"tf":1.0},"487":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"811":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1175":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"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":{},"l":{"df":29,"docs":{"1045":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"122":{"tf":1.0},"1331":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1359":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"37":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"42":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"572":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0},"72":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"980":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":7,"docs":{"1366":{"tf":1.0},"369":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"529":{"tf":1.4142135623730951},"693":{"tf":1.0},"78":{"tf":1.0}}},"t":{"df":8,"docs":{"1279":{"tf":1.0},"1298":{"tf":1.0},"1487":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":20,"docs":{"55":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":2.449489742783178},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.4142135623730951},"964":{"tf":1.4142135623730951},"965":{"tf":1.7320508075688772},"966":{"tf":1.0},"967":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":1.4142135623730951}}},"t":{"df":1,"docs":{"580":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1204":{"tf":1.0},"240":{"tf":1.0},"60":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"1208":{"tf":1.0},"146":{"tf":1.0},"155":{"tf":1.0},"1653":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"885":{"tf":1.0},"902":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":61,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1145":{"tf":2.0},"1150":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"130":{"tf":1.0},"136":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1532":{"tf":1.4142135623730951},"162":{"tf":1.0},"1630":{"tf":1.0},"18":{"tf":1.4142135623730951},"241":{"tf":1.0},"32":{"tf":1.0},"337":{"tf":1.4142135623730951},"34":{"tf":1.0},"362":{"tf":1.0},"406":{"tf":1.4142135623730951},"434":{"tf":1.0},"47":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"552":{"tf":1.0},"56":{"tf":1.0},"564":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"593":{"tf":1.4142135623730951},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"636":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"669":{"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.4142135623730951},"751":{"tf":1.0},"767":{"tf":1.4142135623730951},"810":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}}},"p":{"df":6,"docs":{"1403":{"tf":1.0},"1410":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"850":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":17,"docs":{"1062":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1279":{"tf":1.0},"138":{"tf":1.0},"1389":{"tf":1.0},"1549":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1577":{"tf":1.0},"1653":{"tf":1.4142135623730951},"325":{"tf":1.0},"588":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1141":{"tf":1.0},"1217":{"tf":1.0},"1575":{"tf":1.0},"1653":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"1372":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1588":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1208":{"tf":1.4142135623730951},"1246":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1553":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"985":{"tf":1.0},"987":{"tf":1.7320508075688772},"992":{"tf":1.0}}}}},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1389":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1592":{"tf":1.0},"1625":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1366":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"121":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1230":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1229":{"tf":2.8284271247461903},"1230":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1190":{"tf":1.0},"1195":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":2.449489742783178},"1230":{"tf":2.0},"1231":{"tf":2.23606797749979},"1233":{"tf":1.0},"803":{"tf":1.0}}}},"df":12,"docs":{"1212":{"tf":1.0},"1329":{"tf":1.0},"1384":{"tf":1.0},"1389":{"tf":1.0},"1512":{"tf":1.0},"1615":{"tf":1.0},"164":{"tf":1.0},"214":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.7320508075688772},"466":{"tf":1.0},"703":{"tf":1.0}}}}}},"p":{"df":5,"docs":{"155":{"tf":1.0},"1635":{"tf":1.0},"1645":{"tf":1.0},"1655":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{":":{":":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":7,"docs":{"1008":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1151":{"tf":1.0},"1236":{"tf":1.0},"1532":{"tf":1.0},"376":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":332,"docs":{"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1009":{"tf":1.0},"101":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"102":{"tf":1.0},"1025":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1126":{"tf":1.0},"1130":{"tf":1.0},"1135":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1180":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1211":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1243":{"tf":1.0},"1279":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"136":{"tf":1.0},"1360":{"tf":1.0},"1369":{"tf":1.0},"1398":{"tf":2.0},"1400":{"tf":1.4142135623730951},"1403":{"tf":4.0},"1405":{"tf":1.7320508075688772},"1408":{"tf":2.6457513110645907},"1410":{"tf":2.449489742783178},"1412":{"tf":3.0},"1416":{"tf":2.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":1.0},"1426":{"tf":1.0},"1431":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":2.23606797749979},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1497":{"tf":4.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1503":{"tf":1.7320508075688772},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1549":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.4142135623730951},"1557":{"tf":1.0},"1566":{"tf":1.4142135623730951},"1569":{"tf":1.0},"157":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.7320508075688772},"1600":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.7320508075688772},"1612":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":2.0},"1642":{"tf":1.0},"1647":{"tf":1.4142135623730951},"1654":{"tf":1.0},"17":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"192":{"tf":2.0},"195":{"tf":3.3166247903554},"200":{"tf":2.23606797749979},"202":{"tf":3.3166247903554},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":2.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":2.23606797749979},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.7320508075688772},"218":{"tf":2.449489742783178},"219":{"tf":2.23606797749979},"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.7320508075688772},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"26":{"tf":1.0},"260":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"284":{"tf":1.7320508075688772},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":2.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"332":{"tf":1.7320508075688772},"333":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.4142135623730951},"341":{"tf":1.0},"345":{"tf":2.0},"346":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":2.0},"353":{"tf":1.0},"357":{"tf":1.0},"365":{"tf":1.7320508075688772},"375":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"413":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"447":{"tf":1.0},"45":{"tf":1.0},"469":{"tf":1.7320508075688772},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":1.0},"48":{"tf":1.0},"487":{"tf":1.4142135623730951},"49":{"tf":1.0},"499":{"tf":1.7320508075688772},"50":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"502":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.4142135623730951},"54":{"tf":1.0},"540":{"tf":1.4142135623730951},"57":{"tf":1.0},"58":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"62":{"tf":1.0},"621":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.7320508075688772},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.7320508075688772},"667":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"681":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"69":{"tf":1.0},"705":{"tf":1.7320508075688772},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"723":{"tf":1.4142135623730951},"735":{"tf":1.7320508075688772},"736":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"739":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"794":{"tf":1.0},"796":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.7320508075688772},"81":{"tf":1.0},"821":{"tf":1.4142135623730951},"825":{"tf":1.7320508075688772},"83":{"tf":2.449489742783178},"831":{"tf":1.0},"84":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"877":{"tf":1.7320508075688772},"887":{"tf":1.0},"888":{"tf":1.0},"89":{"tf":1.7320508075688772},"893":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":3.3166247903554},"956":{"tf":1.0},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0},"965":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"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":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"1254":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"749":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"794":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"928":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"943":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1454":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1441":{"tf":1.4142135623730951},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.4142135623730951},"499":{"tf":1.4142135623730951},"593":{"tf":1.0},"623":{"tf":1.0}}}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1387":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"'":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{")":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1317":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.7320508075688772},"518":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1649":{"tf":1.7320508075688772},"408":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1255":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0},"621":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1251":{"tf":1.0},"1255":{"tf":1.4142135623730951},"408":{"tf":1.0},"507":{"tf":1.4142135623730951},"620":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1431":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":44,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1215":{"tf":1.0},"1313":{"tf":1.0},"1325":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"159":{"tf":1.4142135623730951},"1654":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.4142135623730951},"235":{"tf":1.0},"249":{"tf":1.0},"435":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.4142135623730951},"49":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"597":{"tf":1.0},"62":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"708":{"tf":1.4142135623730951},"747":{"tf":1.0},"771":{"tf":1.0},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"862":{"tf":1.4142135623730951},"885":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"865":{"tf":1.0}}},"df":2,"docs":{"1470":{"tf":1.4142135623730951},"24":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1653":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":10,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1200":{"tf":1.0},"1331":{"tf":1.0},"1435":{"tf":1.0},"1530":{"tf":1.0},"1572":{"tf":1.4142135623730951},"418":{"tf":1.0},"646":{"tf":1.0},"980":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1164":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":12,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1344":{"tf":1.4142135623730951},"1347":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"762":{"tf":2.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"25":{"tf":1.0},"55":{"tf":1.0},"883":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1072":{"tf":1.0},"1125":{"tf":1.0},"1135":{"tf":1.0},"1203":{"tf":1.0},"1531":{"tf":1.0},"16":{"tf":1.0},"1640":{"tf":1.0},"33":{"tf":1.0},"952":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":27,"docs":{"0":{"tf":1.0},"1141":{"tf":1.7320508075688772},"1187":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1261":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"137":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"808":{"tf":1.0},"940":{"tf":1.4142135623730951},"943":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"968":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"u":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1144":{"tf":1.0},"362":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":2,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1591":{"tf":1.0}}},"df":0,"docs":{}}}},"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":{"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}}}},"df":14,"docs":{"1164":{"tf":1.0},"1208":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"144":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"176":{"tf":1.0},"924":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":140,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1067":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":2.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1237":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1326":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"141":{"tf":1.0},"1488":{"tf":1.0},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1510":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1545":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1616":{"tf":1.0},"1639":{"tf":1.4142135623730951},"1656":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.0},"21":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"280":{"tf":1.0},"299":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.0},"353":{"tf":1.0},"420":{"tf":1.4142135623730951},"49":{"tf":1.0},"52":{"tf":1.0},"521":{"tf":1.0},"54":{"tf":1.0},"562":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.7320508075688772},"648":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.0},"799":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.0},"875":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"996":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"i":{"df":4,"docs":{"1067":{"tf":1.0},"1093":{"tf":1.0},"1112":{"tf":1.0},"20":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":1,"docs":{"574":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"556":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"559":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"556":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"574":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":1,"docs":{"559":{"tf":1.0}}}}}}},"df":4,"docs":{"554":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"574":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"786":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1082":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":56,"docs":{"1023":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1062":{"tf":1.0},"107":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1094":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1365":{"tf":1.0},"1408":{"tf":1.0},"1476":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1501":{"tf":1.0},"1538":{"tf":1.0},"1580":{"tf":1.0},"1635":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"239":{"tf":1.0},"267":{"tf":1.0},"287":{"tf":1.4142135623730951},"362":{"tf":1.0},"39":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.0},"488":{"tf":1.0},"602":{"tf":1.0},"65":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.4142135623730951},"689":{"tf":1.0},"724":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"839":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"891":{"tf":1.0},"910":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1100":{"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":{"d":{"df":0,"docs":{},"i":{"df":12,"docs":{"1262":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.0},"46":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"771":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1157":{"tf":1.0},"1171":{"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":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"905":{"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":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":108,"docs":{"1127":{"tf":1.4142135623730951},"1153":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1158":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1195":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1324":{"tf":2.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1403":{"tf":2.0},"1404":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1521":{"tf":1.0},"1538":{"tf":1.0},"1542":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.0},"219":{"tf":1.4142135623730951},"246":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"273":{"tf":1.0},"279":{"tf":1.0},"293":{"tf":1.4142135623730951},"311":{"tf":1.0},"32":{"tf":1.4142135623730951},"355":{"tf":2.0},"361":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"439":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"516":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"673":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"715":{"tf":1.0},"771":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"821":{"tf":2.23606797749979},"822":{"tf":1.0},"825":{"tf":1.7320508075688772},"831":{"tf":1.4142135623730951},"842":{"tf":1.0},"875":{"tf":1.0},"885":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":2.8284271247461903},"916":{"tf":1.0},"985":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1410":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"888":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"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":{"1080":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"371":{"tf":1.0},"375":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"315":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"\"":{")":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1215":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":13,"docs":{"100":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1646":{"tf":1.4142135623730951},"1647":{"tf":2.0},"37":{"tf":1.0},"72":{"tf":1.0},"862":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"221":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1367":{"tf":1.4142135623730951},"1369":{"tf":2.23606797749979}},"h":{"df":0,"docs":{},"q":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":111,"docs":{"1004":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1215":{"tf":1.0},"1217":{"tf":1.0},"1220":{"tf":2.449489742783178},"1224":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":2.0},"1309":{"tf":1.0},"1316":{"tf":1.0},"132":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1347":{"tf":1.0},"1354":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"1416":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1500":{"tf":1.0},"1508":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.7320508075688772},"159":{"tf":1.0},"1613":{"tf":1.0},"17":{"tf":1.0},"183":{"tf":1.0},"200":{"tf":1.0},"221":{"tf":2.23606797749979},"241":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"30":{"tf":1.7320508075688772},"33":{"tf":1.0},"389":{"tf":1.0},"410":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"484":{"tf":1.7320508075688772},"485":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"545":{"tf":1.4142135623730951},"549":{"tf":1.0},"567":{"tf":2.23606797749979},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.7320508075688772},"607":{"tf":1.7320508075688772},"612":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"627":{"tf":1.0},"63":{"tf":1.4142135623730951},"655":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.7320508075688772},"721":{"tf":2.0},"731":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"786":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1435":{"tf":1.4142135623730951},"495":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"df":31,"docs":{"1017":{"tf":1.0},"1036":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.7320508075688772},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1419":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"61":{"tf":1.4142135623730951},"822":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"848":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.7320508075688772},"866":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":1.0},"891":{"tf":1.4142135623730951},"899":{"tf":2.23606797749979},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"731":{"tf":1.0},"782":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1008":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1627":{"tf":1.0},"895":{"tf":1.0}}}},"b":{"df":1,"docs":{"1145":{"tf":1.0}}},"d":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1367":{"tf":1.0},"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":25,"docs":{"1008":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1635":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1655":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.4142135623730951},"294":{"tf":1.0},"980":{"tf":1.0}},"e":{"a":{"d":{"df":2,"docs":{"1322":{"tf":1.0},"986":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1365":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"297":{"tf":1.4142135623730951},"501":{"tf":1.0},"61":{"tf":1.0},"737":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"182":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"153":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1018":{"tf":1.0},"1367":{"tf":2.23606797749979},"1506":{"tf":1.0},"1519":{"tf":1.0},"1524":{"tf":1.0},"1578":{"tf":1.4142135623730951},"374":{"tf":1.0},"376":{"tf":1.0},"388":{"tf":1.0},"74":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"117":{"tf":1.0},"1196":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}},"i":{"d":{"df":5,"docs":{"1262":{"tf":1.0},"1285":{"tf":1.0},"1290":{"tf":1.0},"1326":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":25,"docs":{"1124":{"tf":1.4142135623730951},"124":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"133":{"tf":1.0},"140":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1592":{"tf":1.0},"1614":{"tf":1.0},"17":{"tf":1.0},"385":{"tf":1.0},"44":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":4,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1328":{"tf":1.0},"1500":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"156":{"tf":1.4142135623730951},"1625":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1214":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"546":{"tf":1.0},"557":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"5":{"tf":1.0}}}}}}},"f":{"7":{"8":{"9":{"df":1,"docs":{"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1342":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":106,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.0},"1146":{"tf":1.0},"1151":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.7320508075688772},"122":{"tf":1.0},"1251":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1529":{"tf":2.6457513110645907},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"159":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"312":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.0},"349":{"tf":1.0},"360":{"tf":1.4142135623730951},"362":{"tf":1.0},"371":{"tf":2.0},"375":{"tf":1.0},"40":{"tf":1.0},"416":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"454":{"tf":1.0},"467":{"tf":1.4142135623730951},"499":{"tf":1.0},"509":{"tf":1.0},"531":{"tf":1.7320508075688772},"533":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":2.6457513110645907},"544":{"tf":1.0},"555":{"tf":2.6457513110645907},"582":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"644":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"748":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"773":{"tf":1.4142135623730951},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0},"825":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}}},"df":42,"docs":{"1165":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1221":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1244":{"tf":1.7320508075688772},"1245":{"tf":1.0},"1246":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.23606797749979},"1459":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.7320508075688772},"1472":{"tf":2.23606797749979},"1474":{"tf":1.7320508075688772},"656":{"tf":1.0},"668":{"tf":2.0},"700":{"tf":1.4142135623730951},"737":{"tf":1.0},"749":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1033":{"tf":1.0},"1140":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":18,"docs":{"1153":{"tf":1.0},"1279":{"tf":1.0},"1464":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":1.0},"23":{"tf":1.0},"366":{"tf":1.0},"463":{"tf":1.0},"55":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"857":{"tf":1.0},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"893":{"tf":1.0},"912":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":21,"docs":{"1021":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1412":{"tf":1.0},"195":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"223":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"250":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"457":{"tf":1.4142135623730951},"55":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"693":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"842":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"58":{"tf":1.0}}},"t":{"df":4,"docs":{"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1640":{"tf":1.4142135623730951}}}},"i":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{},"v":{"df":5,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"942":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"29":{"tf":1.0},"898":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.0},"966":{"tf":1.0}}}}}},"t":{"a":{"df":1,"docs":{"1391":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":1,"docs":{"323":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":9,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1479":{"tf":1.0},"803":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"183":{"tf":1.0},"998":{"tf":1.0}}},"o":{"df":1,"docs":{"144":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}},"df":1,"docs":{"143":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":25,"docs":{"1025":{"tf":1.0},"1052":{"tf":1.0},"1055":{"tf":1.0},"1094":{"tf":1.0},"1146":{"tf":1.0},"1233":{"tf":1.4142135623730951},"142":{"tf":1.0},"1429":{"tf":1.0},"1452":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1655":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"32":{"tf":1.4142135623730951},"325":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"369":{"tf":1.0},"427":{"tf":1.0},"527":{"tf":1.0},"660":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"994":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":33,"docs":{"1":{"tf":1.4142135623730951},"100":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":2.0},"148":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.7320508075688772},"300":{"tf":1.4142135623730951},"309":{"tf":1.0},"332":{"tf":1.4142135623730951},"35":{"tf":1.0},"38":{"tf":1.0},"44":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"850":{"tf":1.4142135623730951},"905":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":18,"docs":{"1138":{"tf":1.0},"1143":{"tf":1.0},"1180":{"tf":1.0},"1529":{"tf":1.0},"1626":{"tf":1.7320508075688772},"1628":{"tf":2.0},"1629":{"tf":1.7320508075688772},"1630":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"175":{"tf":1.0},"227":{"tf":1.0},"551":{"tf":1.0},"605":{"tf":1.4142135623730951},"624":{"tf":2.0},"779":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":6,"docs":{"1033":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"213":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":29,"docs":{"1008":{"tf":1.0},"1198":{"tf":1.0},"1279":{"tf":1.0},"129":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1311":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"133":{"tf":1.0},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1362":{"tf":1.0},"138":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"1592":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1613":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"14":{"tf":1.0},"55":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}},"e":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1449":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":115,"docs":{"1029":{"tf":1.0},"1083":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1184":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1299":{"tf":1.0},"1347":{"tf":1.0},"1350":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1454":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1532":{"tf":1.0},"1540":{"tf":1.0},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"187":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"200":{"tf":2.449489742783178},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"304":{"tf":1.0},"336":{"tf":1.0},"341":{"tf":1.7320508075688772},"365":{"tf":1.0},"369":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"59":{"tf":1.0},"675":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.0},"786":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":2.0},"835":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1283":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":13,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"19":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"436":{"tf":1.0},"553":{"tf":1.0},"671":{"tf":1.0},"71":{"tf":1.0},"935":{"tf":1.0},"993":{"tf":1.0}}}},"r":{"df":3,"docs":{"1059":{"tf":1.0},"1077":{"tf":1.0},"885":{"tf":1.0}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1008":{"tf":1.0},"40":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1368":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.0},"1520":{"tf":2.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"368":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"981":{"tf":1.0}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1378":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":39,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1211":{"tf":1.0},"1254":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"133":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1427":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1583":{"tf":1.0},"1589":{"tf":1.0},"1594":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.4142135623730951},"264":{"tf":1.0},"376":{"tf":1.0},"450":{"tf":1.0},"59":{"tf":1.0},"686":{"tf":1.0},"830":{"tf":1.0},"854":{"tf":1.0},"934":{"tf":1.0},"94":{"tf":1.4142135623730951},"980":{"tf":1.0},"981":{"tf":1.0},"99":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1416":{"tf":1.4142135623730951},"200":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":12,"docs":{"1001":{"tf":1.0},"1011":{"tf":1.0},"1208":{"tf":1.0},"1238":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"157":{"tf":1.4142135623730951},"2":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1004":{"tf":1.0},"1019":{"tf":1.0},"1290":{"tf":1.0},"1359":{"tf":1.0},"1531":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1004":{"tf":1.0},"1326":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1536":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1536":{"tf":1.0}}}}}},"df":5,"docs":{"1013":{"tf":1.0},"1423":{"tf":1.0},"1521":{"tf":1.0},"182":{"tf":1.0},"427":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":37,"docs":{"1008":{"tf":1.4142135623730951},"1011":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1201":{"tf":1.0},"1203":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1423":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"162":{"tf":1.0},"1629":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"327":{"tf":1.0},"365":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"472":{"tf":1.0},"501":{"tf":1.4142135623730951},"633":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"708":{"tf":1.0},"737":{"tf":1.4142135623730951},"78":{"tf":1.0},"841":{"tf":1.0}}}}}},"i":{"c":{"df":1,"docs":{"989":{"tf":1.0}},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"t":{"df":1,"docs":{"1062":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1339":{"tf":1.0},"1347":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.0},"1474":{"tf":2.0},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"691":{"tf":1.0},"700":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"800":{"tf":1.4142135623730951},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"783":{"tf":1.0},"784":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"100":{"tf":1.0},"1097":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1190":{"tf":1.4142135623730951},"1195":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1353":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1423":{"tf":1.0},"1549":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.0},"269":{"tf":1.4142135623730951},"288":{"tf":1.7320508075688772},"366":{"tf":1.0},"550":{"tf":1.0},"746":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"32":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1557":{"tf":1.0},"323":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":22,"docs":{"1197":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.449489742783178},"1329":{"tf":1.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"138":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.23606797749979},"1607":{"tf":1.0},"1609":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1097":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"20":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1111":{"tf":2.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}},"r":{"df":6,"docs":{"107":{"tf":1.0},"1420":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.0},"665":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1187":{"tf":1.0},"36":{"tf":1.0},"379":{"tf":1.0},"73":{"tf":1.0},"933":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":15,"docs":{"1":{"tf":1.0},"116":{"tf":1.0},"1231":{"tf":1.0},"1249":{"tf":1.0},"1299":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1394":{"tf":1.0},"253":{"tf":1.0},"304":{"tf":1.0},"316":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":72,"docs":{"1007":{"tf":1.0},"1033":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"110":{"tf":1.0},"1126":{"tf":1.0},"1182":{"tf":1.0},"1188":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0},"1400":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1449":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.0},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1508":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"1544":{"tf":2.23606797749979},"1546":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"159":{"tf":1.0},"1606":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1653":{"tf":1.0},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"192":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"229":{"tf":1.0},"245":{"tf":1.4142135623730951},"252":{"tf":1.0},"258":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.0},"357":{"tf":1.0},"394":{"tf":1.0},"431":{"tf":1.0},"435":{"tf":1.0},"438":{"tf":1.0},"51":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"77":{"tf":1.0},"797":{"tf":1.4142135623730951},"823":{"tf":1.0},"914":{"tf":1.0},"92":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1046":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1530":{"tf":1.4142135623730951},"196":{"tf":1.0},"319":{"tf":1.0},"371":{"tf":1.4142135623730951},"375":{"tf":1.0},"748":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"305":{"tf":1.0}},"e":{"df":5,"docs":{"1037":{"tf":1.0},"1481":{"tf":1.0},"289":{"tf":1.0},"305":{"tf":1.0},"865":{"tf":1.0}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":11,"docs":{"1239":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1287":{"tf":1.0},"137":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{}}}}},"n":{"d":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"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":1,"docs":{"1285":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"1279":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"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":1,"docs":{"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":7,"docs":{"1261":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"i":{"df":15,"docs":{"1194":{"tf":1.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1287":{"tf":1.0},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"140":{"tf":1.0},"1479":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"690":{"tf":1.0},"7":{"tf":1.0},"761":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"967":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":16,"docs":{"1145":{"tf":1.0},"1210":{"tf":1.0},"1315":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.0},"1571":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"77":{"tf":1.0},"994":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1580":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1201":{"tf":1.0},"134":{"tf":1.0},"919":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":15,"docs":{"1018":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.0},"1366":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1533":{"tf":1.0},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"336":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.4142135623730951},"62":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1323":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"98":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1008":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":101,"docs":{"1001":{"tf":1.0},"1002":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":2.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.0},"1059":{"tf":3.0},"1060":{"tf":1.0},"1062":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.4142135623730951},"1087":{"tf":2.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.0},"117":{"tf":2.23606797749979},"118":{"tf":2.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":2.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":3.0},"1199":{"tf":2.0},"120":{"tf":3.0},"1200":{"tf":2.6457513110645907},"1201":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":3.0},"1204":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"1413":{"tf":3.4641016151377544},"1414":{"tf":2.8284271247461903},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1555":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":2.449489742783178},"1559":{"tf":2.23606797749979},"17":{"tf":1.0},"196":{"tf":3.4641016151377544},"197":{"tf":2.8284271247461903},"198":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"233":{"tf":2.23606797749979},"237":{"tf":1.0},"240":{"tf":1.0},"270":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.23606797749979},"308":{"tf":2.23606797749979},"309":{"tf":2.8284271247461903},"310":{"tf":1.0},"311":{"tf":2.8284271247461903},"312":{"tf":2.8284271247461903},"313":{"tf":2.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":2.0},"317":{"tf":1.7320508075688772},"318":{"tf":1.7320508075688772},"319":{"tf":3.605551275463989},"320":{"tf":3.7416573867739413},"321":{"tf":1.4142135623730951},"322":{"tf":2.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.7320508075688772},"326":{"tf":1.7320508075688772},"327":{"tf":1.4142135623730951},"328":{"tf":1.0},"329":{"tf":2.0},"330":{"tf":1.7320508075688772},"331":{"tf":2.23606797749979},"332":{"tf":2.6457513110645907},"333":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"38":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"46":{"tf":1.7320508075688772},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"810":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":2.0},"856":{"tf":1.0},"979":{"tf":2.23606797749979},"990":{"tf":1.0}},"f":{"df":1,"docs":{"182":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1485":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1020":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"332":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1198":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"/":{"d":{"df":1,"docs":{"1202":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":34,"docs":{"1001":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1414":{"tf":1.0},"1556":{"tf":2.449489742783178},"196":{"tf":1.0},"198":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"322":{"tf":2.449489742783178},"323":{"tf":2.449489742783178},"325":{"tf":1.4142135623730951},"326":{"tf":1.0},"330":{"tf":2.23606797749979},"846":{"tf":1.0},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"452":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1455":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1074":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1441":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1647":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"600":{"tf":1.0},"879":{"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":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1431":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1432":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":5,"docs":{"1431":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1647":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"107":{"tf":1.0},"1422":{"tf":1.0},"1486":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"207":{"tf":1.0},"247":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"1":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"2":{"df":2,"docs":{"1245":{"tf":1.0},"1472":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"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":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"1454":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1472":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"668":{"tf":1.4142135623730951},"739":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"365":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0},"1642":{"tf":1.0},"800":{"tf":1.0},"929":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1218":{"tf":1.4142135623730951},"775":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"776":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"df":75,"docs":{"1004":{"tf":1.0},"103":{"tf":1.0},"1080":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1217":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1226":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"248":{"tf":1.0},"278":{"tf":1.4142135623730951},"292":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.4142135623730951},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"365":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"452":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"481":{"tf":1.4142135623730951},"500":{"tf":1.0},"53":{"tf":1.0},"592":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"661":{"tf":1.0},"688":{"tf":1.4142135623730951},"699":{"tf":1.0},"717":{"tf":1.4142135623730951},"736":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"798":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.4142135623730951},"821":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"928":{"tf":3.0},"994":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1008":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.4142135623730951},"147":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1647":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":11,"docs":{"1499":{"tf":1.0},"250":{"tf":1.0},"339":{"tf":1.0},"459":{"tf":1.0},"478":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"695":{"tf":1.0},"714":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"107":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1497":{"tf":2.23606797749979},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"202":{"tf":2.449489742783178},"204":{"tf":1.7320508075688772},"205":{"tf":1.0},"206":{"tf":1.7320508075688772},"209":{"tf":1.0},"210":{"tf":2.0},"244":{"tf":1.4142135623730951},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"95":{"tf":2.0}}}}}}},"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"102":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0}}}}}}}},"{":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"300":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"656":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1364":{"tf":1.0},"1365":{"tf":2.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1468":{"tf":1.4142135623730951},"684":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1363":{"tf":1.0},"1376":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"355":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"723":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"724":{"tf":1.0},"725":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":499,"docs":{"1004":{"tf":2.23606797749979},"1005":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1016":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1053":{"tf":1.0},"1057":{"tf":1.0},"106":{"tf":2.449489742783178},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.7320508075688772},"1074":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"109":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1095":{"tf":1.0},"110":{"tf":1.0},"1103":{"tf":1.0},"111":{"tf":2.0},"1110":{"tf":1.0},"1115":{"tf":1.0},"112":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.7320508075688772},"1147":{"tf":1.7320508075688772},"1148":{"tf":1.0},"115":{"tf":1.7320508075688772},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"116":{"tf":2.449489742783178},"1160":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"119":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":2.449489742783178},"121":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1215":{"tf":2.23606797749979},"1217":{"tf":2.23606797749979},"1218":{"tf":1.0},"122":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1325":{"tf":1.0},"1338":{"tf":1.0},"1343":{"tf":1.0},"136":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":2.23606797749979},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1398":{"tf":2.23606797749979},"1400":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.7416573867739413},"1404":{"tf":3.4641016151377544},"1405":{"tf":2.8284271247461903},"1406":{"tf":2.449489742783178},"1408":{"tf":2.0},"1409":{"tf":2.0},"1410":{"tf":3.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.449489742783178},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":2.0},"1432":{"tf":2.23606797749979},"1433":{"tf":2.0},"1435":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":2.449489742783178},"1447":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1454":{"tf":2.0},"1455":{"tf":2.23606797749979},"1456":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1468":{"tf":2.449489742783178},"1470":{"tf":3.1622776601683795},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1496":{"tf":2.0},"1497":{"tf":4.123105625617661},"1498":{"tf":3.1622776601683795},"1499":{"tf":3.3166247903554},"1500":{"tf":3.3166247903554},"1501":{"tf":3.1622776601683795},"1503":{"tf":3.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.7320508075688772},"1539":{"tf":1.0},"1540":{"tf":1.0},"1548":{"tf":1.0},"1551":{"tf":2.0},"1552":{"tf":2.0},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.0},"1560":{"tf":1.4142135623730951},"1561":{"tf":1.4142135623730951},"1562":{"tf":1.4142135623730951},"1563":{"tf":2.23606797749979},"1564":{"tf":1.4142135623730951},"1566":{"tf":1.7320508075688772},"1569":{"tf":1.4142135623730951},"1579":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":2.0},"1589":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"160":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"161":{"tf":1.7320508075688772},"1616":{"tf":1.7320508075688772},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.7320508075688772},"1640":{"tf":2.0},"1642":{"tf":1.7320508075688772},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.0},"1654":{"tf":2.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"189":{"tf":1.0},"20":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":3.4641016151377544},"203":{"tf":2.8284271247461903},"204":{"tf":3.3166247903554},"205":{"tf":2.23606797749979},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":2.449489742783178},"210":{"tf":2.23606797749979},"213":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"224":{"tf":2.0},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":2.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":2.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.23606797749979},"242":{"tf":2.0},"243":{"tf":1.7320508075688772},"244":{"tf":2.0},"245":{"tf":2.0},"246":{"tf":1.4142135623730951},"247":{"tf":2.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"25":{"tf":1.0},"250":{"tf":2.23606797749979},"251":{"tf":1.0},"252":{"tf":1.7320508075688772},"253":{"tf":2.449489742783178},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.7320508075688772},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951},"260":{"tf":2.23606797749979},"261":{"tf":1.4142135623730951},"262":{"tf":2.6457513110645907},"263":{"tf":1.7320508075688772},"264":{"tf":2.0},"265":{"tf":1.7320508075688772},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":2.0},"27":{"tf":2.0},"270":{"tf":2.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":2.6457513110645907},"277":{"tf":2.449489742783178},"278":{"tf":2.6457513110645907},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.4142135623730951},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"294":{"tf":2.0},"305":{"tf":1.0},"321":{"tf":1.0},"329":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":2.23606797749979},"346":{"tf":1.7320508075688772},"347":{"tf":2.23606797749979},"348":{"tf":1.7320508075688772},"349":{"tf":1.7320508075688772},"350":{"tf":1.7320508075688772},"353":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"355":{"tf":1.0},"362":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.7320508075688772},"366":{"tf":1.0},"376":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"428":{"tf":1.0},"434":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"447":{"tf":1.4142135623730951},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":2.23606797749979},"452":{"tf":1.7320508075688772},"453":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.0},"466":{"tf":1.0},"471":{"tf":1.4142135623730951},"472":{"tf":2.0},"476":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"48":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":2.23606797749979},"492":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.7320508075688772},"525":{"tf":1.0},"526":{"tf":1.0},"53":{"tf":1.7320508075688772},"534":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.7320508075688772},"544":{"tf":1.0},"55":{"tf":2.449489742783178},"552":{"tf":1.0},"561":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"603":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"637":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.7320508075688772},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"673":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"684":{"tf":1.7320508075688772},"687":{"tf":2.449489742783178},"688":{"tf":2.6457513110645907},"689":{"tf":1.4142135623730951},"69":{"tf":1.0},"695":{"tf":1.0},"70":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":2.0},"71":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":2.23606797749979},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":2.23606797749979},"74":{"tf":1.0},"740":{"tf":1.7320508075688772},"745":{"tf":1.0},"751":{"tf":1.0},"765":{"tf":1.4142135623730951},"771":{"tf":2.6457513110645907},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772},"794":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.4142135623730951},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"821":{"tf":1.7320508075688772},"824":{"tf":1.4142135623730951},"827":{"tf":2.0},"830":{"tf":2.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"834":{"tf":1.0},"839":{"tf":1.0},"84":{"tf":1.7320508075688772},"841":{"tf":2.0},"843":{"tf":1.0},"848":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":2.449489742783178},"858":{"tf":1.0},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.4142135623730951},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":2.23606797749979},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":2.8284271247461903},"878":{"tf":1.7320508075688772},"879":{"tf":1.7320508075688772},"880":{"tf":1.0},"881":{"tf":1.4142135623730951},"882":{"tf":2.23606797749979},"883":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.4142135623730951},"912":{"tf":1.7320508075688772},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.7320508075688772},"926":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"93":{"tf":1.7320508075688772},"930":{"tf":2.8284271247461903},"932":{"tf":1.4142135623730951},"933":{"tf":1.7320508075688772},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":2.8284271247461903},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"958":{"tf":1.0},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951},"970":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"i":{"d":{"df":5,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"534":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"428":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0},"600":{"tf":1.7320508075688772},"879":{"tf":1.4142135623730951}}}}},"s":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1144":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.7320508075688772},"362":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"345":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"487":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"488":{"tf":1.0},"489":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":2,"docs":{"1385":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":1,"docs":{"687":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":9,"docs":{"1059":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1538":{"tf":1.0},"1557":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"307":{"tf":1.0},"464":{"tf":1.0},"701":{"tf":1.0}}}},"df":0,"docs":{}}}},"h":{"df":1,"docs":{"1202":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"758":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":11,"docs":{"1264":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":79,"docs":{"10":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1154":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":2.23606797749979},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1413":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1439":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":2.0},"155":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.0},"1621":{"tf":1.7320508075688772},"197":{"tf":2.449489742783178},"198":{"tf":1.0},"211":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":2.0},"454":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.0},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.4142135623730951},"856":{"tf":1.0},"916":{"tf":1.0},"979":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":13,"docs":{"1023":{"tf":1.0},"1134":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1359":{"tf":2.0},"1403":{"tf":1.0},"1572":{"tf":1.0},"1596":{"tf":1.0},"305":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1538":{"tf":1.0},"1611":{"tf":1.0},"209":{"tf":1.0},"807":{"tf":1.0},"894":{"tf":1.0}}}},"t":{"df":1,"docs":{"1328":{"tf":1.0}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"31":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":4,"docs":{"1025":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1061":{"tf":1.7320508075688772},"1200":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1638":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1298":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":5,"docs":{"1405":{"tf":1.0},"1510":{"tf":1.0},"811":{"tf":1.0},"887":{"tf":1.0},"989":{"tf":2.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1018":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"73":{"tf":1.0},"994":{"tf":1.0}},"n":{"df":1,"docs":{"1202":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"df":3,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"330":{"tf":1.0}},"s":{"df":1,"docs":{"1068":{"tf":1.0}},"e":{"df":7,"docs":{"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"986":{"tf":1.4142135623730951}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1416":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":3,"docs":{"1363":{"tf":1.4142135623730951},"1364":{"tf":1.4142135623730951},"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1197":{"tf":1.0},"1236":{"tf":1.0},"152":{"tf":1.0},"1558":{"tf":1.0},"1629":{"tf":1.0},"326":{"tf":1.0},"852":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1167":{"tf":1.0},"989":{"tf":1.4142135623730951}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":26,"docs":{"1008":{"tf":1.0},"1016":{"tf":1.0},"116":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1627":{"tf":1.0},"1632":{"tf":1.0},"32":{"tf":1.0},"380":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.4142135623730951},"604":{"tf":1.0},"607":{"tf":1.0},"630":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"691":{"tf":1.0},"778":{"tf":1.0},"781":{"tf":1.0},"919":{"tf":1.0},"953":{"tf":1.0},"994":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"464":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"1070":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":29,"docs":{"1017":{"tf":1.0},"107":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"111":{"tf":1.0},"1128":{"tf":1.0},"115":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1563":{"tf":1.0},"235":{"tf":1.4142135623730951},"292":{"tf":1.7320508075688772},"311":{"tf":1.0},"321":{"tf":1.0},"49":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"899":{"tf":1.0},"955":{"tf":2.0},"966":{"tf":1.4142135623730951},"977":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"862":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1129":{"tf":1.0},"867":{"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":{}},"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":{}},"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":{}},"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":{}},"8":{"9":{"b":{"df":3,"docs":{"235":{"tf":1.7320508075688772},"292":{"tf":1.0},"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":57,"docs":{"1008":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1051":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1081":{"tf":1.0},"1086":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1205":{"tf":1.0},"121":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1309":{"tf":1.0},"1311":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1354":{"tf":1.0},"1371":{"tf":1.0},"1381":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1410":{"tf":1.0},"1487":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"17":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"295":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"49":{"tf":1.0},"534":{"tf":1.0},"587":{"tf":1.0},"594":{"tf":1.0},"62":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"768":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"950":{"tf":1.0},"957":{"tf":1.0},"964":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"398":{"tf":1.0},"627":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1533":{"tf":1.0},"1637":{"tf":1.0}}}},"t":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"989":{"tf":2.6457513110645907}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1461":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1459":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951}}}}}}}}},"df":28,"docs":{"1039":{"tf":1.0},"1045":{"tf":1.0},"107":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1418":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.0},"1425":{"tf":2.6457513110645907},"1426":{"tf":1.7320508075688772},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1485":{"tf":1.0},"1582":{"tf":1.0},"1610":{"tf":1.7320508075688772},"1611":{"tf":1.0},"1654":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"78":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1436":{"tf":1.4142135623730951},"1439":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}}}}},"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":2,"docs":{"1278":{"tf":1.4142135623730951},"2":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":98,"docs":{"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1099":{"tf":2.0},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"121":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":2.0},"1315":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"21":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"299":{"tf":1.0},"302":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"636":{"tf":1.0},"639":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"735":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"78":{"tf":1.7320508075688772},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.7320508075688772},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":3,"docs":{"1239":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1329":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"145":{"tf":1.0},"165":{"tf":1.0},"182":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0}}}}},"df":18,"docs":{"1032":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.8284271247461903},"1497":{"tf":1.0},"1498":{"tf":1.0},"1610":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"363":{"tf":1.0},"376":{"tf":1.0},"464":{"tf":1.7320508075688772},"633":{"tf":1.0},"701":{"tf":2.449489742783178},"798":{"tf":2.449489742783178}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1033":{"tf":1.0},"1189":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"1175":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1461":{"tf":1.7320508075688772}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"1194":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1042":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1161":{"tf":1.4142135623730951},"1172":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":2.0},"1380":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1383":{"tf":1.7320508075688772},"1384":{"tf":2.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1588":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"73":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"899":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0}}}}}}}}},"b":{"df":31,"docs":{"1326":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1497":{"tf":2.23606797749979},"1498":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.4142135623730951},"253":{"tf":2.23606797749979},"274":{"tf":1.0},"346":{"tf":1.7320508075688772},"348":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":2.23606797749979},"452":{"tf":2.0},"476":{"tf":1.0},"482":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"880":{"tf":1.0},"921":{"tf":1.7320508075688772},"933":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"681":{"tf":1.0},"699":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":29,"docs":{"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1406":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1500":{"tf":2.23606797749979},"1503":{"tf":1.0},"1511":{"tf":1.0},"1558":{"tf":1.0},"205":{"tf":1.7320508075688772},"254":{"tf":1.0},"262":{"tf":1.4142135623730951},"350":{"tf":1.0},"447":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"697":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.7320508075688772},"872":{"tf":2.0},"873":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1361":{"tf":1.0},"1364":{"tf":1.0},"1391":{"tf":1.0},"1629":{"tf":1.0}}}},"l":{"df":2,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1244":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1595":{"tf":1.7320508075688772},"338":{"tf":1.0},"595":{"tf":1.0},"769":{"tf":1.0},"994":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":73,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1052":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1072":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1182":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.0},"1314":{"tf":1.0},"1334":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1366":{"tf":2.0},"1368":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.7320508075688772},"202":{"tf":1.0},"204":{"tf":1.0},"237":{"tf":1.0},"280":{"tf":1.0},"321":{"tf":1.0},"322":{"tf":1.4142135623730951},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"361":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.7320508075688772},"383":{"tf":1.7320508075688772},"387":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.4142135623730951},"396":{"tf":1.0},"535":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"547":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"562":{"tf":1.0},"60":{"tf":1.0},"811":{"tf":1.0},"957":{"tf":1.0},"97":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"180":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"554":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1197":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"975":{"tf":1.0}},"o":{"d":{"df":24,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.0},"116":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1500":{"tf":1.0},"1553":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.0},"254":{"tf":1.0},"311":{"tf":1.4142135623730951},"313":{"tf":1.0},"349":{"tf":1.0},"456":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"692":{"tf":1.0},"697":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1539":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":14,"docs":{"1008":{"tf":2.449489742783178},"1052":{"tf":1.0},"1134":{"tf":1.0},"1438":{"tf":1.0},"1537":{"tf":1.0},"1548":{"tf":1.4142135623730951},"1625":{"tf":1.7320508075688772},"1645":{"tf":2.0},"1653":{"tf":1.0},"2":{"tf":1.0},"440":{"tf":1.0},"685":{"tf":1.0},"975":{"tf":1.4142135623730951},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":11,"docs":{"1394":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"293":{"tf":1.0},"692":{"tf":1.0},"842":{"tf":1.0},"885":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.4142135623730951},"908":{"tf":1.0},"909":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":39,"docs":{"1013":{"tf":1.4142135623730951},"1024":{"tf":1.0},"1025":{"tf":1.0},"1187":{"tf":1.0},"1224":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1525":{"tf":1.4142135623730951},"1573":{"tf":1.0},"361":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"392":{"tf":1.7320508075688772},"395":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"582":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"73":{"tf":1.0},"761":{"tf":1.0},"893":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":16,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1012":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1147":{"tf":1.0},"1251":{"tf":1.0},"1298":{"tf":1.0},"281":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"322":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"748":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"219":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"130":{"tf":1.0},"222":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"959":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":3,"docs":{"0":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":34,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1154":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.0},"1499":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1547":{"tf":1.0},"1575":{"tf":1.0},"159":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1653":{"tf":1.7320508075688772},"183":{"tf":1.0},"20":{"tf":1.0},"26":{"tf":1.0},"295":{"tf":1.0},"322":{"tf":1.0},"394":{"tf":1.0},"396":{"tf":1.0},"565":{"tf":1.0},"570":{"tf":1.0},"588":{"tf":1.0},"67":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"824":{"tf":1.0},"965":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0},"850":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1414":{"tf":1.0},"196":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1199":{"tf":1.0},"214":{"tf":1.0},"23":{"tf":1.0},"48":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"989":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1075":{"tf":1.0},"1386":{"tf":1.0},"1588":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"794":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1052":{"tf":1.0}}}}},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":18,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1160":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1331":{"tf":1.0},"825":{"tf":1.0},"829":{"tf":2.23606797749979},"836":{"tf":1.0},"837":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"951":{"tf":1.4142135623730951},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"829":{"tf":1.0}}}}}},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"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":{}},"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1236":{"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":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"1620":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.7320508075688772},"2":{"tf":1.0},"45":{"tf":1.0},"986":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"[":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":66,"docs":{"1008":{"tf":2.0},"1011":{"tf":1.0},"1018":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1052":{"tf":1.0},"1133":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1203":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.4142135623730951},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":1.7320508075688772},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"33":{"tf":1.0},"375":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"633":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":1.7320508075688772},"989":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":2.0},"1408":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"107":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1315":{"tf":1.0},"1486":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"363":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1418":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1110":{"tf":1.0},"51":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":2,"docs":{"363":{"tf":1.0},"376":{"tf":1.0}}},"df":4,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.0},"805":{"tf":2.449489742783178},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"376":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1436":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1172":{"tf":1.0},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"500":{"tf":1.7320508075688772},"586":{"tf":1.0},"625":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":130,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1033":{"tf":1.0},"107":{"tf":1.0},"1172":{"tf":1.0},"1194":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1435":{"tf":2.6457513110645907},"1438":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1447":{"tf":3.7416573867739413},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.6457513110645907},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1539":{"tf":2.0},"1540":{"tf":1.7320508075688772},"1541":{"tf":1.7320508075688772},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1544":{"tf":1.4142135623730951},"1545":{"tf":1.7320508075688772},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1548":{"tf":1.4142135623730951},"1549":{"tf":1.4142135623730951},"1550":{"tf":1.7320508075688772},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.4142135623730951},"1554":{"tf":1.4142135623730951},"1555":{"tf":1.7320508075688772},"1556":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1558":{"tf":1.4142135623730951},"1559":{"tf":1.4142135623730951},"1560":{"tf":1.7320508075688772},"1561":{"tf":1.7320508075688772},"1562":{"tf":1.4142135623730951},"1563":{"tf":1.4142135623730951},"1564":{"tf":1.4142135623730951},"1565":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1567":{"tf":1.4142135623730951},"1568":{"tf":1.4142135623730951},"1569":{"tf":1.4142135623730951},"1570":{"tf":1.7320508075688772},"1571":{"tf":2.23606797749979},"1572":{"tf":2.23606797749979},"1573":{"tf":2.0},"1574":{"tf":1.7320508075688772},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":2.0},"1578":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1583":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1595":{"tf":1.0},"1607":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.4142135623730951},"1653":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"212":{"tf":1.0},"297":{"tf":1.0},"320":{"tf":1.0},"338":{"tf":1.0},"363":{"tf":1.7320508075688772},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"404":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.7320508075688772},"432":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"460":{"tf":1.4142135623730951},"464":{"tf":1.7320508075688772},"500":{"tf":2.23606797749979},"518":{"tf":1.0},"534":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.4142135623730951},"582":{"tf":1.0},"586":{"tf":1.7320508075688772},"625":{"tf":2.449489742783178},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"673":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":2.8284271247461903},"798":{"tf":2.0},"841":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1425":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1429":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1235":{"tf":1.0},"182":{"tf":1.4142135623730951}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1187":{"tf":1.0},"1206":{"tf":1.0},"1316":{"tf":1.0},"17":{"tf":1.0},"309":{"tf":1.0},"96":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"894":{"tf":1.4142135623730951}}}}}},"t":{"c":{"df":15,"docs":{"1154":{"tf":1.0},"1235":{"tf":1.0},"1361":{"tf":1.0},"1367":{"tf":1.0},"1507":{"tf":1.4142135623730951},"24":{"tf":1.0},"406":{"tf":1.0},"521":{"tf":1.0},"630":{"tf":1.0},"812":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"332":{"tf":1.0}},"u":{"df":3,"docs":{"130":{"tf":1.0},"139":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1118":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":2.0},"298":{"tf":1.0},"957":{"tf":1.0}},"t":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"d":{"df":2,"docs":{"1373":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"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":{"1370":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1280":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1362":{"tf":2.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1370":{"tf":1.7320508075688772},"1371":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1377":{"tf":1.0},"1393":{"tf":1.0},"367":{"tf":1.0},"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"805":{"tf":1.0},"916":{"tf":1.0},"983":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"1160":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1544":{"tf":1.0},"1592":{"tf":1.0},"189":{"tf":1.0},"37":{"tf":1.0},"404":{"tf":1.0},"634":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1194":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0}}}}}}}}},"i":{"d":{"df":41,"docs":{"1199":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":2.0},"132":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":2.6457513110645907},"1324":{"tf":2.449489742783178},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1327":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1329":{"tf":2.23606797749979},"133":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":2.449489742783178},"1336":{"tf":2.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.7320508075688772},"138":{"tf":1.7320508075688772},"140":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":3.0},"1592":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1595":{"tf":2.0},"1598":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.7320508075688772},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1328":{"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":{}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.0},"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":2.0},"1328":{"tf":1.7320508075688772}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1327":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1159":{"tf":1.0},"68":{"tf":1.0}}}},"v":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1207":{"tf":1.0},"1485":{"tf":1.0},"156":{"tf":1.0},"70":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":188,"docs":{"1008":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1173":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1210":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1280":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1397":{"tf":2.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":2.23606797749979},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1482":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1536":{"tf":1.4142135623730951},"155":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":1.0},"28":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"302":{"tf":1.0},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"435":{"tf":2.0},"462":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"54":{"tf":1.0},"581":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"624":{"tf":1.0},"670":{"tf":2.0},"699":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"75":{"tf":1.0},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"847":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":1.4142135623730951},"916":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"98":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"118":{"tf":1.0},"119":{"tf":1.0},"197":{"tf":2.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}},"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"302":{"tf":1.0}}}},"t":{"df":1,"docs":{"303":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":12,"docs":{"1032":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1458":{"tf":2.449489742783178},"1470":{"tf":2.0},"1474":{"tf":3.4641016151377544},"698":{"tf":1.7320508075688772},"701":{"tf":1.7320508075688772},"736":{"tf":2.449489742783178},"798":{"tf":2.23606797749979},"799":{"tf":1.7320508075688772},"881":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":24,"docs":{"1":{"tf":1.0},"1187":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1356":{"tf":1.4142135623730951},"137":{"tf":1.7320508075688772},"14":{"tf":1.0},"140":{"tf":1.4142135623730951},"17":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"867":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1236":{"tf":1.0},"1345":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"1529":{"tf":1.0},"332":{"tf":1.0},"533":{"tf":1.0},"58":{"tf":1.0},"760":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"989":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":79,"docs":{"1023":{"tf":1.0},"1033":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1180":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1279":{"tf":1.0},"1280":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1313":{"tf":1.0},"1382":{"tf":1.0},"1405":{"tf":1.0},"1412":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1498":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"1540":{"tf":1.0},"1544":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1586":{"tf":1.0},"159":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"183":{"tf":1.0},"195":{"tf":1.0},"203":{"tf":1.0},"295":{"tf":1.0},"309":{"tf":1.0},"329":{"tf":1.0},"338":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.4142135623730951},"503":{"tf":1.0},"516":{"tf":1.7320508075688772},"6":{"tf":1.0},"600":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.4142135623730951},"77":{"tf":1.0},"774":{"tf":1.4142135623730951},"930":{"tf":1.0},"959":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.4142135623730951}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1425":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":10,"docs":{"107":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"1612":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1241":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1331":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1329":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}},"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":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"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":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1226":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"1223":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"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":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1220":{"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":{"117":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1377":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1553":{"tf":1.0},"1564":{"tf":1.0},"1588":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"687":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"34":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1175":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1012":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":2.449489742783178},"1083":{"tf":1.0},"1327":{"tf":1.0},"1375":{"tf":1.0},"1627":{"tf":1.0},"297":{"tf":1.0},"304":{"tf":1.0}},"i":{"df":2,"docs":{"1371":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1024":{"tf":1.0},"1196":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1391":{"tf":1.0},"1584":{"tf":1.0},"984":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":18,"docs":{"1008":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1037":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":19,"docs":{"110":{"tf":1.0},"1182":{"tf":1.0},"1194":{"tf":1.0},"1251":{"tf":1.0},"1290":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1530":{"tf":1.4142135623730951},"157":{"tf":1.0},"311":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"515":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"750":{"tf":1.0},"78":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"689":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.0},"138":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1520":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"378":{"tf":1.0},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1622":{"tf":1.0},"451":{"tf":1.0},"453":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1302":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":50,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1279":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1315":{"tf":1.0},"1322":{"tf":1.7320508075688772},"133":{"tf":1.0},"1366":{"tf":2.0},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1520":{"tf":2.449489742783178},"1530":{"tf":1.0},"1536":{"tf":2.0},"1538":{"tf":1.0},"1548":{"tf":1.0},"1579":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1645":{"tf":1.0},"336":{"tf":1.4142135623730951},"350":{"tf":1.0},"369":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.4142135623730951},"414":{"tf":2.0},"453":{"tf":1.0},"642":{"tf":2.0},"689":{"tf":1.0},"743":{"tf":2.0},"78":{"tf":1.4142135623730951},"986":{"tf":1.0}}}},"s":{"df":7,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"304":{"tf":1.0},"405":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.4142135623730951},"761":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"626":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1651":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"582":{"tf":1.0},"588":{"tf":1.7320508075688772}}}}}}},"df":50,"docs":{"1192":{"tf":1.7320508075688772},"1223":{"tf":2.0},"1265":{"tf":2.0},"1271":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.449489742783178},"1479":{"tf":1.0},"1480":{"tf":1.0},"1651":{"tf":1.4142135623730951},"36":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":2.0},"542":{"tf":2.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"560":{"tf":1.7320508075688772},"561":{"tf":1.4142135623730951},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"570":{"tf":2.449489742783178},"572":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.7320508075688772},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1153":{"tf":1.0},"1156":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1598":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"857":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":9,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"137":{"tf":1.0},"822":{"tf":1.4142135623730951},"824":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"787":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":19,"docs":{"1075":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1312":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1595":{"tf":1.0},"1607":{"tf":1.0},"274":{"tf":1.0},"349":{"tf":1.0},"46":{"tf":1.0},"493":{"tf":1.4142135623730951},"729":{"tf":1.4142135623730951},"764":{"tf":1.0},"921":{"tf":1.0},"930":{"tf":1.0}}}}},"r":{"a":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1335":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":31,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1183":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1436":{"tf":1.0},"1459":{"tf":1.0},"1500":{"tf":3.0},"1503":{"tf":1.4142135623730951},"1511":{"tf":1.0},"205":{"tf":2.449489742783178},"262":{"tf":2.449489742783178},"350":{"tf":1.0},"448":{"tf":1.0},"460":{"tf":1.0},"544":{"tf":1.0},"577":{"tf":1.0},"609":{"tf":1.0},"66":{"tf":1.4142135623730951},"682":{"tf":1.0},"783":{"tf":1.0},"800":{"tf":1.0},"967":{"tf":1.0}}}},"df":6,"docs":{"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1382":{"tf":1.0},"531":{"tf":1.0},"630":{"tf":1.0},"756":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1101":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"95":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"763":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"{":{"a":{"df":1,"docs":{"1461":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"774":{"tf":1.0},"879":{"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":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1215":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1642":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1445":{"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":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1410":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1128":{"tf":1.0},"1401":{"tf":1.0},"819":{"tf":1.0},"848":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.0},"874":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1011":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"931":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1229":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":7,"docs":{"1251":{"tf":1.0},"507":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"749":{"tf":1.0},"762":{"tf":1.0},"794":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":81,"docs":{"1012":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1029":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1089":{"tf":1.0},"1144":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"120":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.0},"136":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"1535":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1547":{"tf":1.0},"1551":{"tf":1.7320508075688772},"1556":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"1571":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"159":{"tf":1.4142135623730951},"1594":{"tf":1.0},"160":{"tf":1.4142135623730951},"1655":{"tf":1.0},"212":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":2.0},"330":{"tf":1.4142135623730951},"376":{"tf":1.0},"40":{"tf":1.0},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"500":{"tf":1.0},"509":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.4142135623730951},"701":{"tf":1.0},"736":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"938":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1018":{"tf":1.0},"1198":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1352":{"tf":2.23606797749979},"1369":{"tf":1.0},"1377":{"tf":1.0},"1414":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1612":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"509":{"tf":1.7320508075688772},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"579":{"tf":1.0},"586":{"tf":1.0},"59":{"tf":1.4142135623730951},"676":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1226":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1022":{"tf":1.0},"1029":{"tf":1.0},"1075":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1625":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0}}},"s":{"df":47,"docs":{"1029":{"tf":1.0},"1084":{"tf":1.0},"1167":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1217":{"tf":1.0},"1246":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1412":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1529":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1594":{"tf":1.7320508075688772},"1597":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.4142135623730951},"195":{"tf":1.0},"253":{"tf":1.0},"274":{"tf":1.0},"372":{"tf":1.0},"391":{"tf":1.0},"447":{"tf":1.4142135623730951},"476":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.7320508075688772},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"597":{"tf":1.0},"681":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"880":{"tf":1.0},"899":{"tf":1.0},"980":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"47":{"tf":1.0}}}},"df":0,"docs":{}}}}},"q":{"df":1,"docs":{"1279":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":24,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1224":{"tf":1.7320508075688772},"1265":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":2.23606797749979},"1332":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1452":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1480":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"761":{"tf":2.449489742783178},"98":{"tf":1.0}}}}},"df":11,"docs":{"1012":{"tf":1.0},"1043":{"tf":1.0},"1101":{"tf":1.0},"1125":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1326":{"tf":1.0},"227":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1113":{"tf":1.0},"551":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"1485":{"tf":1.0},"36":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"700":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1223":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1254":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1461":{"tf":2.23606797749979},"1477":{"tf":1.4142135623730951},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.7320508075688772},"749":{"tf":2.23606797749979},"750":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"df":75,"docs":{"1215":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1497":{"tf":2.449489742783178},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.4142135623730951},"1503":{"tf":2.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1552":{"tf":1.0},"1566":{"tf":1.0},"1579":{"tf":1.0},"1582":{"tf":1.0},"1640":{"tf":1.0},"1642":{"tf":1.0},"1654":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"202":{"tf":2.6457513110645907},"203":{"tf":2.0},"204":{"tf":2.0},"205":{"tf":1.0},"206":{"tf":2.0},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"210":{"tf":2.0},"219":{"tf":1.0},"244":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.0},"744":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":28,"docs":{"1008":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1366":{"tf":2.23606797749979},"14":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1533":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"174":{"tf":2.8284271247461903},"175":{"tf":1.7320508075688772},"177":{"tf":1.0},"180":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":2.0},"367":{"tf":1.4142135623730951},"369":{"tf":2.449489742783178},"375":{"tf":1.0},"379":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"5":{"tf":1.0},"560":{"tf":1.0},"905":{"tf":1.4142135623730951},"980":{"tf":1.0},"985":{"tf":1.0}}}}}},"b":{"df":1,"docs":{"1387":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1416":{"tf":1.0},"848":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1369":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"583":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":7,"docs":{"1187":{"tf":1.0},"119":{"tf":1.0},"1290":{"tf":1.0},"1347":{"tf":1.0},"1384":{"tf":1.0},"1486":{"tf":1.0},"568":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1207":{"tf":1.0}}}}}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"144":{"tf":1.0}}}},"i":{"df":6,"docs":{"107":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1610":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1386":{"tf":1.0},"1388":{"tf":1.0}}}}}}}}},"df":147,"docs":{"1004":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1022":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1167":{"tf":1.0},"1171":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1209":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":2.449489742783178},"1388":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1552":{"tf":1.0},"1553":{"tf":1.0},"1562":{"tf":1.7320508075688772},"1566":{"tf":1.0},"157":{"tf":1.0},"1584":{"tf":1.0},"1586":{"tf":1.7320508075688772},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.7320508075688772},"1594":{"tf":1.4142135623730951},"1596":{"tf":1.0},"1597":{"tf":1.0},"1601":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1640":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.7320508075688772},"250":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.0},"292":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"358":{"tf":1.0},"386":{"tf":1.0},"412":{"tf":1.4142135623730951},"441":{"tf":1.0},"479":{"tf":2.0},"487":{"tf":1.0},"488":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.7320508075688772},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"66":{"tf":1.4142135623730951},"687":{"tf":1.0},"715":{"tf":2.0},"72":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"773":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"797":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":2.23606797749979},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"828":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.0},"839":{"tf":2.0},"840":{"tf":1.7320508075688772},"842":{"tf":1.7320508075688772},"845":{"tf":1.7320508075688772},"848":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"861":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.4142135623730951},"865":{"tf":2.449489742783178},"866":{"tf":1.4142135623730951},"867":{"tf":1.4142135623730951},"869":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":2.23606797749979},"890":{"tf":2.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"894":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"911":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"939":{"tf":1.7320508075688772},"945":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"951":{"tf":1.7320508075688772},"952":{"tf":1.7320508075688772},"957":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.7320508075688772},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1357":{"tf":1.0},"1358":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1498":{"tf":1.0},"203":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"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":{"202":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":216,"docs":{"1":{"tf":1.0},"1008":{"tf":2.0},"1033":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1157":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1235":{"tf":1.0},"1315":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":2.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1485":{"tf":2.449489742783178},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1497":{"tf":3.4641016151377544},"1498":{"tf":2.8284271247461903},"1499":{"tf":2.8284271247461903},"1500":{"tf":3.3166247903554},"1503":{"tf":1.4142135623730951},"1504":{"tf":1.7320508075688772},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":2.23606797749979},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1526":{"tf":2.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.4142135623730951},"1540":{"tf":1.4142135623730951},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1546":{"tf":1.4142135623730951},"1547":{"tf":1.4142135623730951},"1549":{"tf":1.0},"156":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1577":{"tf":1.0},"1601":{"tf":1.7320508075688772},"1602":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.4142135623730951},"161":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1613":{"tf":1.0},"1643":{"tf":1.0},"1653":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":2.23606797749979},"202":{"tf":3.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"207":{"tf":1.0},"212":{"tf":1.0},"217":{"tf":1.0},"219":{"tf":1.0},"232":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"247":{"tf":1.0},"251":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":2.23606797749979},"254":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"342":{"tf":1.0},"346":{"tf":1.4142135623730951},"350":{"tf":1.0},"360":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.7320508075688772},"379":{"tf":1.4142135623730951},"387":{"tf":1.7320508075688772},"394":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.7320508075688772},"414":{"tf":1.0},"416":{"tf":1.4142135623730951},"431":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"447":{"tf":1.7320508075688772},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"51":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":1.0},"600":{"tf":1.0},"611":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"634":{"tf":1.4142135623730951},"639":{"tf":1.7320508075688772},"642":{"tf":1.0},"644":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.0},"676":{"tf":1.4142135623730951},"681":{"tf":2.0},"688":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.4142135623730951},"699":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"72":{"tf":1.4142135623730951},"727":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.4142135623730951},"743":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.4142135623730951},"771":{"tf":1.0},"774":{"tf":1.0},"78":{"tf":2.0},"785":{"tf":1.7320508075688772},"789":{"tf":1.0},"796":{"tf":1.7320508075688772},"798":{"tf":1.0},"799":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.4142135623730951},"830":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"870":{"tf":2.449489742783178},"871":{"tf":2.23606797749979},"88":{"tf":1.0},"912":{"tf":1.4142135623730951},"914":{"tf":2.23606797749979},"916":{"tf":2.0},"921":{"tf":2.0},"924":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.4142135623730951},"933":{"tf":1.0},"95":{"tf":1.4142135623730951},"963":{"tf":1.0},"970":{"tf":1.7320508075688772},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":2.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"1387":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.0},"206":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"499":{"tf":1.4142135623730951},"597":{"tf":1.0},"697":{"tf":1.4142135623730951},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"771":{"tf":1.0},"797":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"994":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1418":{"tf":1.0},"1419":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1474":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1445":{"tf":2.0},"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"447":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1500":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":19,"docs":{"1145":{"tf":1.0},"1146":{"tf":2.0},"1188":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1571":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1647":{"tf":1.0},"350":{"tf":1.0},"362":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}}}}}}}}},"l":{"df":2,"docs":{"1349":{"tf":1.0},"989":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"1147":{"tf":1.0},"1151":{"tf":1.0},"1362":{"tf":1.0},"1372":{"tf":1.0},"396":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1220":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1410":{"tf":1.0},"898":{"tf":1.0},"909":{"tf":1.4142135623730951}}},"n":{"c":{"df":4,"docs":{"100":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951}},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"103":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"102":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"df":2,"docs":{"1346":{"tf":1.0},"926":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.0},"1300":{"tf":1.0},"1542":{"tf":1.0},"1577":{"tf":1.0},"357":{"tf":1.0},"433":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"313":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1077":{"tf":1.0},"1129":{"tf":1.0},"1136":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.4142135623730951},"1201":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1558":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"331":{"tf":1.7320508075688772},"46":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"887":{"tf":1.0}}}}}},"p":{"df":3,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"89":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1139":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1375":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":41,"docs":{"1":{"tf":1.0},"1070":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1210":{"tf":1.0},"1265":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.0},"1429":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1530":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.4142135623730951},"184":{"tf":1.0},"19":{"tf":1.4142135623730951},"210":{"tf":1.0},"216":{"tf":1.4142135623730951},"249":{"tf":1.0},"428":{"tf":1.0},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"51":{"tf":1.0},"543":{"tf":1.0},"592":{"tf":1.4142135623730951},"656":{"tf":1.0},"675":{"tf":1.0},"746":{"tf":1.0},"762":{"tf":1.0},"805":{"tf":1.4142135623730951},"827":{"tf":1.0},"839":{"tf":1.0},"845":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":8,"docs":{"116":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1395":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"751":{"tf":1.0},"8":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"1184":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0}}}},"x":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"121":{"tf":1.7320508075688772},"1215":{"tf":1.7320508075688772},"1235":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1198":{"tf":1.7320508075688772},"1352":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1601":{"tf":1.4142135623730951},"1606":{"tf":1.0},"320":{"tf":1.0},"336":{"tf":1.4142135623730951},"348":{"tf":1.0},"369":{"tf":1.7320508075688772},"845":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1097":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":13,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1149":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"13":{"tf":1.0},"140":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1521":{"tf":1.0},"368":{"tf":1.0},"46":{"tf":1.0},"565":{"tf":1.4142135623730951},"933":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1391":{"tf":1.0},"389":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"(":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"805":{"tf":1.0}}}},"n":{"df":23,"docs":{"1074":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1236":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":2.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.4142135623730951}}},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"df":5,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1273":{"tf":1.0},"32":{"tf":1.0},"986":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"892":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":18,"docs":{"1019":{"tf":1.0},"1070":{"tf":1.0},"1275":{"tf":1.0},"1413":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"313":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"52":{"tf":1.0},"592":{"tf":1.0},"624":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"950":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1220":{"tf":1.0},"389":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1267":{"tf":1.0}}}}}},"g":{"df":2,"docs":{"631":{"tf":1.0},"666":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"952":{"tf":1.0}}},"t":{"!":{"(":{"\"":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1329":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":56,"docs":{"1033":{"tf":2.449489742783178},"1070":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1127":{"tf":2.0},"1157":{"tf":1.0},"1161":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1197":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1379":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1547":{"tf":2.0},"1553":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1642":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1653":{"tf":1.0},"17":{"tf":1.0},"197":{"tf":1.7320508075688772},"312":{"tf":2.449489742783178},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"456":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"66":{"tf":1.0},"684":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"717":{"tf":1.0},"74":{"tf":1.4142135623730951},"740":{"tf":1.4142135623730951},"774":{"tf":1.0},"796":{"tf":1.4142135623730951},"797":{"tf":1.0},"799":{"tf":1.0},"814":{"tf":1.0},"828":{"tf":2.449489742783178},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0}}}},"df":4,"docs":{"1071":{"tf":1.0},"1597":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"136":{"tf":1.0}}}},"df":34,"docs":{"1033":{"tf":1.0},"1075":{"tf":1.0},"1349":{"tf":1.0},"1425":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.7320508075688772},"1546":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"1557":{"tf":1.4142135623730951},"1563":{"tf":1.7320508075688772},"1566":{"tf":1.4142135623730951},"1577":{"tf":1.0},"161":{"tf":1.4142135623730951},"183":{"tf":1.0},"212":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"464":{"tf":1.4142135623730951},"574":{"tf":1.0},"663":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"701":{"tf":1.4142135623730951},"798":{"tf":1.0},"799":{"tf":1.0},"920":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":4,"docs":{"1":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1380":{"tf":1.0},"220":{"tf":1.0}}}}},"p":{"=":{"<":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1197":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1521":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":61,"docs":{"105":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1260":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":2.23606797749979},"1352":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"409":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"43":{"tf":1.0},"47":{"tf":1.0},"563":{"tf":1.0},"630":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"931":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1017":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"1008":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"841":{"tf":1.0},"962":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"33":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":13,"docs":{"1001":{"tf":1.0},"1059":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"124":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1588":{"tf":1.0},"1592":{"tf":1.0},"1607":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1327":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1585":{"tf":1.0},"1588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"1387":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"2":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.0},"1449":{"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":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1618":{"tf":1.0},"1647":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1441":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":38,"docs":{"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":2.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1536":{"tf":1.0},"1543":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"180":{"tf":1.4142135623730951},"362":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"1145":{"tf":1.0},"1147":{"tf":1.0},"1532":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}},"l":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0}}}}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":68,"docs":{"100":{"tf":1.0},"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.0},"1203":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1313":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":2.23606797749979},"1325":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"1377":{"tf":1.0},"138":{"tf":1.0},"1388":{"tf":1.0},"1395":{"tf":1.0},"143":{"tf":1.0},"1477":{"tf":1.0},"1514":{"tf":1.0},"1533":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1632":{"tf":1.0},"176":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"325":{"tf":1.0},"354":{"tf":1.0},"36":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.0},"410":{"tf":1.0},"417":{"tf":1.0},"450":{"tf":1.0},"459":{"tf":1.0},"503":{"tf":1.0},"623":{"tf":1.0},"645":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"695":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"859":{"tf":1.0},"944":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0}},"i":{"df":6,"docs":{"1219":{"tf":1.0},"14":{"tf":1.0},"220":{"tf":1.0},"622":{"tf":1.0},"836":{"tf":1.0},"988":{"tf":1.0}}}}},"n":{"c":{"df":1,"docs":{"805":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":47,"docs":{"103":{"tf":1.0},"1184":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1239":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1381":{"tf":1.0},"143":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.7320508075688772},"1622":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1632":{"tf":1.7320508075688772},"1647":{"tf":1.0},"363":{"tf":1.0},"380":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"428":{"tf":1.0},"440":{"tf":2.0},"451":{"tf":1.0},"497":{"tf":1.4142135623730951},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"583":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.7320508075688772},"636":{"tf":1.0},"687":{"tf":1.0},"733":{"tf":1.4142135623730951},"763":{"tf":1.0},"765":{"tf":1.0},"788":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1213":{"tf":1.4142135623730951},"214":{"tf":1.0},"466":{"tf":1.0},"48":{"tf":1.0},"703":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.4142135623730951}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":14,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1077":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1140":{"tf":1.0},"1278":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"227":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.7320508075688772},"1240":{"tf":2.8284271247461903},"1241":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1194":{"tf":1.0}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}}},"b":{"df":1,"docs":{"1395":{"tf":1.0}},"p":{"df":2,"docs":{"1156":{"tf":1.0},"825":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"182":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":2,"docs":{"1008":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"534":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":77,"docs":{"1004":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1009":{"tf":1.0},"1017":{"tf":1.0},"1043":{"tf":1.0},"1051":{"tf":1.0},"1066":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1087":{"tf":1.7320508075688772},"1098":{"tf":1.0},"1103":{"tf":1.0},"1124":{"tf":1.0},"1126":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1135":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1278":{"tf":1.0},"1312":{"tf":1.0},"1367":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1479":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1519":{"tf":1.0},"1540":{"tf":1.0},"1546":{"tf":1.0},"1625":{"tf":1.0},"186":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"212":{"tf":1.0},"219":{"tf":1.7320508075688772},"227":{"tf":1.0},"235":{"tf":2.23606797749979},"249":{"tf":1.0},"250":{"tf":1.0},"311":{"tf":1.7320508075688772},"312":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"332":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.0},"50":{"tf":1.0},"521":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"808":{"tf":1.0},"835":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.4142135623730951},"919":{"tf":1.0},"920":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"934":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0}}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1455":{"tf":1.0},"1464":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1455":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1210":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"363":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"967":{"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":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"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":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1350":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1622":{"tf":1.0},"444":{"tf":1.4142135623730951}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"440":{"tf":1.0},"454":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1622":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1086":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"544":{"tf":1.0},"556":{"tf":1.0},"626":{"tf":1.0},"802":{"tf":1.0},"988":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"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":{"508":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"339":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"1270":{"tf":1.0},"1622":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"339":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{"339":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"533":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1008":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0},"272":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":3,"docs":{"13":{"tf":1.0},"804":{"tf":1.0},"805":{"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":{},"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":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1233":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":4,"docs":{"1233":{"tf":1.4142135623730951},"15":{"tf":1.0},"163":{"tf":1.0},"99":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1045":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":6,"docs":{"1250":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":1.0},"2":{"tf":1.4142135623730951},"515":{"tf":1.4142135623730951},"551":{"tf":1.0}},"n":{"df":1,"docs":{"1501":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"110":{"tf":1.0},"1235":{"tf":1.0},"1458":{"tf":1.0},"1483":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"449":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"956":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"816":{"tf":1.0},"849":{"tf":1.0},"935":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"955":{"tf":1.0},"956":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"807":{"tf":1.0}}},"df":0,"docs":{}}},"df":17,"docs":{"1":{"tf":1.0},"1061":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1377":{"tf":1.0},"1487":{"tf":1.0},"1630":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"8":{"tf":1.4142135623730951},"803":{"tf":2.23606797749979},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"89":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":3,"docs":{"123":{"tf":1.0},"1487":{"tf":1.0},"991":{"tf":1.0}}},"o":{"d":{"df":5,"docs":{"1047":{"tf":1.0},"1209":{"tf":1.0},"8":{"tf":1.0},"967":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"1140":{"tf":1.0},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1115":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.4142135623730951}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1133":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1201":{"tf":1.0},"586":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":2,"docs":{"1367":{"tf":1.0},"1519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1195":{"tf":1.0},"439":{"tf":1.0},"548":{"tf":1.0},"673":{"tf":1.0},"703":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":4,"docs":{"27":{"tf":1.0},"516":{"tf":1.0},"760":{"tf":1.4142135623730951},"815":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1062":{"tf":1.0},"1410":{"tf":1.0},"663":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1162":{"tf":1.4142135623730951},"220":{"tf":1.0},"550":{"tf":1.0},"836":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":4,"docs":{"1037":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"17":{"tf":1.0},"997":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1243":{"tf":1.0}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"762":{"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":{"1345":{"tf":1.7320508075688772},"762":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"794":{"tf":1.0}}},"df":0,"docs":{}}},"df":126,"docs":{"1008":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1475":{"tf":1.0},"1486":{"tf":1.0},"1512":{"tf":1.0},"1614":{"tf":1.0},"1615":{"tf":2.0},"1616":{"tf":1.0},"1617":{"tf":1.0},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"163":{"tf":1.0},"1630":{"tf":1.0},"1631":{"tf":1.0},"1632":{"tf":1.0},"1633":{"tf":1.0},"1634":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"1639":{"tf":1.0},"164":{"tf":1.0},"1640":{"tf":1.0},"1641":{"tf":1.0},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"1646":{"tf":1.0},"1647":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"1652":{"tf":1.0},"1653":{"tf":1.0},"1654":{"tf":1.0},"1655":{"tf":1.0},"1656":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"34":{"tf":1.0},"367":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"856":{"tf":1.0},"882":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1068":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"537":{"tf":1.0}}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"921":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":61,"docs":{"1142":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1215":{"tf":1.0},"1281":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"398":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"413":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"432":{"tf":1.4142135623730951},"469":{"tf":1.0},"472":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"590":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.7320508075688772},"7":{"tf":1.4142135623730951},"78":{"tf":1.0},"821":{"tf":1.0},"85":{"tf":1.0},"853":{"tf":1.0},"877":{"tf":1.0}},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":18,"docs":{"103":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":5,"docs":{"409":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}}}}}}}}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":11,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"409":{"tf":1.0},"551":{"tf":1.4142135623730951},"570":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"617":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":3,"docs":{"409":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"515":{"tf":1.0},"516":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":12,"docs":{"1250":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.0},"408":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"620":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"1621":{"tf":1.0},"406":{"tf":1.0},"436":{"tf":1.0},"999":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":5,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"@":{"0":{".":{"7":{".":{"0":{"df":1,"docs":{"1623":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1635":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":6,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.0},"1061":{"tf":1.0},"116":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":10,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"1187":{"tf":1.0},"122":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1384":{"tf":1.0},"1514":{"tf":1.4142135623730951},"822":{"tf":1.7320508075688772},"875":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"532":{"tf":1.0}}}}},"n":{"d":{"df":2,"docs":{"34":{"tf":1.0},"75":{"tf":1.0}},"l":{"df":42,"docs":{"1032":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1094":{"tf":1.0},"1191":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1244":{"tf":1.7320508075688772},"1246":{"tf":1.4142135623730951},"132":{"tf":1.0},"1329":{"tf":1.0},"1331":{"tf":1.4142135623730951},"137":{"tf":1.0},"1385":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1424":{"tf":1.4142135623730951},"1426":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1474":{"tf":2.0},"1623":{"tf":1.0},"305":{"tf":1.0},"32":{"tf":1.0},"363":{"tf":1.4142135623730951},"439":{"tf":1.0},"464":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"586":{"tf":2.0},"618":{"tf":1.0},"619":{"tf":1.0},"625":{"tf":1.7320508075688772},"673":{"tf":1.0},"701":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"798":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":7,"docs":{"1192":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"544":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"916":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"0":{"tf":1.0},"29":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"305":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":11,"docs":{"104":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1392":{"tf":1.0},"90":{"tf":1.4142135623730951}}}}}},"r":{"d":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1380":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"98":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1131":{"tf":1.0},"989":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"985":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1372":{"tf":1.0}}}}}},"df":1,"docs":{"1365":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1086":{"tf":1.0}}},"2":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1607":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"636":{"tf":1.0},"734":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":99,"docs":{"1001":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.0},"1036":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1080":{"tf":3.1622776601683795},"1084":{"tf":1.7320508075688772},"1129":{"tf":2.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1209":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1302":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.7320508075688772},"1387":{"tf":2.449489742783178},"1388":{"tf":1.0},"1395":{"tf":1.0},"1413":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1597":{"tf":1.0},"1602":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.4142135623730951},"20":{"tf":1.0},"235":{"tf":1.4142135623730951},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.7320508075688772},"292":{"tf":1.4142135623730951},"295":{"tf":2.23606797749979},"313":{"tf":1.0},"354":{"tf":1.4142135623730951},"410":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"461":{"tf":1.4142135623730951},"478":{"tf":1.0},"498":{"tf":2.449489742783178},"501":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"598":{"tf":1.0},"61":{"tf":1.0},"611":{"tf":1.0},"615":{"tf":2.23606797749979},"623":{"tf":1.0},"636":{"tf":1.0},"66":{"tf":1.7320508075688772},"67":{"tf":1.0},"679":{"tf":1.0},"681":{"tf":1.0},"687":{"tf":1.0},"697":{"tf":1.0},"714":{"tf":1.0},"734":{"tf":2.0},"737":{"tf":1.4142135623730951},"772":{"tf":1.0},"785":{"tf":1.0},"822":{"tf":1.4142135623730951},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"859":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"899":{"tf":2.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"b":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"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":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1317":{"tf":1.0},"1357":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"380":{"tf":1.4142135623730951},"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"1622":{"tf":1.0},"406":{"tf":1.0},"410":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"498":{"tf":1.0},"615":{"tf":1.0},"623":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1302":{"tf":1.4142135623730951},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"325":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"298":{"tf":1.0},"914":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"812":{"tf":1.0},"823":{"tf":1.0},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":51,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.0},"1181":{"tf":1.0},"1192":{"tf":1.4142135623730951},"128":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1367":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1519":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1522":{"tf":2.449489742783178},"1525":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.0},"249":{"tf":1.4142135623730951},"361":{"tf":2.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":2.23606797749979},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"812":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.0},"830":{"tf":1.0},"835":{"tf":1.0},"839":{"tf":1.7320508075688772},"856":{"tf":1.0},"857":{"tf":1.0},"859":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"915":{"tf":1.0},"941":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1046":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":6,"docs":{"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.4142135623730951},"450":{"tf":1.0},"686":{"tf":1.0},"843":{"tf":1.4142135623730951}}}}}},"c":{":":{"8":{"0":{"8":{"8":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1367":{"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":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"749":{"tf":1.0}}}},"df":0,"docs":{}}},"df":22,"docs":{"1039":{"tf":1.0},"1223":{"tf":1.0},"1387":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"265":{"tf":1.0},"345":{"tf":1.0},"428":{"tf":1.0},"525":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"583":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.0},"656":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"967":{"tf":1.0}}}},"p":{"df":19,"docs":{"1008":{"tf":1.0},"1137":{"tf":1.0},"1237":{"tf":1.0},"1254":{"tf":1.0},"1301":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"171":{"tf":1.0},"186":{"tf":2.8284271247461903},"822":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"1256":{"tf":1.4142135623730951},"1265":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1388":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"508":{"tf":2.0},"6":{"tf":1.0},"7":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"807":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":2,"docs":{"1274":{"tf":1.0},"1302":{"tf":1.0}}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1408":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1004":{"tf":1.0},"1236":{"tf":1.0},"1256":{"tf":1.0},"1302":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1371":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1522":{"tf":1.0},"248":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"451":{"tf":1.0},"53":{"tf":1.4142135623730951},"687":{"tf":1.0},"756":{"tf":1.0},"877":{"tf":1.4142135623730951},"881":{"tf":1.0},"928":{"tf":1.0},"967":{"tf":1.0}}},"o":{"df":2,"docs":{"1280":{"tf":1.4142135623730951},"1300":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1141":{"tf":1.0}}}}}}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"615":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"197":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"54":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"812":{"tf":1.0}},"i":{"df":3,"docs":{"1169":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"1042":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1125":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1416":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.4142135623730951},"33":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1061":{"tf":1.0},"1376":{"tf":1.0},"1481":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1487":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"667":{"tf":1.4142135623730951},"800":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"368":{"tf":1.0},"380":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"1074":{"tf":1.4142135623730951},"1202":{"tf":1.0}},"i":{"df":12,"docs":{"1079":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1089":{"tf":1.0},"129":{"tf":1.0},"1405":{"tf":1.0},"267":{"tf":1.7320508075688772},"70":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.4142135623730951},"965":{"tf":1.0},"97":{"tf":1.0},"997":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"1008":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"121":{"tf":1.0},"1237":{"tf":1.0},"1346":{"tf":1.0},"338":{"tf":1.0},"940":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"215":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"1236":{"tf":2.6457513110645907}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":10,"docs":{"1349":{"tf":2.23606797749979},"1350":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1022":{"tf":1.0},"1059":{"tf":1.0},"314":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"1591":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"104":{"tf":1.0},"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}}}}},"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":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"384":{"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":{}},"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1436":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"361":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1519":{"tf":1.0},"1520":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"1368":{"tf":1.7320508075688772},"387":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"750":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1517":{"tf":1.0},"1520":{"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":64,"docs":{"1013":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1047":{"tf":1.0},"1103":{"tf":1.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1434":{"tf":1.4142135623730951},"1436":{"tf":1.7320508075688772},"1450":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1459":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1650":{"tf":1.4142135623730951},"177":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"388":{"tf":1.0},"409":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.0},"552":{"tf":1.4142135623730951},"562":{"tf":2.23606797749979},"563":{"tf":1.7320508075688772},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.7320508075688772},"567":{"tf":2.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.0},"617":{"tf":1.4142135623730951},"626":{"tf":1.4142135623730951},"73":{"tf":1.0},"809":{"tf":1.7320508075688772},"817":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1458":{"tf":2.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":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"119":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"224":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1178":{"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"107":{"tf":1.0},"1486":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"224":{"tf":1.0}}}}},"o":{"df":1,"docs":{"841":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"170":{"tf":1.0},"633":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"162":{"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":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"?":{"df":0,"docs":{},"s":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"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":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"817":{"tf":1.0},"819":{"tf":1.0},"824":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"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":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"913":{"tf":1.0},"915":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"936":{"tf":1.0},"942":{"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":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"817":{"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":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"248":{"tf":1.0},"817":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"858":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"886":{"tf":1.0},"915":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1214":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"817":{"tf":1.0},"820":{"tf":1.0},"971":{"tf":1.0},"972":{"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":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"960":{"tf":1.0},"966":{"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"884":{"tf":1.0},"899":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"886":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"955":{"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":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1174":{"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":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"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":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1175":{"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":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1525":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1525":{"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":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1157":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"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":{}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"4":{"5":{"6":{"df":1,"docs":{"1336":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"1":{"2":{"3":{"df":2,"docs":{"1321":{"tf":1.4142135623730951},"1602":{"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":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"840":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1303":{"tf":1.0},"1310":{"tf":2.0},"1317":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1335":{"tf":1.0},"1487":{"tf":1.0},"1586":{"tf":1.0},"1602":{"tf":1.0},"220":{"tf":1.7320508075688772},"222":{"tf":1.7320508075688772},"225":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"687":{"tf":1.4142135623730951},"74":{"tf":1.0},"829":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":2.23606797749979},"837":{"tf":1.7320508075688772},"844":{"tf":1.0},"849":{"tf":1.7320508075688772},"850":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.7320508075688772},"220":{"tf":1.0},"225":{"tf":1.0},"424":{"tf":1.7320508075688772},"451":{"tf":1.0},"652":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"829":{"tf":1.0},"834":{"tf":1.4142135623730951},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"844":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":2,"docs":{"1279":{"tf":1.0},"265":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1537":{"tf":1.0},"1572":{"tf":1.0}}},"n":{"a":{"df":1,"docs":{"989":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"342":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"1566":{"tf":1.0},"210":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1130":{"tf":1.0},"1640":{"tf":1.0}}}}},"v":{"1":{"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":13,"docs":{"1062":{"tf":1.0},"339":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"717":{"tf":1.0},"774":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0}}}}}}},"=":{"<":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1197":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":137,"docs":{"1001":{"tf":1.0},"1008":{"tf":2.23606797749979},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1046":{"tf":1.0},"1072":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1178":{"tf":1.0},"1184":{"tf":1.0},"1188":{"tf":1.0},"1201":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"126":{"tf":1.0},"1276":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1306":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1321":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"1380":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1563":{"tf":1.4142135623730951},"1566":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1647":{"tf":1.7320508075688772},"197":{"tf":1.4142135623730951},"210":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"311":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"339":{"tf":1.4142135623730951},"342":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.4142135623730951},"350":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"496":{"tf":1.4142135623730951},"499":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"534":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"601":{"tf":1.0},"61":{"tf":1.0},"610":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"684":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":1.4142135623730951},"695":{"tf":1.0},"732":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"775":{"tf":1.0},"78":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"797":{"tf":1.0},"800":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"892":{"tf":1.4142135623730951},"915":{"tf":1.0},"930":{"tf":1.7320508075688772},"936":{"tf":1.0},"939":{"tf":1.0},"947":{"tf":1.0},"95":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"977":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}},"e":{"a":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"c":{"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"841":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1016":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":66,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1096":{"tf":1.0},"1144":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"14":{"tf":1.0},"1413":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"1630":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"273":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"32":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"605":{"tf":1.0},"67":{"tf":1.0},"779":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.7320508075688772},"815":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"843":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"977":{"tf":1.4142135623730951},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1521":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.4142135623730951}},"i":{"df":26,"docs":{"1070":{"tf":1.0},"1156":{"tf":1.0},"1206":{"tf":1.0},"126":{"tf":1.0},"1326":{"tf":1.0},"1380":{"tf":1.0},"1521":{"tf":1.0},"1601":{"tf":1.0},"1629":{"tf":1.0},"223":{"tf":1.0},"309":{"tf":1.0},"339":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":2.0},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"843":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.7320508075688772},"914":{"tf":1.0},"962":{"tf":1.4142135623730951},"994":{"tf":1.0},"996":{"tf":1.0}}}}}}}},"}":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{},"v":{"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":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":1.7320508075688772}}}}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":9,"docs":{"1198":{"tf":1.0},"1203":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1414":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"319":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"153":{"tf":1.0},"987":{"tf":1.4142135623730951},"992":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1497":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1504":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"100":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0},"1210":{"tf":1.0},"1515":{"tf":1.0},"40":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"69":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.7320508075688772},"997":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1001":{"tf":1.0},"1203":{"tf":1.0}}}}}}},"l":{"df":3,"docs":{"1084":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1328":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":26,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1064":{"tf":1.0},"1100":{"tf":1.0},"1143":{"tf":1.0},"1150":{"tf":1.0},"1233":{"tf":1.0},"1328":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0},"32":{"tf":1.4142135623730951},"34":{"tf":1.0},"4":{"tf":1.4142135623730951},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"993":{"tf":1.0}}}}}}},"i":{"c":{"df":3,"docs":{"1013":{"tf":1.4142135623730951},"1377":{"tf":1.0},"141":{"tf":1.0}}},"df":1,"docs":{"1199":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":198,"docs":{"1004":{"tf":1.4142135623730951},"1008":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1104":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1215":{"tf":3.3166247903554},"1217":{"tf":1.7320508075688772},"1220":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1226":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1257":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1264":{"tf":1.4142135623730951},"1265":{"tf":2.0},"1277":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.7320508075688772},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1438":{"tf":2.23606797749979},"1439":{"tf":2.0},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1447":{"tf":1.0},"1449":{"tf":2.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1458":{"tf":2.23606797749979},"1459":{"tf":1.7320508075688772},"146":{"tf":1.0},"1461":{"tf":2.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1468":{"tf":2.23606797749979},"1470":{"tf":2.0},"1472":{"tf":2.449489742783178},"1474":{"tf":1.7320508075688772},"1481":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"160":{"tf":1.0},"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.7320508075688772},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"469":{"tf":1.0},"472":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.7320508075688772},"507":{"tf":1.0},"508":{"tf":1.7320508075688772},"510":{"tf":2.0},"515":{"tf":1.4142135623730951},"516":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.7320508075688772},"526":{"tf":2.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"554":{"tf":2.0},"560":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"593":{"tf":1.0},"615":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"623":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"634":{"tf":1.7320508075688772},"636":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"668":{"tf":1.7320508075688772},"672":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"705":{"tf":1.0},"708":{"tf":1.4142135623730951},"721":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":1.7320508075688772},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"760":{"tf":1.0},"761":{"tf":2.0},"762":{"tf":1.4142135623730951},"763":{"tf":1.0},"767":{"tf":1.4142135623730951},"78":{"tf":1.0},"781":{"tf":1.0},"789":{"tf":1.0},"794":{"tf":1.0},"800":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"805":{"tf":1.0},"821":{"tf":1.7320508075688772},"852":{"tf":1.4142135623730951},"853":{"tf":1.0},"877":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"905":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1075":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"19":{"tf":1.0}}}}}}},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"43":{"tf":1.0},"756":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1093":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":74,"docs":{"1004":{"tf":1.0},"1010":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1089":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1159":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1252":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1331":{"tf":1.0},"1334":{"tf":1.0},"1343":{"tf":1.0},"1362":{"tf":1.0},"1367":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"1515":{"tf":1.0},"1572":{"tf":1.0},"1647":{"tf":1.0},"165":{"tf":1.0},"193":{"tf":1.0},"20":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"314":{"tf":1.0},"316":{"tf":1.0},"367":{"tf":1.0},"394":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"466":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"55":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"717":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.4142135623730951},"896":{"tf":1.0},"970":{"tf":1.0},"986":{"tf":1.4142135623730951},"994":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"1015":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1420":{"tf":1.0},"1575":{"tf":1.0},"51":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"791":{"tf":1.0},"793":{"tf":1.0},"843":{"tf":1.4142135623730951}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1389":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1564":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1110":{"tf":1.0},"1640":{"tf":1.0},"326":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":2,"docs":{"260":{"tf":1.0},"380":{"tf":1.0}}}}}}}}},"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":{"305":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"104":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1238":{"tf":1.0},"127":{"tf":1.0},"1312":{"tf":1.0},"133":{"tf":1.0},"267":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"940":{"tf":1.0},"998":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1476":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}},"i":{"c":{"df":4,"docs":{"1208":{"tf":1.0},"250":{"tf":1.0},"863":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":6,"docs":{"1037":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"220":{"tf":1.0},"59":{"tf":1.0},"836":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1105":{"tf":1.0},"64":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"372":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"441":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"675":{"tf":1.0},"676":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"441":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1220":{"tf":1.0}}},"df":31,"docs":{"1049":{"tf":1.0},"1062":{"tf":1.0},"1363":{"tf":1.7320508075688772},"1364":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1368":{"tf":1.0},"1404":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1634":{"tf":1.0},"374":{"tf":1.0},"387":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"442":{"tf":1.4142135623730951},"444":{"tf":1.4142135623730951},"508":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"751":{"tf":1.0},"78":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"967":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":22,"docs":{"1077":{"tf":1.0},"1461":{"tf":1.0},"1484":{"tf":1.0},"1489":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1506":{"tf":1.0},"187":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"444":{"tf":1.0},"55":{"tf":1.0},"678":{"tf":1.0},"74":{"tf":1.0},"816":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":2.0},"844":{"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":16,"docs":{"1002":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1203":{"tf":1.0},"309":{"tf":1.4142135623730951},"325":{"tf":1.0},"810":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"30":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1154":{"tf":1.0},"1168":{"tf":1.4142135623730951},"385":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"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":2,"docs":{"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1240":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.0},"1488":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.4142135623730951},"178":{"tf":1.0},"183":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.0},"209":{"tf":1.0},"217":{"tf":1.0},"551":{"tf":1.4142135623730951},"660":{"tf":1.0},"83":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1215":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1429":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1503":{"tf":1.0},"1542":{"tf":1.0},"1558":{"tf":1.0},"178":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"209":{"tf":1.0},"217":{"tf":1.4142135623730951},"277":{"tf":1.0},"282":{"tf":1.0},"341":{"tf":1.0},"360":{"tf":1.4142135623730951},"365":{"tf":1.0},"466":{"tf":1.0},"468":{"tf":1.4142135623730951},"50":{"tf":1.0},"501":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.4142135623730951},"555":{"tf":1.0},"572":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"62":{"tf":1.0},"660":{"tf":1.0},"704":{"tf":1.4142135623730951},"737":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.0},"928":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1311":{"tf":1.0},"25":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1418":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1350":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":22,"docs":{"1237":{"tf":1.0},"1241":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1329":{"tf":1.0},"1403":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1589":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"278":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1022":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"i":{"d":{"df":12,"docs":{"105":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"14":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"41":{"tf":1.0},"513":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"6":{"tf":1.0},"755":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"1072":{"tf":1.0},"53":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1146":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"453":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"689":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":157,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"12":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1240":{"tf":1.4142135623730951},"1252":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"146":{"tf":1.0},"1475":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":2.0},"162":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1635":{"tf":1.4142135623730951},"164":{"tf":2.0},"1649":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.4142135623730951},"169":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.0},"183":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.7320508075688772},"399":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.7320508075688772},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.4142135623730951},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"504":{"tf":1.7320508075688772},"517":{"tf":2.0},"523":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"539":{"tf":1.7320508075688772},"591":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.7320508075688772},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"633":{"tf":2.23606797749979},"634":{"tf":1.7320508075688772},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.7320508075688772},"659":{"tf":1.7320508075688772},"660":{"tf":1.7320508075688772},"661":{"tf":1.7320508075688772},"662":{"tf":1.0},"663":{"tf":1.7320508075688772},"664":{"tf":1.0},"665":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"756":{"tf":2.23606797749979},"766":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"79":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.7320508075688772},"85":{"tf":1.7320508075688772},"87":{"tf":1.7320508075688772},"920":{"tf":1.0}}},"n":{"c":{"df":21,"docs":{"1632":{"tf":1.0},"301":{"tf":1.4142135623730951},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"469":{"tf":1.0},"544":{"tf":1.0},"546":{"tf":1.0},"550":{"tf":1.0},"557":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"621":{"tf":1.0},"624":{"tf":1.0},"637":{"tf":1.0},"667":{"tf":1.0},"705":{"tf":1.0},"749":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"801":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1447":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":39,"docs":{"1059":{"tf":1.0},"1144":{"tf":1.0},"1275":{"tf":1.0},"1277":{"tf":1.0},"1395":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1529":{"tf":1.0},"153":{"tf":1.0},"1535":{"tf":1.0},"1601":{"tf":1.0},"1632":{"tf":1.0},"175":{"tf":1.0},"202":{"tf":1.4142135623730951},"247":{"tf":1.0},"301":{"tf":1.0},"311":{"tf":1.0},"330":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"503":{"tf":1.0},"512":{"tf":1.7320508075688772},"518":{"tf":1.0},"520":{"tf":1.7320508075688772},"605":{"tf":1.0},"624":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"754":{"tf":1.7320508075688772},"760":{"tf":1.4142135623730951},"761":{"tf":1.4142135623730951},"764":{"tf":1.7320508075688772},"779":{"tf":1.0},"788":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"120":{"tf":1.0},"1204":{"tf":1.0},"846":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"386":{"tf":1.0},"396":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"697":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":5,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"825":{"tf":1.0}},"r":{"df":131,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1014":{"tf":1.0},"1109":{"tf":1.0},"1125":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.0},"1199":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"124":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1299":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1327":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"14":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1476":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1648":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.4142135623730951},"332":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"354":{"tf":1.0},"36":{"tf":1.0},"367":{"tf":1.0},"37":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":1.0},"398":{"tf":1.0},"40":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"435":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"502":{"tf":1.4142135623730951},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"52":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"563":{"tf":1.0},"565":{"tf":1.0},"589":{"tf":1.4142135623730951},"598":{"tf":1.0},"626":{"tf":1.4142135623730951},"627":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.4142135623730951},"67":{"tf":1.0},"670":{"tf":1.0},"679":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"7":{"tf":1.0},"700":{"tf":1.4142135623730951},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.7320508075688772},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"772":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"810":{"tf":1.4142135623730951},"850":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"954":{"tf":1.0},"96":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"993":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"l":{"df":1,"docs":{"143":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1481":{"tf":1.0},"863":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1209":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1219":{"tf":1.0},"1258":{"tf":1.0},"1271":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1194":{"tf":1.0},"1195":{"tf":1.0},"1487":{"tf":1.7320508075688772},"17":{"tf":1.0},"27":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"544":{"tf":1.0},"547":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0},"579":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1359":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1298":{"tf":1.0},"815":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}}},"f":{"a":{"c":{"df":12,"docs":{"1482":{"tf":1.0},"185":{"tf":1.0},"436":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"594":{"tf":1.0},"671":{"tf":1.0},"768":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"b":{"df":2,"docs":{"1339":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"107":{"tf":1.0},"1203":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1486":{"tf":1.0},"1630":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"308":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"1139":{"tf":1.0},"1275":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":30,"docs":{"1109":{"tf":1.0},"121":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1300":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.0},"1360":{"tf":1.0},"137":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"986":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"939":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"41":{"tf":1.0}},"t":{"df":16,"docs":{"0":{"tf":1.0},"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},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1172":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":35,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"107":{"tf":1.0},"1172":{"tf":1.0},"1223":{"tf":1.0},"1244":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1329":{"tf":1.0},"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1435":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1540":{"tf":2.0},"1543":{"tf":1.7320508075688772},"1547":{"tf":1.7320508075688772},"1553":{"tf":1.7320508075688772},"1561":{"tf":2.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1610":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.4142135623730951},"289":{"tf":1.0},"295":{"tf":1.0},"460":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.0},"799":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":7,"docs":{"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"821":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1192":{"tf":1.0}}}},"o":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1156":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1470":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1403":{"tf":2.23606797749979},"1404":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1426":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1156":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"266":{"tf":1.0},"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"785":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1005":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1033":{"tf":1.0}},"e":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"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":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"773":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"727":{"tf":1.0}}}}}},"df":24,"docs":{"1005":{"tf":1.0},"1217":{"tf":2.449489742783178},"1455":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":2.0},"1474":{"tf":1.4142135623730951},"1642":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.4142135623730951},"667":{"tf":1.0},"668":{"tf":1.0},"714":{"tf":1.4142135623730951},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.4142135623730951},"736":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"855":{"tf":1.4142135623730951},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1622":{"tf":1.0},"440":{"tf":1.0},"443":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"330":{"tf":1.0},"396":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"459":{"tf":1.0},"534":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0}},"l":{"df":4,"docs":{"1214":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1243":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"855":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1331":{"tf":1.0}},"u":{"df":15,"docs":{"1012":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1239":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"158":{"tf":1.4142135623730951},"163":{"tf":1.0},"1653":{"tf":1.4142135623730951},"429":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"666":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":6,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0},"133":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"985":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1432":{"tf":1.7320508075688772},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.4142135623730951},"500":{"tf":1.0},"598":{"tf":1.4142135623730951},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":6,"docs":{"124":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"436":{"tf":1.0},"580":{"tf":1.0},"671":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"df":1,"docs":{"1607":{"tf":1.0}}},"df":29,"docs":{"1157":{"tf":2.23606797749979},"1166":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1175":{"tf":1.0},"1388":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1588":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"946":{"tf":1.4142135623730951},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.6457513110645907},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"957":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"951":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}},"r":{"df":4,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.7320508075688772},"19":{"tf":1.0},"994":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"j":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"146":{"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":{}}}}},"a":{"c":{"df":597,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.4142135623730951},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":3.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1039":{"tf":1.0},"1046":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.4142135623730951},"106":{"tf":1.0},"1062":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":2.6457513110645907},"1079":{"tf":2.0},"1087":{"tf":1.0},"109":{"tf":1.0},"1097":{"tf":1.0},"11":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1104":{"tf":1.0},"1106":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1148":{"tf":1.0},"1150":{"tf":2.23606797749979},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1171":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.7320508075688772},"1205":{"tf":1.0},"1209":{"tf":1.0},"121":{"tf":1.0},"1212":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1226":{"tf":1.7320508075688772},"123":{"tf":1.0},"1236":{"tf":1.0},"1241":{"tf":1.7320508075688772},"1249":{"tf":1.7320508075688772},"1250":{"tf":1.0},"1252":{"tf":2.449489742783178},"1256":{"tf":1.4142135623730951},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1267":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1275":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":2.6457513110645907},"1278":{"tf":1.4142135623730951},"1279":{"tf":2.449489742783178},"1281":{"tf":1.0},"1283":{"tf":2.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1299":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":2.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1385":{"tf":2.23606797749979},"1387":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1389":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1398":{"tf":2.449489742783178},"14":{"tf":1.0},"1400":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1403":{"tf":2.6457513110645907},"1404":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1406":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":2.6457513110645907},"1412":{"tf":1.4142135623730951},"1413":{"tf":2.8284271247461903},"1414":{"tf":2.449489742783178},"1416":{"tf":1.4142135623730951},"1418":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1423":{"tf":3.1622776601683795},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1435":{"tf":2.23606797749979},"1438":{"tf":2.0},"1439":{"tf":2.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"146":{"tf":1.0},"1461":{"tf":2.8284271247461903},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.7320508075688772},"1477":{"tf":1.0},"1478":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":2.0},"1485":{"tf":2.6457513110645907},"1486":{"tf":2.8284271247461903},"1487":{"tf":3.872983346207417},"1488":{"tf":2.0},"1489":{"tf":2.0},"149":{"tf":1.0},"1491":{"tf":2.0},"1493":{"tf":2.0},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":3.1622776601683795},"1498":{"tf":2.6457513110645907},"1499":{"tf":2.449489742783178},"1500":{"tf":2.23606797749979},"1501":{"tf":2.6457513110645907},"1503":{"tf":2.449489742783178},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":1.0},"1525":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1532":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1542":{"tf":2.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"155":{"tf":1.0},"1552":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"156":{"tf":1.0},"1566":{"tf":1.0},"1575":{"tf":1.4142135623730951},"1576":{"tf":1.4142135623730951},"1577":{"tf":1.0},"1579":{"tf":1.0},"1580":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"1597":{"tf":1.0},"1598":{"tf":1.7320508075688772},"1599":{"tf":1.4142135623730951},"16":{"tf":2.0},"1600":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.23606797749979},"1603":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1607":{"tf":2.23606797749979},"1609":{"tf":1.4142135623730951},"1611":{"tf":1.0},"1613":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"1625":{"tf":1.0},"1635":{"tf":1.4142135623730951},"1637":{"tf":2.23606797749979},"1638":{"tf":1.4142135623730951},"164":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":2.0},"1651":{"tf":2.0},"1654":{"tf":2.23606797749979},"1655":{"tf":1.4142135623730951},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.7320508075688772},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":2.449489742783178},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"18":{"tf":1.7320508075688772},"180":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":2.0},"187":{"tf":2.8284271247461903},"189":{"tf":1.0},"19":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"198":{"tf":1.7320508075688772},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.7320508075688772},"202":{"tf":2.6457513110645907},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.7320508075688772},"207":{"tf":1.7320508075688772},"209":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"210":{"tf":2.0},"211":{"tf":1.4142135623730951},"214":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.7320508075688772},"25":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.0},"284":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"291":{"tf":1.0},"294":{"tf":2.23606797749979},"30":{"tf":1.0},"304":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.23606797749979},"313":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.0},"318":{"tf":1.7320508075688772},"319":{"tf":2.23606797749979},"32":{"tf":1.7320508075688772},"33":{"tf":1.7320508075688772},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.4142135623730951},"335":{"tf":2.0},"336":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"398":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"41":{"tf":1.4142135623730951},"414":{"tf":1.0},"42":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"436":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"466":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"495":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.4142135623730951},"508":{"tf":2.0},"51":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"521":{"tf":1.0},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"529":{"tf":1.0},"534":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"549":{"tf":2.0},"553":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":2.23606797749979},"571":{"tf":1.0},"572":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"594":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"621":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"627":{"tf":2.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"636":{"tf":1.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"658":{"tf":2.23606797749979},"659":{"tf":2.0},"660":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"665":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"669":{"tf":1.4142135623730951},"671":{"tf":1.0},"672":{"tf":1.0},"68":{"tf":1.0},"680":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"71":{"tf":1.0},"731":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.4142135623730951},"75":{"tf":1.0},"751":{"tf":1.4142135623730951},"757":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":3.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"789":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.4142135623730951},"805":{"tf":1.7320508075688772},"810":{"tf":1.4142135623730951},"811":{"tf":1.0},"812":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"82":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"83":{"tf":2.0},"832":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"86":{"tf":1.0},"862":{"tf":1.0},"87":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"883":{"tf":1.0},"89":{"tf":1.4142135623730951},"905":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.0},"924":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"933":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"95":{"tf":2.23606797749979},"96":{"tf":1.0},"975":{"tf":1.0},"980":{"tf":1.0},"984":{"tf":2.23606797749979},"985":{"tf":1.4142135623730951},"986":{"tf":2.8284271247461903},"987":{"tf":2.6457513110645907},"988":{"tf":2.6457513110645907},"989":{"tf":2.6457513110645907},"990":{"tf":2.23606797749979},"991":{"tf":2.0},"992":{"tf":2.8284271247461903},"993":{"tf":1.0},"996":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{"'":{"df":2,"docs":{"1527":{"tf":1.0},"990":{"tf":1.0}}},".":{"a":{"2":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1285":{"tf":1.0},"1287":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}}}}}}},"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1349":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}},"i":{"c":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"756":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":4,"docs":{"1342":{"tf":1.0},"1343":{"tf":1.0},"1393":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":4,"docs":{"1250":{"tf":1.0},"1257":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"102":{"tf":1.0},"1142":{"tf":1.0},"1257":{"tf":1.0},"1264":{"tf":1.0},"1277":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1357":{"tf":1.0},"302":{"tf":1.0},"634":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"155":{"tf":1.0},"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1635":{"tf":1.0},"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1142":{"tf":1.0},"1215":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1368":{"tf":1.0},"1400":{"tf":1.0},"1435":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"155":{"tf":1.0},"1577":{"tf":1.0},"1635":{"tf":1.0},"1643":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"178":{"tf":1.0},"180":{"tf":1.0},"189":{"tf":1.0},"192":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"415":{"tf":1.0},"426":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"470":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"639":{"tf":1.0},"643":{"tf":1.0},"654":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"706":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"77":{"tf":1.0},"796":{"tf":1.0},"805":{"tf":1.0},"95":{"tf":1.0},"970":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"814":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"89":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"806":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"636":{"tf":1.0},"641":{"tf":1.0},"735":{"tf":1.0},"744":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"806":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"624":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"692":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"456":{"tf":1.0},"462":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"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":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"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":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":43,"docs":{"1004":{"tf":1.0},"1104":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1215":{"tf":1.0},"1224":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.4142135623730951},"634":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.4142135623730951},"668":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"798":{"tf":1.0},"821":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"109":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"583":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"624":{"tf":1.0},"789":{"tf":1.0},"86":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"464":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}}}},"df":1,"docs":{"1632":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"442":{"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":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":10,"docs":{"1223":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.7320508075688772},"1461":{"tf":1.0},"1462":{"tf":1.0},"746":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1517":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1517":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1515":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1394":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":7,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"1621":{"tf":1.4142135623730951},"438":{"tf":1.0},"441":{"tf":1.4142135623730951},"675":{"tf":1.0},"78":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1621":{"tf":1.0},"441":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"570":{"tf":1.0},"574":{"tf":1.0},"582":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"699":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"701":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"680":{"tf":1.0},"700":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"672":{"tf":1.4142135623730951},"78":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"688":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1459":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1632":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1458":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"462":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"464":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1394":{"tf":1.0},"1621":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.4142135623730951},"446":{"tf":1.0},"452":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"[":{"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":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1621":{"tf":1.0},"437":{"tf":1.0},"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.4142135623730951},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"576":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"578":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"572":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"1220":{"tf":1.0},"1394":{"tf":1.0},"146":{"tf":1.0},"1515":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"999":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1214":{"tf":1.0},"1223":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"701":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"464":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":8,"docs":{"438":{"tf":1.0},"462":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1185":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"109":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"113":{"tf":1.0},"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"\"":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"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":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"791":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"793":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"'":{"5":{"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"115":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"572":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"568":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"445":{"tf":1.0},"462":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"449":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"817":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"1012":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"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":2,"docs":{"1272":{"tf":1.0},"1479":{"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":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"121":{"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":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1183":{"tf":1.0},"1188":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"365":{"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":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"357":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"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":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{":":{":":{"a":{"d":{"d":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"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":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1388":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1388":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"{":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"342":{"tf":1.0},"345":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"360":{"tf":1.0},"371":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"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":{}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"943":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"956":{"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":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"362":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"338":{"tf":1.0},"341":{"tf":1.0},"351":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1655":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"9":{".":{"0":{"df":1,"docs":{"655":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"2":{"a":{"df":2,"docs":{"1279":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":1,"docs":{"630":{"tf":1.0}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"756":{"tf":1.0}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"756":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"w":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"1282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1282":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1472":{"tf":2.23606797749979}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1472":{"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":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"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":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1028":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1508":{"tf":1.0}}}}},"i":{"d":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1086":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1130":{"tf":1.0},"1497":{"tf":1.0},"1516":{"tf":1.0},"1613":{"tf":1.0},"1640":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"977":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"r":{"df":5,"docs":{"414":{"tf":1.0},"636":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"228":{"tf":1.0}}}},"df":39,"docs":{"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1125":{"tf":2.0},"1130":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1543":{"tf":1.0},"1640":{"tf":1.4142135623730951},"180":{"tf":1.0},"228":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"1645":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1214":{"tf":1.0},"1517":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"515":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1251":{"tf":1.0},"1254":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"794":{"tf":1.0}},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1350":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1409":{"tf":1.0},"210":{"tf":1.0},"288":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1410":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1542":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"207":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1508":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1534":{"tf":1.0},"1635":{"tf":1.0},"1638":{"tf":1.0},"1647":{"tf":1.0},"1655":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"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":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"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":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1406":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":2,"docs":{"1147":{"tf":1.0},"1534":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1508":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":33,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.0},"161":{"tf":1.0},"1613":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"636":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"641":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"735":{"tf":1.0},"744":{"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":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1422":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1533":{"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":32,"docs":{"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"159":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.4142135623730951},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1579":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":2.0},"1536":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1543":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"470":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":1.4142135623730951}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"414":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1048":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"381":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1533":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1148":{"tf":1.0},"1536":{"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":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1048":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"1345":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"930":{"tf":1.7320508075688772},"933":{"tf":1.0}}},"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":28,"docs":{"1146":{"tf":1.0},"1147":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1543":{"tf":1.4142135623730951},"1613":{"tf":1.0},"180":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"820":{"tf":1.0},"973":{"tf":1.0},"982":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"641":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"636":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"735":{"tf":1.0},"744":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"207":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1422":{"tf":1.0}}}}},"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":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"122":{"tf":1.0},"1279":{"tf":1.0},"1514":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1279":{"tf":1.0},"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"1078":{"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":{}}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"=":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":7,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"980":{"tf":1.0}}}}},"df":0,"docs":{}},"df":6,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":38,"docs":{"1007":{"tf":1.0},"1008":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1400":{"tf":1.0},"1485":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.4142135623730951},"159":{"tf":1.0},"1643":{"tf":1.0},"1655":{"tf":1.0},"180":{"tf":1.0},"183":{"tf":1.0},"229":{"tf":1.4142135623730951},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.4142135623730951},"470":{"tf":1.0},"499":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.4142135623730951},"706":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"972":{"tf":1.0}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1655":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1645":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1645":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":3,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1645":{"tf":2.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1613":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1001":{"tf":1.0},"1015":{"tf":1.0},"1627":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"1016":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1016":{"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":{}}},"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":11,"docs":{"1008":{"tf":1.0},"147":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"156":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"994":{"tf":1.0}},"e":{"=":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"78":{"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":2,"docs":{"1008":{"tf":1.0},"1487":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1046":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1548":{"tf":1.0},"1645":{"tf":1.0}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1315":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1487":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"78":{"tf":1.0}}}}},"df":0,"docs":{}},"df":24,"docs":{"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1515":{"tf":1.0},"1528":{"tf":1.0},"1537":{"tf":1.0},"156":{"tf":1.0},"1613":{"tf":1.0},"410":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.7320508075688772},"982":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1279":{"tf":1.0}},"r":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"994":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"1627":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1343":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1343":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":7,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"994":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":3,"docs":{"1629":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"304":{"tf":1.0},"515":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"823":{"tf":1.0},"978":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"381":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"515":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1392":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1052":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1234":{"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":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"752":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"515":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"339":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"410":{"tf":1.0},"499":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"515":{"tf":1.0}}},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1256":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"515":{"tf":1.0}}}}},"t":{"df":1,"docs":{"930":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1338":{"tf":1.4142135623730951},"756":{"tf":1.0}},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"2":{"a":{"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":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1286":{"tf":1.0},"1288":{"tf":1.0}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1281":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1265":{"tf":1.0},"1271":{"tf":1.0},"1282":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":54,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1632":{"tf":1.0},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951},"439":{"tf":1.0},"465":{"tf":1.4142135623730951},"469":{"tf":1.4142135623730951},"472":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"509":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"623":{"tf":1.7320508075688772},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"673":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.7320508075688772},"769":{"tf":1.4142135623730951},"788":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.7320508075688772},"807":{"tf":1.0},"821":{"tf":1.4142135623730951},"853":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1021":{"tf":1.0},"1022":{"tf":1.0},"1024":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1197":{"tf":1.0},"1198":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"321":{"tf":1.4142135623730951},"840":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":{"616":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"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":3,"docs":{"919":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"919":{"tf":1.0},"924":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"915":{"tf":1.4142135623730951},"918":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"919":{"tf":1.0},"925":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":16,"docs":{"1021":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"687":{"tf":1.0},"824":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1036":{"tf":1.0},"1218":{"tf":1.0},"1566":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"61":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"868":{"tf":1.4142135623730951},"941":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1568":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}},"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":2,"docs":{"285":{"tf":1.0},"292":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1036":{"tf":1.0},"1037":{"tf":1.0},"1129":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"61":{"tf":1.0},"868":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"285":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"862":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"r":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"1315":{"tf":1.0},"303":{"tf":1.4142135623730951}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"131":{"tf":1.0},"1315":{"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":1,"docs":{"634":{"tf":1.0}}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":6,"docs":{"1264":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1293":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"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":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1352":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"102":{"tf":1.7320508075688772},"1142":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":50,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"131":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1342":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1352":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"301":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"634":{"tf":1.0},"703":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"761":{"tf":1.0},"765":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"c":{"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":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"968":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"939":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"939":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"939":{"tf":1.0},"942":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1080":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":2.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"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":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"898":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1474":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1447":{"tf":2.6457513110645907},"1474":{"tf":2.449489742783178},"676":{"tf":1.0},"681":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":12,"docs":{"1223":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"1577":{"tf":1.4142135623730951},"1651":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":2.23606797749979},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"579":{"tf":1.0},"582":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"254":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"254":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"254":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"809":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"809":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"8":{"tf":1.4142135623730951},"803":{"tf":1.7320508075688772},"806":{"tf":1.0},"807":{"tf":1.0}}}},"i":{"d":{"df":45,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1472":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.4142135623730951},"321":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.0},"577":{"tf":1.0},"688":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"810":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"616":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1080":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":9,"docs":{"409":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"863":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"957":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1047":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"750":{"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":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1047":{"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":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"794":{"tf":1.0}}}}}},"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.4142135623730951},"794":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":9,"docs":{"1223":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1461":{"tf":1.0},"1477":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"794":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1254":{"tf":1.0},"749":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"794":{"tf":1.0}}}}}}},"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1342":{"tf":1.7320508075688772},"1393":{"tf":1.0},"1480":{"tf":1.0},"409":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.0},"550":{"tf":1.4142135623730951},"551":{"tf":1.4142135623730951},"560":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1480":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1478":{"tf":1.0},"519":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"511":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"r":{"c":{"/":{"a":{"2":{"a":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"148":{"tf":1.0},"162":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"1070":{"tf":1.4142135623730951},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"267":{"tf":1.0},"54":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"881":{"tf":1.4142135623730951},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1451":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"1070":{"tf":1.4142135623730951},"260":{"tf":1.0},"267":{"tf":1.4142135623730951},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"862":{"tf":1.4142135623730951},"881":{"tf":1.0},"944":{"tf":1.0}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":2.0}}}}}}},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1480":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1478":{"tf":1.0},"760":{"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":{}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1259":{"tf":1.0},"1477":{"tf":1.0},"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1272":{"tf":1.0},"1479":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"753":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"121":{"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":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"866":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1021":{"tf":1.0},"1279":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"321":{"tf":1.0},"824":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":14,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1299":{"tf":1.0},"1587":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"867":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":31,"docs":{"1004":{"tf":1.0},"1017":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1279":{"tf":1.0},"1299":{"tf":1.0},"1454":{"tf":1.0},"1472":{"tf":1.0},"1552":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"479":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"599":{"tf":1.0},"715":{"tf":1.0},"773":{"tf":1.0},"812":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"996":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1345":{"tf":1.0},"1347":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"891":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"906":{"tf":1.0}}}},"c":{"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":0,"docs":{},"e":{"d":{"df":1,"docs":{"891":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"902":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"57":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"892":{"tf":1.0},"903":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"293":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":2.0},"905":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"891":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"887":{"tf":1.0},"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"892":{"tf":1.0},"901":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"891":{"tf":1.0},"899":{"tf":1.0},"905":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"948":{"tf":1.0},"950":{"tf":1.0},"955":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"948":{"tf":1.0},"955":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"515":{"tf":1.4142135623730951},"518":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1350":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"516":{"tf":1.0},"517":{"tf":1.0}},"e":{"(":{"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"1":{"df":1,"docs":{"516":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"620":{"tf":1.0},"621":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":33,"docs":{"1299":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"936":{"tf":1.0},"942":{"tf":1.0},"947":{"tf":1.0},"955":{"tf":1.0},"960":{"tf":1.0},"966":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1021":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1059":{"tf":2.0},"1062":{"tf":1.0},"1198":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":35,"docs":{"1070":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1154":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1472":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.4142135623730951},"248":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"481":{"tf":1.0},"49":{"tf":1.4142135623730951},"492":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"717":{"tf":1.4142135623730951},"728":{"tf":1.0},"812":{"tf":1.0},"819":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"881":{"tf":1.0},"899":{"tf":1.0},"919":{"tf":1.0},"944":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"235":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"862":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"899":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"388":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1519":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"844":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"687":{"tf":1.0},"844":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"398":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":3,"docs":{"1381":{"tf":1.0},"1597":{"tf":1.0},"985":{"tf":1.0}}},"df":1,"docs":{"146":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"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":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}}}}},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"989":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"b":{"df":2,"docs":{"1233":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"222":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"222":{"tf":1.4142135623730951},"849":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1273":{"tf":1.0}}}}}}}},"q":{"df":5,"docs":{"1562":{"tf":1.0},"1607":{"tf":1.4142135623730951},"1609":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1611":{"tf":1.0}}},"s":{"df":1,"docs":{"78":{"tf":1.0}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1620":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":6,"docs":{"1157":{"tf":1.0},"1171":{"tf":1.0},"1226":{"tf":1.0},"1461":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1217":{"tf":1.0},"1246":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"717":{"tf":1.0},"718":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"778":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"821":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"771":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"786":{"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":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"770":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1218":{"tf":1.0},"852":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1464":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1245":{"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":1,"docs":{"1472":{"tf":1.0}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1455":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.0},"1246":{"tf":1.0},"800":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":10,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.4142135623730951},"1474":{"tf":1.0},"668":{"tf":1.0},"739":{"tf":1.0},"774":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"688":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1458":{"tf":1.7320508075688772},"1459":{"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":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"453":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"853":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1215":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"1432":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1640":{"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":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"451":{"tf":1.0},"462":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"600":{"tf":1.0},"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"489":{"tf":1.0},"95":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}},"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":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1157":{"tf":1.0},"1172":{"tf":1.0},"1226":{"tf":1.0},"1438":{"tf":1.0},"428":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"821":{"tf":1.0},"880":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{".":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1435":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"448":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"481":{"tf":1.0},"482":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"879":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"72":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":187,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1004":{"tf":1.0},"107":{"tf":2.23606797749979},"1104":{"tf":1.0},"1145":{"tf":1.0},"1157":{"tf":1.0},"1171":{"tf":1.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1187":{"tf":1.0},"1191":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1224":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.0},"1329":{"tf":1.0},"1357":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1403":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":2.449489742783178},"1497":{"tf":2.23606797749979},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1561":{"tf":2.23606797749979},"1597":{"tf":1.0},"16":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":2.0},"1605":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"161":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.7320508075688772},"246":{"tf":1.0},"249":{"tf":1.0},"266":{"tf":1.0},"32":{"tf":1.4142135623730951},"339":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.7320508075688772},"446":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"455":{"tf":1.0},"459":{"tf":1.0},"464":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"499":{"tf":1.0},"505":{"tf":1.0},"52":{"tf":1.0},"537":{"tf":1.0},"54":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"585":{"tf":1.4142135623730951},"596":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.4142135623730951},"604":{"tf":1.7320508075688772},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.4142135623730951},"641":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"691":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"701":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"735":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"74":{"tf":1.0},"744":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.7320508075688772},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"78":{"tf":1.0},"782":{"tf":1.4142135623730951},"786":{"tf":1.0},"800":{"tf":1.0},"811":{"tf":2.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.4142135623730951},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"97":{"tf":1.0},"983":{"tf":1.0},"985":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"78":{"tf":1.0}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":3,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"1283":{"tf":1.0}},"k":{"df":2,"docs":{"1276":{"tf":1.0},"1283":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":1,"docs":{"1329":{"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":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{".":{"'":{")":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{"1328":{"tf":1.0}}}}}},"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1328":{"tf":1.4142135623730951},"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":3.4641016151377544},"1329":{"tf":1.7320508075688772},"1331":{"tf":1.0},"1588":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":4,"docs":{"1098":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1119":{"tf":1.0},"116":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":17,"docs":{"1007":{"tf":1.0},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1130":{"tf":1.0},"1152":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1651":{"tf":1.0},"229":{"tf":1.0},"239":{"tf":1.4142135623730951},"272":{"tf":1.0},"45":{"tf":1.4142135623730951},"510":{"tf":1.0},"516":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1002":{"tf":1.0}}}},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1215":{"tf":1.4142135623730951},"1472":{"tf":1.0},"358":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"357":{"tf":1.0},"683":{"tf":1.0},"999":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"110":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1082":{"tf":1.0}}}}}}}}},"i":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1387":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"110":{"tf":1.0},"683":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1008":{"tf":3.3166247903554},"1046":{"tf":1.7320508075688772},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":4.795831523312719},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":3.1622776601683795},"156":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"973":{"tf":1.4142135623730951},"975":{"tf":1.7320508075688772},"980":{"tf":2.449489742783178},"994":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"114":{"tf":1.0},"1220":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":274,"docs":{"1001":{"tf":1.4142135623730951},"1002":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1007":{"tf":2.6457513110645907},"1008":{"tf":3.1622776601683795},"1009":{"tf":2.449489742783178},"1022":{"tf":2.0},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":2.23606797749979},"1034":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.7320508075688772},"1051":{"tf":1.7320508075688772},"1052":{"tf":2.449489742783178},"1056":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"1064":{"tf":2.8284271247461903},"1065":{"tf":1.7320508075688772},"1066":{"tf":2.449489742783178},"1067":{"tf":1.4142135623730951},"1068":{"tf":2.0},"1069":{"tf":1.4142135623730951},"107":{"tf":2.0},"1070":{"tf":1.0},"1071":{"tf":2.23606797749979},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.4142135623730951},"1074":{"tf":2.6457513110645907},"1075":{"tf":2.23606797749979},"1076":{"tf":1.7320508075688772},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":3.1622776601683795},"1080":{"tf":2.23606797749979},"1081":{"tf":1.4142135623730951},"1082":{"tf":1.7320508075688772},"1083":{"tf":2.0},"1084":{"tf":2.449489742783178},"1085":{"tf":2.0},"1086":{"tf":2.0},"1087":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":2.449489742783178},"1090":{"tf":2.23606797749979},"1091":{"tf":2.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":2.0},"1096":{"tf":1.0},"1098":{"tf":1.0},"110":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1119":{"tf":1.0},"1126":{"tf":2.23606797749979},"1127":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1135":{"tf":2.0},"1136":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":2.0},"1188":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1199":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1215":{"tf":1.0},"122":{"tf":2.0},"1220":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1238":{"tf":2.0},"125":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1270":{"tf":1.0},"1278":{"tf":1.7320508075688772},"1279":{"tf":1.7320508075688772},"1283":{"tf":1.0},"13":{"tf":1.0},"136":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1380":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1387":{"tf":1.0},"139":{"tf":1.4142135623730951},"1398":{"tf":1.0},"14":{"tf":1.0},"1400":{"tf":1.0},"141":{"tf":1.0},"1412":{"tf":2.0},"1413":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.7320508075688772},"1486":{"tf":2.449489742783178},"1487":{"tf":2.0},"1488":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.0},"1537":{"tf":1.7320508075688772},"1544":{"tf":2.0},"1546":{"tf":2.6457513110645907},"1547":{"tf":2.6457513110645907},"1548":{"tf":2.0},"1549":{"tf":2.0},"156":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1587":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1613":{"tf":1.4142135623730951},"1625":{"tf":2.0},"1637":{"tf":1.0},"1640":{"tf":1.0},"1644":{"tf":1.4142135623730951},"1645":{"tf":2.0},"1647":{"tf":1.0},"1653":{"tf":2.23606797749979},"1655":{"tf":1.0},"17":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"183":{"tf":1.7320508075688772},"187":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":2.449489742783178},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"215":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.4142135623730951},"219":{"tf":1.0},"22":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"228":{"tf":1.7320508075688772},"229":{"tf":2.449489742783178},"23":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"237":{"tf":2.0},"239":{"tf":1.4142135623730951},"248":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.4142135623730951},"327":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.4142135623730951},"338":{"tf":1.0},"339":{"tf":1.0},"347":{"tf":1.7320508075688772},"348":{"tf":1.0},"349":{"tf":2.23606797749979},"353":{"tf":1.0},"354":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"412":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":2.0},"449":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"47":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"49":{"tf":1.7320508075688772},"499":{"tf":2.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"53":{"tf":1.0},"563":{"tf":1.0},"587":{"tf":2.0},"600":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"613":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":3.1622776601683795},"672":{"tf":1.7320508075688772},"675":{"tf":2.23606797749979},"685":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"740":{"tf":2.0},"77":{"tf":1.7320508075688772},"774":{"tf":1.4142135623730951},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"797":{"tf":1.7320508075688772},"799":{"tf":1.0},"810":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"93":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.7320508075688772},"973":{"tf":1.7320508075688772},"975":{"tf":2.6457513110645907},"979":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":1.0},"99":{"tf":1.4142135623730951},"994":{"tf":2.23606797749979},"996":{"tf":2.23606797749979},"998":{"tf":1.0},"999":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1625":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"1514":{"tf":1.0},"449":{"tf":1.4142135623730951},"51":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"828":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1585":{"tf":1.0},"1588":{"tf":1.0},"1602":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":4,"docs":{"111":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1275":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1290":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"119":{"tf":1.0},"1283":{"tf":1.7320508075688772},"691":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1283":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1187":{"tf":1.0}}}}}}},"df":13,"docs":{"1075":{"tf":1.0},"1196":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1271":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"691":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0}}}}}},"o":{"a":{"df":19,"docs":{"1393":{"tf":1.4142135623730951},"36":{"tf":1.0},"43":{"tf":1.0},"552":{"tf":1.4142135623730951},"553":{"tf":2.23606797749979},"554":{"tf":2.23606797749979},"555":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.4142135623730951},"561":{"tf":1.0},"563":{"tf":1.0},"573":{"tf":1.4142135623730951},"574":{"tf":2.8284271247461903},"580":{"tf":1.0},"619":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"df":0,"docs":{}},"u":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"794":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"102":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}},"m":{"b":{"d":{"a":{"df":2,"docs":{"143":{"tf":1.4142135623730951},"147":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{},"j":{"df":14,"docs":{"1478":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"7":{"tf":1.0}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"517":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"517":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":23,"docs":{"1":{"tf":1.0},"105":{"tf":1.0},"1280":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1337":{"tf":1.4142135623730951},"1340":{"tf":1.4142135623730951},"1392":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1478":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"6":{"tf":1.0},"630":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":11,"docs":{"1":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1478":{"tf":2.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.7320508075688772},"516":{"tf":1.0},"6":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"121":{"tf":1.7320508075688772},"143":{"tf":1.0},"145":{"tf":1.0},"1479":{"tf":1.0},"2":{"tf":1.0},"367":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"530":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1244":{"tf":1.0},"1395":{"tf":1.0},"1504":{"tf":1.4142135623730951},"274":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0},"901":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":8,"docs":{"1106":{"tf":1.0},"1110":{"tf":1.4142135623730951},"1116":{"tf":1.0},"1140":{"tf":1.0},"116":{"tf":1.0},"253":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1122":{"tf":1.0},"1258":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}}},"df":3,"docs":{"1084":{"tf":1.0},"1209":{"tf":1.0},"845":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":5,"docs":{"222":{"tf":1.0},"225":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1376":{"tf":1.7320508075688772},"1377":{"tf":1.0},"380":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1185":{"tf":1.0},"1559":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"688":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1233":{"tf":1.0},"1564":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1098":{"tf":1.0},"1112":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"57":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":28,"docs":{"0":{"tf":1.0},"1134":{"tf":1.0},"1144":{"tf":1.0},"1191":{"tf":1.0},"1196":{"tf":1.0},"1208":{"tf":1.4142135623730951},"130":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"132":{"tf":2.0},"134":{"tf":2.449489742783178},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1360":{"tf":1.4142135623730951},"137":{"tf":2.449489742783178},"138":{"tf":2.23606797749979},"139":{"tf":1.4142135623730951},"140":{"tf":2.449489742783178},"141":{"tf":2.23606797749979},"143":{"tf":1.0},"147":{"tf":1.0},"19":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.4142135623730951},"810":{"tf":1.0},"954":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1146":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}}}}}},"z":{"df":0,"docs":{},"i":{"df":1,"docs":{"551":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":1,"docs":{"1229":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":5,"docs":{"184":{"tf":1.0},"34":{"tf":1.0},"434":{"tf":1.0},"669":{"tf":1.0},"98":{"tf":1.0}}}},"v":{"df":1,"docs":{"45":{"tf":1.0}}}},"d":{"df":1,"docs":{"968":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":19,"docs":{"1008":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1075":{"tf":1.0},"1098":{"tf":1.0},"1109":{"tf":1.0},"1124":{"tf":1.0},"1487":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.4142135623730951},"409":{"tf":1.0},"551":{"tf":1.0},"994":{"tf":1.0}}},"y":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"865":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"103":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1125":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":9,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1175":{"tf":1.7320508075688772},"1416":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"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":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1322":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"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":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1104":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}}},"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":{},"h":{"df":2,"docs":{"1008":{"tf":1.0},"567":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1116":{"tf":1.0}}}},"t":{"'":{"df":3,"docs":{"94":{"tf":1.0},"95":{"tf":1.0},"967":{"tf":1.0}}},"df":1,"docs":{"116":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"df":70,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1049":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1200":{"tf":1.0},"1201":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.4142135623730951},"133":{"tf":1.0},"1343":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1368":{"tf":1.0},"1375":{"tf":1.0},"138":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1481":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"1632":{"tf":1.7320508075688772},"1634":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"272":{"tf":1.0},"301":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.7320508075688772},"387":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":1.0},"436":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"624":{"tf":1.0},"671":{"tf":1.0},"765":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"807":{"tf":1.0},"809":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"863":{"tf":1.7320508075688772},"936":{"tf":1.0},"947":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.7320508075688772}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":48,"docs":{"1100":{"tf":1.0},"1189":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0},"164":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"184":{"tf":1.4142135623730951},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"5":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"65":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"842":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":14,"docs":{"101":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1371":{"tf":1.0},"1503":{"tf":1.4142135623730951},"175":{"tf":1.0},"282":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1302":{"tf":1.0},"1303":{"tf":1.0},"138":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"130":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"175":{"tf":1.0},"336":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"683":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1143":{"tf":1.4142135623730951},"116":{"tf":1.0},"1196":{"tf":1.0},"176":{"tf":1.0},"325":{"tf":1.0},"59":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1355":{"tf":1.4142135623730951}}}},"df":19,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1229":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1561":{"tf":1.0},"1598":{"tf":1.0},"185":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"75":{"tf":1.0},"794":{"tf":1.0},"845":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"825":{"tf":1.0}}}}}}},"k":{"df":19,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"116":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1321":{"tf":1.0},"1382":{"tf":1.0},"1585":{"tf":1.0},"1589":{"tf":2.449489742783178},"260":{"tf":1.0},"846":{"tf":1.0},"859":{"tf":1.0},"92":{"tf":1.0},"935":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0},"953":{"tf":1.7320508075688772},"986":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1561":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"658":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"152":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":13,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.4142135623730951},"143":{"tf":1.0},"1487":{"tf":1.0},"153":{"tf":1.4142135623730951},"1530":{"tf":2.0},"176":{"tf":1.0},"182":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"696":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1468":{"tf":1.0},"696":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1184":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":48,"docs":{"1079":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1252":{"tf":1.0},"1330":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1501":{"tf":1.0},"1512":{"tf":1.0},"1514":{"tf":1.0},"1568":{"tf":1.7320508075688772},"1632":{"tf":1.0},"206":{"tf":1.0},"347":{"tf":1.0},"440":{"tf":1.0},"663":{"tf":1.0},"680":{"tf":1.0},"688":{"tf":1.4142135623730951},"756":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"794":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"930":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.0},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":3.1622776601683795},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"969":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1271":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1186":{"tf":1.4142135623730951},"1622":{"tf":1.0},"440":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":11,"docs":{"1121":{"tf":1.0},"1140":{"tf":1.0},"1150":{"tf":1.0},"1532":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"512":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"794":{"tf":1.0},"991":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1389":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"304":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"(":{"'":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1229":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"51":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"440":{"tf":1.0},"442":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"338":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"338":{"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":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"343":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"357":{"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":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":106,"docs":{"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1251":{"tf":1.0},"1279":{"tf":1.4142135623730951},"13":{"tf":1.0},"1379":{"tf":1.0},"1395":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1632":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":2.0},"343":{"tf":1.0},"347":{"tf":1.7320508075688772},"355":{"tf":1.0},"357":{"tf":1.7320508075688772},"363":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"438":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.0},"444":{"tf":1.4142135623730951},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"469":{"tf":1.7320508075688772},"491":{"tf":1.0},"500":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":2.23606797749979},"551":{"tf":1.0},"567":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.7320508075688772},"622":{"tf":1.0},"624":{"tf":1.0},"634":{"tf":1.4142135623730951},"636":{"tf":1.0},"637":{"tf":1.0},"640":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"685":{"tf":1.4142135623730951},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"694":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"705":{"tf":1.7320508075688772},"727":{"tf":1.0},"736":{"tf":1.0},"742":{"tf":1.4142135623730951},"744":{"tf":1.0},"748":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.7320508075688772},"785":{"tf":1.0},"789":{"tf":1.0},"799":{"tf":1.0},"805":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"930":{"tf":1.0},"933":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0},"994":{"tf":1.0},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"595":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1514":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"122":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"138":{"tf":1.4142135623730951},"139":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":65,"docs":{"1":{"tf":1.0},"1013":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"111":{"tf":1.0},"114":{"tf":1.0},"1145":{"tf":2.23606797749979},"1146":{"tf":1.0},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"122":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1254":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1327":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"1413":{"tf":1.0},"1426":{"tf":1.4142135623730951},"144":{"tf":1.0},"1486":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1520":{"tf":1.0},"1532":{"tf":2.6457513110645907},"1533":{"tf":2.0},"1537":{"tf":1.0},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"17":{"tf":1.0},"320":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"417":{"tf":1.7320508075688772},"449":{"tf":1.0},"46":{"tf":1.0},"6":{"tf":1.0},"645":{"tf":1.7320508075688772},"684":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"752":{"tf":1.0},"810":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1013":{"tf":1.0},"543":{"tf":1.0},"567":{"tf":1.0},"994":{"tf":1.0}}}}}}},"t":{"df":19,"docs":{"1012":{"tf":1.0},"1176":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1508":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1533":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"763":{"tf":1.0},"77":{"tf":1.0},"817":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"845":{"tf":1.0},"858":{"tf":1.4142135623730951},"871":{"tf":1.0},"884":{"tf":1.4142135623730951},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"971":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"430":{"tf":1.0}}}}}}},"df":4,"docs":{"1037":{"tf":1.0},"1129":{"tf":1.0},"1569":{"tf":1.4142135623730951},"801":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"805":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"361":{"tf":1.4142135623730951},"372":{"tf":1.4142135623730951},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"375":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"361":{"tf":1.0},"375":{"tf":1.0},"392":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"372":{"tf":1.0},"375":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":53,"docs":{"0":{"tf":1.0},"1025":{"tf":1.0},"1034":{"tf":1.0},"1049":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1202":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1366":{"tf":1.7320508075688772},"1367":{"tf":1.4142135623730951},"1368":{"tf":1.0},"1369":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1519":{"tf":3.7416573867739413},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"32":{"tf":1.0},"336":{"tf":1.4142135623730951},"360":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.7320508075688772},"375":{"tf":2.6457513110645907},"376":{"tf":1.7320508075688772},"383":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"391":{"tf":1.0},"392":{"tf":1.0},"394":{"tf":2.449489742783178},"510":{"tf":1.0},"535":{"tf":1.0},"805":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"988":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}},"i":{"c":{"df":5,"docs":{"1012":{"tf":1.0},"1192":{"tf":1.0},"1201":{"tf":1.0},"24":{"tf":1.0},"516":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":2,"docs":{"1008":{"tf":1.0},"899":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"388":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"375":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"394":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"305":{"tf":1.0},"327":{"tf":1.0},"63":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1176":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":14,"docs":{"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"318":{"tf":1.7320508075688772},"842":{"tf":1.4142135623730951},"980":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"_":{"c":{"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":{"(":{"c":{"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":{},"i":{"d":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1008":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1075":{"tf":1.7320508075688772},"119":{"tf":1.0},"1198":{"tf":1.0},"122":{"tf":1.0},"1279":{"tf":1.0},"1413":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.7320508075688772},"198":{"tf":2.449489742783178},"211":{"tf":1.0},"318":{"tf":1.7320508075688772}}}}},"p":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"437":{"tf":1.4142135623730951},"441":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1533":{"tf":1.0}}}},"w":{"df":3,"docs":{"1144":{"tf":1.0},"1200":{"tf":1.0},"952":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1008":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"1059":{"tf":1.0},"1061":{"tf":1.0},"1148":{"tf":1.0},"1207":{"tf":1.0},"508":{"tf":1.0},"765":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1008":{"tf":1.0},"1060":{"tf":1.0},"78":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"431":{"tf":1.0},"664":{"tf":1.0}}},"t":{"df":1,"docs":{"145":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1008":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}}},"o":{"df":14,"docs":{"1008":{"tf":1.4142135623730951},"1229":{"tf":1.0},"143":{"tf":1.0},"1487":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":2.0},"169":{"tf":1.4142135623730951},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"79":{"tf":1.4142135623730951},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1089":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1355":{"tf":1.0},"2":{"tf":1.0},"36":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"845":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"844":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"103":{"tf":1.0},"1436":{"tf":1.0},"1439":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":28,"docs":{"103":{"tf":1.0},"14":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.4142135623730951},"1462":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"428":{"tf":1.0},"501":{"tf":1.0},"567":{"tf":1.4142135623730951},"583":{"tf":1.0},"656":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"805":{"tf":1.4142135623730951},"844":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1030":{"tf":1.0},"1066":{"tf":1.0},"1081":{"tf":1.0},"1130":{"tf":1.0},"1405":{"tf":1.0},"1616":{"tf":1.0},"17":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"50":{"tf":1.0},"594":{"tf":1.0},"67":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"803":{"tf":1.0},"881":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":11,"docs":{"1281":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"277":{"tf":1.0},"305":{"tf":1.0},"398":{"tf":1.0},"627":{"tf":1.0},"965":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1329":{"tf":1.0},"1553":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":37,"docs":{"1006":{"tf":1.4142135623730951},"1030":{"tf":1.7320508075688772},"1064":{"tf":1.0},"1068":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1280":{"tf":1.0},"1291":{"tf":1.0},"1415":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"185":{"tf":1.0},"187":{"tf":2.0},"214":{"tf":1.0},"32":{"tf":1.0},"334":{"tf":1.0},"399":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":1.0},"628":{"tf":1.0},"67":{"tf":1.4142135623730951},"670":{"tf":1.0},"69":{"tf":1.4142135623730951},"737":{"tf":1.0},"741":{"tf":1.4142135623730951},"815":{"tf":1.0},"830":{"tf":1.0},"885":{"tf":1.0},"899":{"tf":1.4142135623730951},"98":{"tf":1.0},"987":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1068":{"tf":1.0},"1109":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1022":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0}},"i":{"df":4,"docs":{"1068":{"tf":1.0},"1237":{"tf":1.0},"385":{"tf":1.0},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":21,"docs":{"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1236":{"tf":1.0},"143":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1538":{"tf":1.0},"179":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"315":{"tf":1.0},"32":{"tf":1.4142135623730951},"544":{"tf":1.0},"548":{"tf":1.7320508075688772},"551":{"tf":1.0},"556":{"tf":1.0},"559":{"tf":1.4142135623730951},"572":{"tf":2.23606797749979},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1445":{"tf":1.0}}}},"df":1,"docs":{"990":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"942":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"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":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1089":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1347":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1347":{"tf":1.0},"49":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":24,"docs":{"1022":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1059":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1372":{"tf":1.0},"1386":{"tf":1.7320508075688772},"152":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1653":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"329":{"tf":1.0},"35":{"tf":1.0},"363":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"1057":{"tf":1.0},"1188":{"tf":1.0},"1197":{"tf":1.0},"1199":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1065":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1189":{"tf":1.0},"1194":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"148":{"tf":1.4142135623730951},"151":{"tf":1.4142135623730951},"162":{"tf":1.0}}}}}}},"x":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1373":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"543":{"tf":1.0},"555":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"543":{"tf":1.0},"546":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1119":{"tf":1.0},"1328":{"tf":1.0},"1606":{"tf":1.0},"385":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1161":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1606":{"tf":1.0},"1613":{"tf":1.0},"1627":{"tf":1.0},"322":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1637":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1255":{"tf":1.0},"1258":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"1223":{"tf":1.0},"1461":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"749":{"tf":1.0}}}}}}},"/":{"a":{"2":{"a":{"df":1,"docs":{"6":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1533":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"m":{"d":{"df":4,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1439":{"tf":1.0}}}}}}}}}}},"df":1,"docs":{"1439":{"tf":1.0}}}}}}}},"df":106,"docs":{"1":{"tf":1.4142135623730951},"1038":{"tf":1.0},"1103":{"tf":1.0},"1125":{"tf":1.0},"1147":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1223":{"tf":2.23606797749979},"1227":{"tf":1.7320508075688772},"1248":{"tf":2.0},"1249":{"tf":3.0},"1250":{"tf":2.0},"1251":{"tf":1.4142135623730951},"1252":{"tf":2.449489742783178},"1253":{"tf":1.7320508075688772},"1254":{"tf":1.7320508075688772},"1255":{"tf":2.0},"1256":{"tf":2.0},"1257":{"tf":1.4142135623730951},"1258":{"tf":2.23606797749979},"1259":{"tf":1.0},"1260":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1280":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1477":{"tf":1.7320508075688772},"1532":{"tf":1.0},"1534":{"tf":1.0},"1648":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"172":{"tf":2.23606797749979},"187":{"tf":1.4142135623730951},"190":{"tf":2.23606797749979},"2":{"tf":1.0},"3":{"tf":1.0},"304":{"tf":2.0},"32":{"tf":1.0},"36":{"tf":3.1622776601683795},"38":{"tf":1.0},"40":{"tf":2.449489742783178},"408":{"tf":1.4142135623730951},"41":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.7320508075688772},"434":{"tf":1.0},"435":{"tf":1.0},"439":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"5":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":2.6457513110645907},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.0},"508":{"tf":2.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.7320508075688772},"520":{"tf":2.23606797749979},"536":{"tf":1.4142135623730951},"589":{"tf":1.0},"620":{"tf":1.4142135623730951},"621":{"tf":1.0},"626":{"tf":1.0},"645":{"tf":1.0},"669":{"tf":1.4142135623730951},"673":{"tf":1.0},"7":{"tf":1.0},"700":{"tf":1.7320508075688772},"702":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":2.6457513110645907},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.7320508075688772},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":1.4142135623730951},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":2.449489742783178},"794":{"tf":2.6457513110645907},"80":{"tf":2.23606797749979},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"999":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1438":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}}},"df":8,"docs":{"1207":{"tf":1.4142135623730951},"1420":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":12,"docs":{"1267":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"1487":{"tf":1.0},"1595":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"920":{"tf":1.0},"938":{"tf":1.0},"986":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1159":{"tf":1.4142135623730951},"1326":{"tf":1.0},"238":{"tf":1.0}}}}},"t":{"df":2,"docs":{"250":{"tf":1.0},"863":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"816":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":6,"docs":{"1008":{"tf":1.0},"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"73":{"tf":1.4142135623730951},"941":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"300":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"df":1,"docs":{"1174":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1200":{"tf":1.7320508075688772},"952":{"tf":1.0},"955":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1024":{"tf":1.0},"1207":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"70":{"tf":1.0},"849":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"o":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":27,"docs":{"1056":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":2.449489742783178},"1151":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":2.0},"1389":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.7320508075688772},"180":{"tf":1.0},"362":{"tf":1.0},"419":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"634":{"tf":1.0},"647":{"tf":1.7320508075688772},"797":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.23606797749979},"928":{"tf":1.7320508075688772},"931":{"tf":2.23606797749979}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"914":{"tf":1.0},"916":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"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":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"931":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"885":{"tf":1.0},"903":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":74,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1140":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.0},"1262":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1393":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.0},"1474":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1539":{"tf":1.0},"1586":{"tf":1.0},"1588":{"tf":1.0},"265":{"tf":2.23606797749979},"40":{"tf":1.0},"460":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"505":{"tf":1.0},"534":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.0},"57":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"696":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"73":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"857":{"tf":1.0},"945":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.7320508075688772},"960":{"tf":1.0},"961":{"tf":1.4142135623730951},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":2.449489742783178},"965":{"tf":1.4142135623730951},"966":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{},"i":{"d":{"df":2,"docs":{"1386":{"tf":1.0},"1387":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"989":{"tf":1.0}}}}}},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"\"":{")":{".":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"|":{"df":0,"docs":{},"v":{"df":1,"docs":{"1328":{"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":{}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":37,"docs":{"1091":{"tf":1.0},"1128":{"tf":1.0},"1144":{"tf":1.0},"1167":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1262":{"tf":1.0},"1271":{"tf":1.0},"13":{"tf":1.0},"1307":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1380":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1391":{"tf":1.0},"1498":{"tf":1.0},"1511":{"tf":1.0},"1515":{"tf":1.0},"1535":{"tf":1.0},"1589":{"tf":1.0},"242":{"tf":1.0},"309":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"534":{"tf":1.0},"55":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.4142135623730951},"77":{"tf":1.0},"822":{"tf":1.0},"875":{"tf":1.0},"928":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"df":7,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1207":{"tf":1.7320508075688772},"298":{"tf":1.0},"304":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":37,"docs":{"1032":{"tf":1.0},"1039":{"tf":1.0},"1128":{"tf":1.0},"1221":{"tf":1.0},"1325":{"tf":1.0},"1380":{"tf":1.0},"1436":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1620":{"tf":1.7320508075688772},"1623":{"tf":1.7320508075688772},"1628":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1632":{"tf":1.0},"217":{"tf":1.4142135623730951},"218":{"tf":1.4142135623730951},"339":{"tf":1.0},"353":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"576":{"tf":1.0},"583":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"608":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"637":{"tf":1.4142135623730951},"731":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"794":{"tf":1.0},"798":{"tf":1.0},"807":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":35,"docs":{"1366":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1368":{"tf":1.0},"1376":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":3.3166247903554},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1534":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"30":{"tf":1.0},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"378":{"tf":1.4142135623730951},"379":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"383":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"395":{"tf":2.0},"981":{"tf":1.0}},"s":{",":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"1366":{"tf":1.0}}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"395":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"379":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1520":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"378":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"379":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"378":{"tf":1.0},"379":{"tf":1.0},"392":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"361":{"tf":1.0},"379":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.0},"379":{"tf":1.0},"391":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"361":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"33":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":3,"docs":{"1001":{"tf":1.0},"1200":{"tf":1.0},"46":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":63,"docs":{"1189":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1223":{"tf":1.0},"1254":{"tf":1.0},"1280":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1393":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1577":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"434":{"tf":1.0},"435":{"tf":1.0},"502":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.7320508075688772},"545":{"tf":1.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.7320508075688772},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":2.0},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.0},"563":{"tf":1.4142135623730951},"570":{"tf":2.23606797749979},"571":{"tf":1.4142135623730951},"574":{"tf":2.0},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.0},"588":{"tf":1.7320508075688772},"589":{"tf":1.0},"618":{"tf":1.4142135623730951},"619":{"tf":1.4142135623730951},"626":{"tf":1.0},"7":{"tf":1.0},"752":{"tf":1.0},"758":{"tf":1.4142135623730951}},"e":{"=":{"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1392":{"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":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":51,"docs":{"1067":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1139":{"tf":1.0},"1140":{"tf":1.0},"1152":{"tf":2.0},"1180":{"tf":1.7320508075688772},"1538":{"tf":1.7320508075688772},"1615":{"tf":2.23606797749979},"1616":{"tf":1.0},"1617":{"tf":1.7320508075688772},"1618":{"tf":1.0},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.7320508075688772},"1624":{"tf":1.7320508075688772},"1625":{"tf":1.7320508075688772},"1626":{"tf":1.0},"1627":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.7320508075688772},"1632":{"tf":1.0},"1633":{"tf":1.7320508075688772},"1634":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1636":{"tf":1.7320508075688772},"1637":{"tf":1.7320508075688772},"1638":{"tf":1.0},"1639":{"tf":1.7320508075688772},"1640":{"tf":1.4142135623730951},"1641":{"tf":1.7320508075688772},"1642":{"tf":1.0},"1643":{"tf":1.0},"1644":{"tf":1.7320508075688772},"1645":{"tf":1.0},"1646":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"1648":{"tf":1.7320508075688772},"1649":{"tf":1.0},"1650":{"tf":1.7320508075688772},"1651":{"tf":1.0},"1652":{"tf":1.7320508075688772},"1653":{"tf":1.7320508075688772},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"1656":{"tf":1.0},"551":{"tf":1.7320508075688772},"624":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":6,"docs":{"1378":{"tf":1.0},"1510":{"tf":1.0},"461":{"tf":1.0},"697":{"tf":1.0},"871":{"tf":1.0},"919":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1438":{"tf":1.0},"461":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1017":{"tf":1.0},"1273":{"tf":1.7320508075688772}},"i":{"df":1,"docs":{"1273":{"tf":1.0}},"m":{"df":10,"docs":{"1265":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1516":{"tf":1.4142135623730951},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"805":{"tf":1.4142135623730951},"923":{"tf":1.4142135623730951},"928":{"tf":1.0},"972":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"299":{"tf":1.0},"300":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"305":{"tf":1.0}}}}}}}}}}},"df":10,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1203":{"tf":1.4142135623730951},"145":{"tf":1.0},"1519":{"tf":1.0},"1628":{"tf":1.0},"825":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1157":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1628":{"tf":1.0},"289":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"106":{"tf":1.0},"1313":{"tf":1.0},"1328":{"tf":1.0},"436":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"671":{"tf":1.0},"76":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"1059":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1328":{"tf":1.0},"1386":{"tf":1.0},"1507":{"tf":1.0},"1549":{"tf":1.4142135623730951},"1564":{"tf":1.7320508075688772},"331":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":23,"docs":{"1171":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1208":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1443":{"tf":1.0},"1454":{"tf":1.0},"1466":{"tf":1.0},"1542":{"tf":1.4142135623730951},"1543":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1557":{"tf":1.0},"156":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.4142135623730951},"1627":{"tf":1.0},"182":{"tf":1.0},"396":{"tf":1.4142135623730951},"545":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"999":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"38":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"x":{"df":2,"docs":{"1008":{"tf":1.0},"1476":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"1233":{"tf":1.0},"1400":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":11,"docs":{"1138":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.0},"1143":{"tf":1.0},"121":{"tf":1.0},"1278":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0},"89":{"tf":1.0},"985":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1226":{"tf":1.0}}}}}},"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":{},"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":{"1226":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1226":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1226":{"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":4,"docs":{"1212":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":4.123105625617661},"1227":{"tf":2.23606797749979}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"1329":{"tf":1.0}},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1029":{"tf":1.0},"1052":{"tf":1.0},"1205":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1345":{"tf":1.0},"1352":{"tf":2.0},"1377":{"tf":1.0},"1556":{"tf":1.0},"1558":{"tf":1.0},"1579":{"tf":1.0},"274":{"tf":1.0},"320":{"tf":1.7320508075688772},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"518":{"tf":1.4142135623730951},"535":{"tf":1.4142135623730951},"546":{"tf":1.0},"557":{"tf":1.0},"633":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.0},"810":{"tf":1.0}},"l":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"(":{"[":{".":{".":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"515":{"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":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{":":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1392":{"tf":1.0},"758":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"1438":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":4,"docs":{"1255":{"tf":1.0},"1438":{"tf":1.0},"506":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1429":{"tf":1.0},"504":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":144,"docs":{"1000":{"tf":1.7320508075688772},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"102":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"103":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1054":{"tf":1.0},"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1069":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.0},"1196":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1256":{"tf":1.0},"132":{"tf":1.0},"1349":{"tf":1.0},"1360":{"tf":1.0},"1378":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1583":{"tf":1.0},"300":{"tf":1.0},"306":{"tf":1.0},"309":{"tf":1.0},"325":{"tf":1.4142135623730951},"33":{"tf":1.0},"333":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"508":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"525":{"tf":2.0},"526":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"764":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"873":{"tf":1.0},"934":{"tf":1.0},"964":{"tf":1.4142135623730951},"985":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}}},"r":{"df":1,"docs":{"1113":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"1091":{"tf":1.0},"1209":{"tf":1.4142135623730951},"295":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0}},"i":{"df":31,"docs":{"106":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1238":{"tf":1.0},"1309":{"tf":1.0},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1498":{"tf":1.0},"1551":{"tf":1.0},"1569":{"tf":1.4142135623730951},"1587":{"tf":1.0},"234":{"tf":1.0},"256":{"tf":1.0},"260":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"481":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"717":{"tf":1.0},"774":{"tf":1.4142135623730951},"786":{"tf":1.0},"999":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"348":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":21,"docs":{"1254":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1632":{"tf":1.7320508075688772},"301":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.7320508075688772},"432":{"tf":1.0},"436":{"tf":1.0},"593":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"620":{"tf":1.4142135623730951},"624":{"tf":1.0},"636":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"671":{"tf":1.0},"765":{"tf":1.0},"767":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"663":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"433":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":27,"docs":{"1018":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1371":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1420":{"tf":1.0},"239":{"tf":1.0},"326":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"983":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"537":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1476":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"771":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":12,"docs":{"1015":{"tf":1.0},"105":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1349":{"tf":1.0},"17":{"tf":1.0},"224":{"tf":1.0},"372":{"tf":1.0},"572":{"tf":1.0},"589":{"tf":1.0},"802":{"tf":1.0},"941":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"df":0,"docs":{}},"df":3,"docs":{"14":{"tf":1.0},"1420":{"tf":1.4142135623730951},"17":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"1359":{"tf":1.0}}}}}}}}},"s":{"df":1,"docs":{"1131":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"964":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":50,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"1063":{"tf":1.0},"1086":{"tf":1.4142135623730951},"1133":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1395":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1501":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.0},"210":{"tf":1.4142135623730951},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.4142135623730951},"439":{"tf":1.0},"44":{"tf":1.7320508075688772},"440":{"tf":1.0},"546":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.0},"60":{"tf":1.0},"673":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"882":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1085":{"tf":1.0},"1097":{"tf":1.0},"1201":{"tf":1.0},"1236":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1408":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1487":{"tf":1.0},"1501":{"tf":1.0},"1504":{"tf":1.0},"1602":{"tf":1.0},"1611":{"tf":1.4142135623730951},"19":{"tf":1.0},"227":{"tf":1.0},"245":{"tf":1.0},"26":{"tf":1.0},"262":{"tf":1.0},"268":{"tf":1.4142135623730951},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"362":{"tf":1.0},"368":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"520":{"tf":1.0},"550":{"tf":1.4142135623730951},"594":{"tf":1.0},"601":{"tf":1.0},"673":{"tf":1.0},"723":{"tf":1.0},"765":{"tf":1.0},"768":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.4142135623730951},"807":{"tf":1.0}},"i":{"df":10,"docs":{"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1144":{"tf":1.0},"1145":{"tf":2.0}},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"362":{"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":{}}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.7320508075688772}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"1535":{"tf":1.0}}}},"df":10,"docs":{"1328":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"928":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1420":{"tf":1.4142135623730951},"1645":{"tf":1.0}}},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1379":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"df":1,"docs":{"1334":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":14,"docs":{"1021":{"tf":1.0},"1028":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1413":{"tf":2.23606797749979},"219":{"tf":1.0},"235":{"tf":1.0},"311":{"tf":2.0},"312":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1485":{"tf":1.0},"78":{"tf":1.0},"84":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1602":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"n":{"+":{"2":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"438":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1315":{"tf":1.0}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"102":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"102":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":3,"docs":{"1265":{"tf":1.0},"675":{"tf":1.0},"89":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":135,"docs":{"10":{"tf":1.0},"1008":{"tf":1.0},"1039":{"tf":1.0},"1082":{"tf":1.0},"1142":{"tf":1.0},"1157":{"tf":2.0},"1167":{"tf":1.0},"1172":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1233":{"tf":2.449489742783178},"1255":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1264":{"tf":1.0},"127":{"tf":1.0},"1275":{"tf":1.0},"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1350":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1380":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1438":{"tf":1.7320508075688772},"1439":{"tf":2.0},"1461":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1515":{"tf":1.4142135623730951},"1521":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1589":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.6457513110645907},"1609":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1623":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.4142135623730951},"200":{"tf":2.23606797749979},"219":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"309":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"386":{"tf":1.0},"427":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":2.0},"458":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"479":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"49":{"tf":1.0},"492":{"tf":1.4142135623730951},"506":{"tf":1.0},"508":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"515":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"550":{"tf":1.4142135623730951},"554":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.4142135623730951},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"663":{"tf":1.0},"675":{"tf":1.4142135623730951},"715":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"728":{"tf":1.4142135623730951},"749":{"tf":1.0},"750":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":2.0},"805":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"845":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"89":{"tf":1.4142135623730951},"891":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"905":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":9,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"449":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":9,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"147":{"tf":1.0},"152":{"tf":1.0},"1533":{"tf":1.0},"32":{"tf":1.0},"432":{"tf":1.0},"985":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1355":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":24,"docs":{"1082":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1207":{"tf":1.0},"1405":{"tf":1.0},"1416":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1498":{"tf":2.0},"1503":{"tf":1.0},"1606":{"tf":1.0},"1611":{"tf":1.0},"200":{"tf":2.0},"202":{"tf":1.0},"203":{"tf":2.0},"206":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"277":{"tf":1.4142135623730951},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"44":{"tf":1.0},"659":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"305":{"tf":1.0},"74":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":100,"docs":{"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"1067":{"tf":1.0},"1110":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1152":{"tf":1.0},"1187":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1258":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.0},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"1354":{"tf":2.23606797749979},"1373":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1395":{"tf":1.0},"140":{"tf":2.23606797749979},"143":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1516":{"tf":1.4142135623730951},"152":{"tf":1.0},"1530":{"tf":1.0},"1538":{"tf":1.0},"1567":{"tf":1.0},"1569":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"1623":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":1.0},"1649":{"tf":1.0},"166":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.4142135623730951},"438":{"tf":1.0},"440":{"tf":1.0},"449":{"tf":1.0},"45":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"516":{"tf":1.0},"520":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"623":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"683":{"tf":1.0},"754":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"76":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"89":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0},"972":{"tf":1.0},"99":{"tf":1.0},"991":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1143":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"910":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1010":{"tf":1.0},"1022":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1559":{"tf":1.0},"1573":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":19,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1045":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1070":{"tf":1.0},"1191":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1279":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":1.0},"1530":{"tf":1.0},"215":{"tf":1.0},"237":{"tf":1.0},"69":{"tf":1.0},"980":{"tf":1.0},"994":{"tf":1.0}}}}},"w":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1498":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1130":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1456":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"612":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1433":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1640":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"600":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":146,"docs":{"1009":{"tf":2.0},"1025":{"tf":1.0},"103":{"tf":1.0},"1059":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1069":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1080":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.449489742783178},"1135":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"1157":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1207":{"tf":1.0},"1209":{"tf":1.0},"1215":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1236":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1275":{"tf":1.0},"1288":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1382":{"tf":1.0},"1398":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1420":{"tf":2.23606797749979},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.7320508075688772},"1435":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":2.449489742783178},"1449":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":2.449489742783178},"1515":{"tf":1.0},"1535":{"tf":1.0},"1538":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1569":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1625":{"tf":1.4142135623730951},"1627":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"1640":{"tf":2.6457513110645907},"1647":{"tf":1.0},"1649":{"tf":1.7320508075688772},"192":{"tf":1.0},"195":{"tf":1.4142135623730951},"203":{"tf":2.0},"218":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"338":{"tf":1.0},"348":{"tf":1.4142135623730951},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"410":{"tf":1.0},"413":{"tf":1.0},"428":{"tf":1.0},"438":{"tf":1.0},"440":{"tf":1.7320508075688772},"441":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"462":{"tf":1.0},"469":{"tf":1.4142135623730951},"472":{"tf":1.0},"482":{"tf":2.0},"495":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"506":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.4142135623730951},"547":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"582":{"tf":1.0},"595":{"tf":1.7320508075688772},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"612":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":2.23606797749979},"625":{"tf":1.0},"637":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"705":{"tf":1.0},"718":{"tf":2.0},"769":{"tf":1.0},"77":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"821":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"877":{"tf":1.0},"930":{"tf":1.0},"938":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1067":{"tf":1.0},"1083":{"tf":1.0},"1116":{"tf":1.0},"1616":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"424":{"tf":1.0},"652":{"tf":1.0}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"807":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"df":32,"docs":{"105":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1323":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1435":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"555":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"910":{"tf":1.0},"95":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1240":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"805":{"tf":2.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1068":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"65":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"711":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"688":{"tf":1.0},"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":114,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"12":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1258":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1287":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1428":{"tf":2.0},"1429":{"tf":1.0},"143":{"tf":2.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1450":{"tf":1.7320508075688772},"148":{"tf":1.0},"1486":{"tf":1.0},"1617":{"tf":1.4142135623730951},"1618":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.7320508075688772},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"3":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":2.0},"399":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"428":{"tf":1.0},"430":{"tf":1.0},"437":{"tf":1.0},"45":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"503":{"tf":1.7320508075688772},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"520":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"7":{"tf":1.4142135623730951},"75":{"tf":1.0},"78":{"tf":1.0},"803":{"tf":1.0},"84":{"tf":1.0},"853":{"tf":1.4142135623730951},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"3":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"430":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1258":{"tf":1.0},"13":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1532":{"tf":1.0},"1649":{"tf":1.0},"36":{"tf":1.4142135623730951},"404":{"tf":1.0},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"433":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"503":{"tf":1.0},"516":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"815":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":17,"docs":{"1059":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1328":{"tf":1.0},"1331":{"tf":1.0},"1487":{"tf":1.0},"1532":{"tf":1.0},"1651":{"tf":1.0},"319":{"tf":1.0},"556":{"tf":1.0},"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":46,"docs":{"1020":{"tf":1.0},"1060":{"tf":1.0},"1084":{"tf":1.0},"1210":{"tf":1.0},"1215":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1244":{"tf":1.0},"1328":{"tf":2.0},"1458":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1521":{"tf":1.0},"1533":{"tf":1.7320508075688772},"1591":{"tf":1.0},"320":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"349":{"tf":2.0},"350":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"357":{"tf":1.0},"361":{"tf":2.23606797749979},"365":{"tf":2.8284271247461903},"372":{"tf":2.0},"375":{"tf":1.0},"378":{"tf":1.4142135623730951},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"391":{"tf":2.0},"392":{"tf":1.4142135623730951},"676":{"tf":1.0},"678":{"tf":1.0},"694":{"tf":1.0},"697":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.4142135623730951},"95":{"tf":1.0},"990":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":13,"docs":{"1189":{"tf":1.0},"1279":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":2.23606797749979},"1328":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1596":{"tf":1.0},"746":{"tf":1.0},"763":{"tf":1.0},"985":{"tf":1.0},"994":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1329":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"994":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"475":{"tf":1.0},"597":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"137":{"tf":1.0},"139":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"128":{"tf":1.0},"988":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"661":{"tf":2.449489742783178},"670":{"tf":1.0}}}}}},"df":24,"docs":{"1008":{"tf":1.0},"1079":{"tf":1.0},"1145":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1188":{"tf":1.4142135623730951},"143":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.0},"177":{"tf":1.4142135623730951},"379":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"688":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.4142135623730951},"89":{"tf":1.0},"928":{"tf":1.0},"933":{"tf":1.4142135623730951}}},"h":{"df":2,"docs":{"1389":{"tf":1.0},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1089":{"tf":1.0},"1094":{"tf":1.0}}}}}},"w":{"df":24,"docs":{"1":{"tf":1.0},"1004":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"1150":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1307":{"tf":1.0},"1317":{"tf":1.0},"1338":{"tf":1.0},"1357":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"1647":{"tf":1.0},"38":{"tf":1.0},"434":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"669":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1174":{"tf":1.0}}},"m":{"df":27,"docs":{"1052":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1429":{"tf":1.0},"148":{"tf":1.0},"152":{"tf":1.7320508075688772},"162":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"1655":{"tf":1.0},"399":{"tf":1.0},"401":{"tf":1.7320508075688772},"430":{"tf":1.0},"432":{"tf":1.7320508075688772},"504":{"tf":1.0},"517":{"tf":1.4142135623730951},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"78":{"tf":1.0},"85":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1018":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":21,"docs":{"1033":{"tf":1.0},"1082":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1519":{"tf":1.4142135623730951},"1596":{"tf":1.7320508075688772},"1607":{"tf":1.0},"1647":{"tf":1.4142135623730951},"375":{"tf":1.0},"412":{"tf":1.0},"444":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.4142135623730951},"54":{"tf":1.0},"597":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"95":{"tf":1.7320508075688772},"964":{"tf":1.0},"994":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1008":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.4142135623730951},"1169":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1521":{"tf":1.0},"1589":{"tf":1.4142135623730951},"454":{"tf":1.0},"543":{"tf":1.7320508075688772},"555":{"tf":1.7320508075688772},"825":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"873":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"850":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":59,"docs":{"1145":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1162":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1165":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.7320508075688772},"1532":{"tf":1.7320508075688772},"1586":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1589":{"tf":1.7320508075688772},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"362":{"tf":1.0},"441":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.7320508075688772},"451":{"tf":1.0},"452":{"tf":1.0},"455":{"tf":1.4142135623730951},"52":{"tf":1.0},"54":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"691":{"tf":1.0},"72":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"839":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":2.0},"894":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"981":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1586":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"451":{"tf":1.0},"452":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1634":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":8,"docs":{"1361":{"tf":1.0},"1377":{"tf":1.0},"361":{"tf":1.4142135623730951},"367":{"tf":1.0},"372":{"tf":1.4142135623730951},"383":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":70,"docs":{"1049":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1361":{"tf":2.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":2.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1634":{"tf":1.0},"1635":{"tf":1.0},"174":{"tf":1.4142135623730951},"336":{"tf":1.0},"359":{"tf":1.4142135623730951},"360":{"tf":1.4142135623730951},"361":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":2.449489742783178},"368":{"tf":1.4142135623730951},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.7320508075688772},"983":{"tf":1.7320508075688772}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"919":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"984":{"tf":1.0}}}},"r":{"df":3,"docs":{"1015":{"tf":1.0},"1540":{"tf":1.0},"90":{"tf":1.0}}}}},"df":0,"docs":{}},"df":17,"docs":{"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.4142135623730951},"1409":{"tf":1.4142135623730951},"1410":{"tf":2.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"1609":{"tf":1.0},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"276":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"49":{"tf":1.0},"834":{"tf":1.0},"841":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1182":{"tf":1.0},"1187":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"985":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}}}}}}},"i":{"d":{"c":{"df":2,"docs":{"985":{"tf":1.0},"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"(":{"(":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":25,"docs":{"1319":{"tf":2.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":2.449489742783178},"1609":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"634":{"tf":1.0},"761":{"tf":1.0},"805":{"tf":1.0}}},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1640":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1640":{"tf":1.0}}},"df":0,"docs":{}}},"df":18,"docs":{"1009":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1086":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1130":{"tf":2.23606797749979},"1180":{"tf":1.0},"1476":{"tf":1.0},"1588":{"tf":1.0},"1626":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.7320508075688772},"551":{"tf":1.0},"624":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1":{"tf":1.0},"1067":{"tf":1.0},"1616":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"n":{"c":{"df":16,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1182":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1389":{"tf":1.0},"245":{"tf":1.0},"441":{"tf":1.0},"463":{"tf":1.0},"551":{"tf":1.0},"572":{"tf":1.0},"675":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0}}},"df":54,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"1067":{"tf":1.0},"1118":{"tf":1.0},"1137":{"tf":1.0},"1139":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1206":{"tf":1.0},"1254":{"tf":1.4142135623730951},"129":{"tf":1.0},"1359":{"tf":1.0},"1384":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1388":{"tf":1.0},"1422":{"tf":1.0},"1485":{"tf":1.0},"1514":{"tf":1.0},"1528":{"tf":1.0},"156":{"tf":1.0},"1588":{"tf":1.0},"1609":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0},"224":{"tf":1.0},"301":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"529":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"760":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"807":{"tf":1.0},"83":{"tf":1.0},"892":{"tf":1.0},"938":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"999":{"tf":1.0}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1642":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"744":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":3,"docs":{"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}},"df":10,"docs":{"1229":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"137":{"tf":1.4142135623730951},"2":{"tf":1.0},"990":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"1645":{"tf":1.0},"182":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1366":{"tf":3.0},"1367":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.7320508075688772}}},"y":{"_":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"df":1,"docs":{"1366":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"r":{"df":80,"docs":{"1008":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"1129":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1366":{"tf":1.0},"1385":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1411":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":2.0},"1439":{"tf":1.0},"1449":{"tf":1.0},"1453":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1462":{"tf":1.0},"1528":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1540":{"tf":1.0},"1566":{"tf":1.0},"1618":{"tf":1.0},"177":{"tf":1.0},"213":{"tf":1.0},"239":{"tf":1.4142135623730951},"309":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"369":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"399":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"490":{"tf":1.4142135623730951},"50":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"551":{"tf":1.0},"582":{"tf":2.0},"583":{"tf":1.0},"592":{"tf":1.0},"594":{"tf":1.0},"628":{"tf":1.0},"637":{"tf":1.4142135623730951},"669":{"tf":1.0},"671":{"tf":1.0},"698":{"tf":1.0},"703":{"tf":1.0},"726":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"788":{"tf":1.0},"799":{"tf":1.0},"822":{"tf":1.0},"850":{"tf":1.0},"882":{"tf":1.0},"930":{"tf":1.0},"934":{"tf":1.0},"994":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"989":{"tf":1.0}}}}}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"1023":{"tf":1.0},"440":{"tf":1.0},"551":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"954":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"694":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":116,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.7320508075688772},"106":{"tf":1.0},"118":{"tf":1.0},"1265":{"tf":1.0},"127":{"tf":1.0},"1290":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1366":{"tf":1.0},"1427":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.4142135623730951},"1501":{"tf":1.7320508075688772},"1506":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1583":{"tf":1.0},"1592":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1604":{"tf":1.0},"1606":{"tf":1.4142135623730951},"1640":{"tf":1.0},"1656":{"tf":1.4142135623730951},"17":{"tf":1.0},"174":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"200":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"296":{"tf":1.4142135623730951},"300":{"tf":1.4142135623730951},"321":{"tf":1.0},"348":{"tf":1.0},"397":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.4142135623730951},"449":{"tf":2.0},"450":{"tf":1.7320508075688772},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"51":{"tf":1.4142135623730951},"531":{"tf":1.4142135623730951},"537":{"tf":1.0},"54":{"tf":1.0},"543":{"tf":1.7320508075688772},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"553":{"tf":1.0},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"567":{"tf":1.0},"597":{"tf":2.23606797749979},"599":{"tf":1.4142135623730951},"600":{"tf":1.4142135623730951},"601":{"tf":1.7320508075688772},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"611":{"tf":1.0},"616":{"tf":3.0},"630":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"683":{"tf":1.4142135623730951},"686":{"tf":1.0},"688":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"756":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"775":{"tf":1.7320508075688772},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"78":{"tf":1.7320508075688772},"785":{"tf":1.0},"797":{"tf":1.4142135623730951},"806":{"tf":1.4142135623730951},"81":{"tf":1.0},"823":{"tf":1.0},"834":{"tf":1.0},"919":{"tf":1.4142135623730951},"935":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.0},"949":{"tf":1.4142135623730951},"952":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"981":{"tf":1.0},"999":{"tf":2.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"618":{"tf":1.0},"619":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}}}}}}}},"d":{"df":3,"docs":{"1157":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1172":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":17,"docs":{"1008":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.0},"122":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1597":{"tf":1.0},"20":{"tf":1.0},"38":{"tf":1.4142135623730951},"51":{"tf":1.0},"588":{"tf":1.7320508075688772},"69":{"tf":1.0},"810":{"tf":1.0},"830":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"1141":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"134":{"tf":1.0},"220":{"tf":1.0},"33":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.7320508075688772},"836":{"tf":1.0},"850":{"tf":1.4142135623730951},"988":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"834":{"tf":1.0}}}}}},"df":9,"docs":{"1187":{"tf":2.6457513110645907},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"220":{"tf":1.0},"687":{"tf":1.0},"829":{"tf":1.0},"836":{"tf":1.4142135623730951},"837":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1482":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1503":{"tf":1.0},"203":{"tf":1.7320508075688772},"260":{"tf":1.0},"261":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1456":{"tf":1.4142135623730951}}},"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":{"1474":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1433":{"tf":1.4142135623730951}}},"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":{"1447":{"tf":2.0}}}}}}}}},"df":40,"docs":{"1071":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1217":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1511":{"tf":1.0},"1551":{"tf":1.0},"1645":{"tf":1.0},"203":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":1.0},"348":{"tf":1.0},"354":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"54":{"tf":1.4142135623730951},"565":{"tf":1.0},"607":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"717":{"tf":1.0},"721":{"tf":1.0},"781":{"tf":1.0},"881":{"tf":1.0},"902":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"998":{"tf":1.0}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":19,"docs":{"1008":{"tf":2.6457513110645907},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1215":{"tf":1.7320508075688772},"1220":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"744":{"tf":1.0},"78":{"tf":1.4142135623730951},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":2.0},"994":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"1368":{"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":{}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1368":{"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":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1368":{"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":7,"docs":{"1366":{"tf":1.7320508075688772},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1370":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.0},"983":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1187":{"tf":1.0}}},"df":1,"docs":{"692":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":9,"docs":{"107":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1366":{"tf":3.1622776601683795},"1367":{"tf":2.449489742783178},"1368":{"tf":1.7320508075688772},"1369":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"174":{"tf":2.449489742783178},"175":{"tf":1.7320508075688772},"336":{"tf":2.449489742783178},"369":{"tf":2.449489742783178},"375":{"tf":1.4142135623730951},"379":{"tf":1.7320508075688772},"384":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.0}},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"139":{"tf":1.7320508075688772},"885":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1476":{"tf":1.0}}}},"df":0,"docs":{}},"df":10,"docs":{"1034":{"tf":1.0},"1191":{"tf":1.0},"1206":{"tf":1.0},"14":{"tf":1.0},"1533":{"tf":1.0},"1559":{"tf":1.0},"1645":{"tf":1.0},"435":{"tf":1.0},"503":{"tf":1.0},"670":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"563":{"tf":1.0},"570":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"474":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"247":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1418":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1418":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1418":{"tf":1.4142135623730951},"1470":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"771":{"tf":1.0},"880":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1465":{"tf":1.0},"1470":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.7320508075688772},"118":{"tf":1.0},"1229":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1389":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1409":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":2.23606797749979},"1470":{"tf":1.4142135623730951},"1486":{"tf":2.0},"1487":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"1506":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1579":{"tf":1.4142135623730951},"1589":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":2.0},"197":{"tf":1.4142135623730951},"202":{"tf":2.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"247":{"tf":1.7320508075688772},"250":{"tf":1.0},"259":{"tf":1.4142135623730951},"314":{"tf":1.0},"316":{"tf":1.0},"350":{"tf":1.0},"36":{"tf":1.4142135623730951},"379":{"tf":1.0},"41":{"tf":1.0},"474":{"tf":1.7320508075688772},"475":{"tf":1.0},"476":{"tf":1.0},"512":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"710":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"756":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"597":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1150":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"1096":{"tf":1.0},"1136":{"tf":1.0},"1211":{"tf":1.0},"1388":{"tf":1.0},"1586":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":11,"docs":{"1200":{"tf":1.0},"1367":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1389":{"tf":1.0},"32":{"tf":1.4142135623730951},"520":{"tf":1.0},"562":{"tf":1.0},"764":{"tf":1.0},"81":{"tf":1.0},"997":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1521":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1090":{"tf":1.4142135623730951},"988":{"tf":1.0},"989":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1530":{"tf":1.0},"982":{"tf":1.0}}}}},"df":20,"docs":{"1198":{"tf":1.0},"1279":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1508":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1530":{"tf":1.0},"1601":{"tf":1.0},"1613":{"tf":1.0},"207":{"tf":1.0},"354":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.0},"980":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1100":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1248":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1513":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"3":{"tf":1.0},"308":{"tf":1.4142135623730951},"36":{"tf":1.0},"368":{"tf":1.4142135623730951},"563":{"tf":1.4142135623730951},"834":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"911":{"tf":1.0},"914":{"tf":1.4142135623730951},"934":{"tf":1.0},"983":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1202":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1078":{"tf":1.0},"1199":{"tf":1.4142135623730951}}}}}}}}}}},"p":{"9":{"9":{"(":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"89":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1055":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"147":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"405":{"tf":1.7320508075688772},"410":{"tf":1.0},"430":{"tf":1.0},"527":{"tf":1.0},"590":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":1.0},"635":{"tf":1.7320508075688772},"765":{"tf":1.0},"800":{"tf":1.0},"805":{"tf":1.0},"807":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"426":{"tf":1.0},"427":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1105":{"tf":1.0},"975":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":11,"docs":{"1196":{"tf":1.0},"1205":{"tf":1.0},"1273":{"tf":1.0},"1476":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"367":{"tf":1.0},"765":{"tf":1.0},"970":{"tf":1.0},"984":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1433":{"tf":1.0},"1456":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1007":{"tf":1.0},"1009":{"tf":1.0},"1077":{"tf":1.0},"1135":{"tf":1.0},"1278":{"tf":1.0},"217":{"tf":1.0},"49":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.0},"996":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1235":{"tf":1.0},"1236":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"m":{"df":8,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"576":{"tf":1.0},"608":{"tf":1.0},"782":{"tf":1.0},"790":{"tf":1.0},"794":{"tf":1.0},"89":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":67,"docs":{"116":{"tf":1.0},"1298":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"495":{"tf":1.0},"533":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"731":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"89":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1122":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1276":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1382":{"tf":1.0},"1387":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1357":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"1294":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"778":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":12,"docs":{"1059":{"tf":1.0},"1262":{"tf":1.0},"1294":{"tf":1.0},"1299":{"tf":1.0},"1359":{"tf":1.0},"1521":{"tf":1.0},"385":{"tf":1.0},"604":{"tf":1.0},"778":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"954":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"604":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"df":1,"docs":{"533":{"tf":1.0}}},"s":{"df":20,"docs":{"1183":{"tf":1.0},"1215":{"tf":2.0},"1217":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1246":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"1497":{"tf":1.0},"1547":{"tf":1.0},"1561":{"tf":1.0},"1597":{"tf":1.0},"668":{"tf":1.7320508075688772},"689":{"tf":1.0},"739":{"tf":2.0},"740":{"tf":1.0},"774":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"953":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"739":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"739":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"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":1,"docs":{"1472":{"tf":1.0}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"740":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"740":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"537":{"tf":1.0}}}}},"t":{"df":5,"docs":{"1152":{"tf":1.0},"1328":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1388":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"1206":{"tf":1.7320508075688772},"1219":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1389":{"tf":1.0},"176":{"tf":1.0},"451":{"tf":1.0},"687":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"26":{"tf":1.0},"282":{"tf":1.0},"48":{"tf":1.0},"62":{"tf":1.0},"832":{"tf":1.0}}}}},"df":42,"docs":{"102":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.4142135623730951},"104":{"tf":1.0},"1063":{"tf":1.0},"1141":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1209":{"tf":1.0},"1220":{"tf":1.4142135623730951},"136":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"19":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"295":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"440":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.4142135623730951},"816":{"tf":1.0},"859":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"938":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1186":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1413":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1185":{"tf":1.0},"1413":{"tf":1.0}}}}},"s":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"[":{"1":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1219":{"tf":1.0},"1223":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1419":{"tf":2.0},"157":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"297":{"tf":1.0},"438":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"51":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"672":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"698":{"tf":1.4142135623730951},"761":{"tf":1.0},"78":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1419":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":31,"docs":{"1001":{"tf":1.0},"1008":{"tf":4.47213595499958},"1046":{"tf":2.0},"1052":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":4.123105625617661},"1515":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.7320508075688772},"1548":{"tf":2.23606797749979},"156":{"tf":2.23606797749979},"1613":{"tf":1.0},"1645":{"tf":1.7320508075688772},"1653":{"tf":1.0},"357":{"tf":1.0},"438":{"tf":1.7320508075688772},"441":{"tf":1.0},"499":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"685":{"tf":1.4142135623730951},"77":{"tf":1.7320508075688772},"78":{"tf":3.0},"806":{"tf":1.0},"89":{"tf":2.0},"899":{"tf":1.0},"975":{"tf":1.7320508075688772},"980":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1083":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1226":{"tf":1.0},"537":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1470":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.7320508075688772}}}}},"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":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"343":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"196":{"tf":1.0},"232":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":118,"docs":{"1033":{"tf":3.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1178":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1194":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1229":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1255":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1272":{"tf":1.4142135623730951},"13":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":2.23606797749979},"1498":{"tf":2.23606797749979},"1499":{"tf":2.0},"1500":{"tf":2.23606797749979},"1515":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1526":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1577":{"tf":1.0},"1591":{"tf":1.0},"1605":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"1647":{"tf":1.0},"1653":{"tf":1.0},"170":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772},"204":{"tf":2.0},"206":{"tf":1.0},"35":{"tf":1.4142135623730951},"357":{"tf":1.0},"36":{"tf":1.4142135623730951},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"44":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"447":{"tf":1.0},"45":{"tf":1.0},"452":{"tf":1.0},"458":{"tf":1.4142135623730951},"46":{"tf":1.0},"473":{"tf":1.0},"476":{"tf":1.0},"495":{"tf":1.0},"507":{"tf":1.7320508075688772},"511":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"567":{"tf":1.7320508075688772},"571":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"600":{"tf":1.0},"611":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"694":{"tf":1.4142135623730951},"709":{"tf":1.0},"712":{"tf":1.0},"731":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.4142135623730951},"757":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"823":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.4142135623730951},"874":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"973":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":2.6457513110645907},"999":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"i":{"b":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":37,"docs":{"1157":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1167":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1395":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1502":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1608":{"tf":1.4142135623730951},"1621":{"tf":1.0},"19":{"tf":1.0},"510":{"tf":1.4142135623730951},"514":{"tf":1.4142135623730951},"521":{"tf":1.0},"552":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.4142135623730951},"75":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"812":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.0},"939":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1167":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}},"'":{"a":{"df":1,"docs":{"1458":{"tf":1.0}}},"b":{"df":1,"docs":{"1458":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1458":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"df":0,"docs":{}},"df":47,"docs":{"1040":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1387":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1535":{"tf":1.0},"1651":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"554":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.4142135623730951},"567":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"570":{"tf":2.8284271247461903},"572":{"tf":1.0},"574":{"tf":2.6457513110645907},"577":{"tf":1.7320508075688772},"579":{"tf":1.0},"580":{"tf":1.0},"582":{"tf":1.4142135623730951},"583":{"tf":1.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":2.23606797749979},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"793":{"tf":1.0},"808":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"462":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"843":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1164":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":3,"docs":{"1008":{"tf":1.0},"1625":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1068":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"1403":{"tf":1.0},"942":{"tf":1.0}}}},"df":4,"docs":{"1233":{"tf":1.0},"1418":{"tf":1.0},"1544":{"tf":1.0},"183":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1089":{"tf":1.0},"527":{"tf":1.0}}}},"m":{"df":4,"docs":{"1127":{"tf":2.8284271247461903},"1547":{"tf":1.0},"456":{"tf":1.7320508075688772},"692":{"tf":1.7320508075688772}}},"n":{"d":{"df":13,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1409":{"tf":1.0},"1442":{"tf":1.0},"1465":{"tf":1.0},"389":{"tf":1.0},"452":{"tf":1.0},"688":{"tf":1.0},"938":{"tf":1.4142135623730951},"951":{"tf":1.0},"955":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1408":{"tf":1.0},"1409":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"220":{"tf":1.0},"836":{"tf":1.0}}}}},"r":{"df":18,"docs":{"102":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1589":{"tf":1.0},"385":{"tf":1.0},"546":{"tf":1.0},"549":{"tf":1.4142135623730951},"550":{"tf":1.0},"551":{"tf":1.4142135623730951},"557":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"33":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":15,"docs":{"1008":{"tf":1.0},"1031":{"tf":1.0},"1079":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1376":{"tf":1.0},"1461":{"tf":1.0},"25":{"tf":1.0},"274":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"954":{"tf":1.0},"986":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1034":{"tf":1.0},"1068":{"tf":1.0},"1083":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1118":{"tf":1.0},"237":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"249":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":14,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1052":{"tf":1.0},"1188":{"tf":1.0},"1352":{"tf":2.0},"1537":{"tf":1.7320508075688772},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1653":{"tf":1.0},"183":{"tf":1.4142135623730951},"431":{"tf":2.23606797749979},"509":{"tf":1.0},"63":{"tf":1.0},"664":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":27,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"13":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"2":{"tf":1.0},"438":{"tf":1.4142135623730951},"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0},"51":{"tf":1.0},"672":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.4142135623730951},"78":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"220":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"1187":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"897":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"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":{"18":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1161":{"tf":1.0},"225":{"tf":1.0},"843":{"tf":1.7320508075688772},"844":{"tf":1.0},"845":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1137":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"842":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":3,"docs":{"1328":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772}}},"p":{"df":23,"docs":{"1052":{"tf":1.0},"11":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1452":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.7320508075688772},"1635":{"tf":1.0},"1655":{"tf":1.0},"628":{"tf":1.0},"630":{"tf":2.0},"633":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.7320508075688772},"665":{"tf":2.23606797749979},"756":{"tf":2.0},"766":{"tf":1.0},"78":{"tf":1.0},"87":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":3,"docs":{"1487":{"tf":1.4142135623730951},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"107":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1354":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1609":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"332":{"tf":1.0},"388":{"tf":1.0},"670":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1413":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"1388":{"tf":1.0}},"g":{"df":1,"docs":{"182":{"tf":1.0}}},"i":{"/":{"c":{"a":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1139":{"tf":1.0}}}}},"df":2,"docs":{"1109":{"tf":1.0},"1125":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1535":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"df":1,"docs":{"353":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"118":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951},"37":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}}},"n":{"df":20,"docs":{"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1094":{"tf":1.0},"1143":{"tf":1.0},"1405":{"tf":1.4142135623730951},"144":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.7320508075688772},"918":{"tf":1.0},"987":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":17,"docs":{"1229":{"tf":1.4142135623730951},"142":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1530":{"tf":1.0},"1641":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.7320508075688772},"176":{"tf":2.0},"32":{"tf":1.0},"980":{"tf":1.0},"985":{"tf":1.0},"989":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"850":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":10,"docs":{"123":{"tf":1.0},"138":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"438":{"tf":1.0},"5":{"tf":1.0},"508":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"890":{"tf":1.0}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.7320508075688772},"660":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1187":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1477":{"tf":1.0},"3":{"tf":1.4142135623730951},"405":{"tf":1.0},"587":{"tf":1.0},"794":{"tf":1.0},"881":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":26,"docs":{"1":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1068":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.449489742783178},"1270":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.7320508075688772},"1286":{"tf":1.0},"1289":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"132":{"tf":1.7320508075688772},"134":{"tf":1.0},"1359":{"tf":1.4142135623730951},"137":{"tf":2.0},"139":{"tf":2.0},"141":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1588":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"42":{"tf":1.0},"807":{"tf":1.0},"842":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1268":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1647":{"tf":1.0}}}}}}}},"df":1,"docs":{"1647":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1504":{"tf":1.0},"447":{"tf":1.0},"681":{"tf":1.0},"808":{"tf":1.0}}}},"df":0,"docs":{}},"df":5,"docs":{"1435":{"tf":1.7320508075688772},"567":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"582":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1486":{"tf":1.0},"1627":{"tf":1.0},"984":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"996":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1089":{"tf":1.0},"1146":{"tf":1.0},"1497":{"tf":1.0},"32":{"tf":1.0},"810":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1162":{"tf":1.4142135623730951},"1165":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"843":{"tf":1.0},"845":{"tf":1.0}}}},"df":38,"docs":{"1042":{"tf":1.0},"1067":{"tf":1.0},"1079":{"tf":1.0},"1095":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1121":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.7320508075688772},"121":{"tf":1.0},"1278":{"tf":1.0},"1376":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"574":{"tf":1.4142135623730951},"583":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1137":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1239":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":42,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1079":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1118":{"tf":1.0},"1120":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.7320508075688772},"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"424":{"tf":1.7320508075688772},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"550":{"tf":1.0},"652":{"tf":1.7320508075688772},"672":{"tf":1.4142135623730951},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.7320508075688772},"975":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":27,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1114":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1138":{"tf":1.0},"1143":{"tf":1.0},"1376":{"tf":1.0},"1554":{"tf":1.0},"1640":{"tf":1.4142135623730951},"177":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"423":{"tf":1.7320508075688772},"65":{"tf":1.0},"651":{"tf":1.7320508075688772},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"89":{"tf":1.0},"975":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":17,"docs":{"1034":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1092":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1242":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1397":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"185":{"tf":1.0},"236":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"309":{"tf":1.0},"326":{"tf":1.4142135623730951},"390":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"264":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"986":{"tf":1.0}},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.4142135623730951},"142":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.4142135623730951},"543":{"tf":1.0},"555":{"tf":1.0},"762":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"916":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"237":{"tf":1.0},"362":{"tf":1.0},"503":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"916":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"313":{"tf":1.0},"994":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}},"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":2,"docs":{"1281":{"tf":1.0},"1314":{"tf":1.4142135623730951}}}}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1029":{"tf":1.0},"1198":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"156":{"tf":1.0},"1567":{"tf":1.0},"1589":{"tf":1.0},"1607":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1064":{"tf":1.0},"1275":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1597":{"tf":1.0},"994":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"967":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1017":{"tf":1.0},"1033":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.0},"1219":{"tf":1.0},"1236":{"tf":1.0},"134":{"tf":1.0},"1487":{"tf":1.0},"295":{"tf":1.0},"305":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.0},"994":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":16,"docs":{"1064":{"tf":1.0},"1071":{"tf":1.0},"1086":{"tf":1.0},"1382":{"tf":1.0},"260":{"tf":1.0},"265":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"69":{"tf":1.0},"859":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0}},"s":{"df":2,"docs":{"1325":{"tf":1.0},"1382":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"964":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":8,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0},"1347":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"224":{"tf":1.0},"842":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"143":{"tf":1.0},"1647":{"tf":1.0},"594":{"tf":1.0},"768":{"tf":1.0},"845":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1229":{"tf":1.4142135623730951},"1530":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"64":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1019":{"tf":1.0},"995":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"679":{"tf":1.0},"699":{"tf":1.0}},"r":{"df":3,"docs":{"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"661":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1459":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"661":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1461":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"634":{"tf":1.0},"727":{"tf":1.0},"770":{"tf":1.0}},"r":{"df":2,"docs":{"725":{"tf":1.0},"737":{"tf":1.0}}}}},"c":{"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":{"777":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"735":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"656":{"tf":1.0},"714":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"772":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"734":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"634":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"720":{"tf":1.0},"739":{"tf":1.0},"777":{"tf":1.0},"780":{"tf":1.0}}}}}},"df":4,"docs":{"634":{"tf":1.0},"708":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"737":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"783":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"689":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"d":{"df":1,"docs":{"1185":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1032":{"tf":1.0},"1315":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"689":{"tf":1.0},"852":{"tf":1.4142135623730951},"89":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1286":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1320":{"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":{"102":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"675":{"tf":1.0},"676":{"tf":1.0},"701":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0},"1474":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1316":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"680":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"109":{"tf":1.0},"679":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1320":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"701":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1319":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":2,"docs":{"1286":{"tf":1.0},"1474":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1456":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0}}}},"o":{"df":1,"docs":{"701":{"tf":1.0}},"w":{"df":1,"docs":{"1185":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1322":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"687":{"tf":1.0},"688":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"675":{"tf":1.0}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"680":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1464":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1462":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1104":{"tf":1.0},"1319":{"tf":1.0},"1322":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":12,"docs":{"110":{"tf":1.0},"1171":{"tf":1.0},"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1351":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"699":{"tf":1.0},"701":{"tf":1.0}}}},"s":{"df":1,"docs":{"1454":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"r":{"df":1,"docs":{"95":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"798":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"656":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"736":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"798":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"736":{"tf":1.0}}}}}}}},"df":3,"docs":{"102":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1466":{"tf":2.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1515":{"tf":1.0},"672":{"tf":1.0},"78":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"692":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":19,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1497":{"tf":1.7320508075688772},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.0},"1520":{"tf":1.0},"187":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"363":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"345":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"351":{"tf":1.0},"365":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1384":{"tf":1.0},"999":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1070":{"tf":1.0},"1193":{"tf":1.0},"1596":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1008":{"tf":1.4142135623730951},"1075":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1416":{"tf":1.0},"1487":{"tf":1.0},"78":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1331":{"tf":1.4142135623730951},"842":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":49,"docs":{"1002":{"tf":1.0},"1004":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":2.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1066":{"tf":1.0},"1091":{"tf":1.0},"1095":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1530":{"tf":1.0},"1546":{"tf":2.0},"1547":{"tf":1.0},"1548":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"1613":{"tf":1.0},"1653":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"27":{"tf":1.0},"357":{"tf":1.4142135623730951},"440":{"tf":1.0},"46":{"tf":1.0},"499":{"tf":1.4142135623730951},"606":{"tf":1.0},"66":{"tf":1.0},"685":{"tf":1.0},"780":{"tf":1.0},"797":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.4142135623730951},"980":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":10,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1546":{"tf":1.0},"1643":{"tf":1.0},"1645":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"587":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1105":{"tf":1.0},"65":{"tf":1.0},"985":{"tf":1.0}}}}}}},"l":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"1059":{"tf":2.23606797749979},"1194":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1057":{"tf":1.0},"1655":{"tf":1.4142135623730951},"989":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"26":{"tf":1.0},"281":{"tf":1.0},"55":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":3,"docs":{"1391":{"tf":1.0},"1394":{"tf":1.0},"532":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"376":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"559":{"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":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"548":{"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":51,"docs":{"1003":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1160":{"tf":1.0},"1185":{"tf":1.0},"1210":{"tf":1.0},"1224":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1412":{"tf":1.7320508075688772},"1418":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1500":{"tf":1.4142135623730951},"221":{"tf":2.0},"224":{"tf":2.0},"245":{"tf":1.0},"260":{"tf":1.0},"274":{"tf":1.0},"278":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"301":{"tf":1.0},"305":{"tf":1.0},"439":{"tf":1.0},"441":{"tf":1.0},"45":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"594":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"66":{"tf":1.4142135623730951},"673":{"tf":1.0},"675":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"807":{"tf":1.0},"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1470":{"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":3,"docs":{"1367":{"tf":2.0},"1470":{"tf":1.0},"388":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1423":{"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":3,"docs":{"1423":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0}},"u":{"c":{"df":15,"docs":{"1238":{"tf":1.0},"1245":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1381":{"tf":1.0},"244":{"tf":1.0},"42":{"tf":1.0},"534":{"tf":1.0},"920":{"tf":1.0},"939":{"tf":1.0}},"t":{"df":38,"docs":{"100":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1018":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1219":{"tf":1.0},"1265":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1368":{"tf":1.4142135623730951},"1423":{"tf":1.0},"147":{"tf":1.0},"1517":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1533":{"tf":1.0},"1536":{"tf":1.4142135623730951},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"39":{"tf":1.0},"392":{"tf":1.7320508075688772},"57":{"tf":1.0},"78":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"842":{"tf":1.0},"954":{"tf":1.0},"989":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":{"815":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1079":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"440":{"tf":1.0},"499":{"tf":1.0},"616":{"tf":1.0},"641":{"tf":1.7320508075688772},"735":{"tf":1.0},"744":{"tf":1.7320508075688772},"805":{"tf":1.0},"806":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"887":{"tf":1.0},"951":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1139":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1405":{"tf":2.449489742783178},"1445":{"tf":1.0},"1468":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.4142135623730951},"398":{"tf":1.0},"426":{"tf":1.7320508075688772},"472":{"tf":1.0},"627":{"tf":1.0},"654":{"tf":1.7320508075688772},"660":{"tf":1.0},"708":{"tf":1.0},"849":{"tf":1.0},"897":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.7320508075688772},"928":{"tf":1.0},"931":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":6,"docs":{"1517":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1525":{"tf":1.0},"379":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1267":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"1623":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"622":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"441":{"tf":1.0},"442":{"tf":1.0}}}}}}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"607":{"tf":1.0},"611":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"451":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"445":{"tf":1.0},"448":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1391":{"tf":1.0},"1487":{"tf":1.4142135623730951},"525":{"tf":1.0},"526":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"534":{"tf":1.0},"78":{"tf":1.0},"89":{"tf":1.0},"939":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":16,"docs":{"104":{"tf":1.0},"1043":{"tf":1.0},"105":{"tf":1.0},"1097":{"tf":1.0},"1278":{"tf":1.0},"128":{"tf":1.0},"1302":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1595":{"tf":1.0},"227":{"tf":1.0},"242":{"tf":1.0},"565":{"tf":1.0},"70":{"tf":1.0},"998":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1238":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1238":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1059":{"tf":1.0},"1094":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.7320508075688772},"329":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1012":{"tf":1.0},"1537":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":6,"docs":{"1032":{"tf":1.0},"1224":{"tf":1.0},"1581":{"tf":1.0},"396":{"tf":1.0},"94":{"tf":1.0},"99":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":30,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1164":{"tf":1.7320508075688772},"1165":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1167":{"tf":1.7320508075688772},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1237":{"tf":1.7320508075688772},"1238":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1350":{"tf":1.0},"49":{"tf":1.0},"822":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"889":{"tf":1.4142135623730951},"915":{"tf":1.0},"917":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"276":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"104":{"tf":1.0},"1220":{"tf":1.4142135623730951},"244":{"tf":1.0},"248":{"tf":1.0},"365":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"887":{"tf":1.7320508075688772},"888":{"tf":1.0},"910":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1238":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1481":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1001":{"tf":1.7320508075688772},"1008":{"tf":1.4142135623730951},"1017":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1056":{"tf":1.0},"1091":{"tf":1.0},"1115":{"tf":1.0},"1125":{"tf":1.0},"1188":{"tf":1.0},"1194":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1537":{"tf":1.0},"1651":{"tf":1.0},"237":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"549":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0},"843":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"1193":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"175":{"tf":2.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"388":{"tf":1.0},"434":{"tf":1.0},"465":{"tf":1.0},"502":{"tf":1.0},"589":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"702":{"tf":1.0},"745":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"38":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":19,"docs":{"1019":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1199":{"tf":1.0},"121":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"1354":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"521":{"tf":1.0},"537":{"tf":1.0},"553":{"tf":1.0},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"534":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":38,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1391":{"tf":1.4142135623730951},"19":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"422":{"tf":1.0},"513":{"tf":1.0},"521":{"tf":1.0},"526":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"534":{"tf":1.4142135623730951},"552":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"650":{"tf":1.0},"755":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"920":{"tf":1.0},"933":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"992":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1035":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1134":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1199":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.0},"132":{"tf":1.0},"1332":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1378":{"tf":1.0},"139":{"tf":1.0},"1391":{"tf":1.0},"1397":{"tf":1.0},"1413":{"tf":2.0},"1416":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"1482":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1548":{"tf":1.0},"1558":{"tf":1.0},"185":{"tf":1.0},"197":{"tf":1.7320508075688772},"215":{"tf":1.0},"293":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"312":{"tf":2.6457513110645907},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.4142135623730951},"332":{"tf":1.0},"334":{"tf":1.0},"345":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.0},"398":{"tf":1.0},"436":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"553":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"570":{"tf":1.0},"58":{"tf":2.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"832":{"tf":1.0},"837":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"859":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.4142135623730951},"944":{"tf":1.0},"987":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"526":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"?":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"?":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"525":{"tf":1.0},"526":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":1,"docs":{"63":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":7,"docs":{"1191":{"tf":2.449489742783178},"1250":{"tf":1.0},"1255":{"tf":1.0},"144":{"tf":1.0},"36":{"tf":1.0},"509":{"tf":1.0},"621":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"1034":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":30,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1105":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"227":{"tf":1.0},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"65":{"tf":1.0},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1229":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":5,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1380":{"tf":1.0},"339":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"119":{"tf":1.0},"1271":{"tf":1.0},"1283":{"tf":1.0},"691":{"tf":1.0}}}}}}},"df":1,"docs":{"1388":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":8,"docs":{"1007":{"tf":1.0},"1126":{"tf":1.0},"1643":{"tf":1.0},"412":{"tf":1.0},"426":{"tf":1.0},"654":{"tf":1.0},"796":{"tf":1.0},"975":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"229":{"tf":1.0}}}}}},"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"721":{"tf":1.0},"729":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"1031":{"tf":1.0},"1082":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"694":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1082":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"1074":{"tf":1.4142135623730951},"354":{"tf":1.0},"699":{"tf":1.0},"781":{"tf":1.7320508075688772},"787":{"tf":1.7320508075688772}}}}}},"df":100,"docs":{"1005":{"tf":1.0},"1007":{"tf":1.0},"1022":{"tf":1.7320508075688772},"1027":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1033":{"tf":1.0},"1034":{"tf":1.0},"1052":{"tf":1.0},"1059":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1077":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1101":{"tf":1.0},"1113":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1136":{"tf":1.0},"1138":{"tf":1.0},"1140":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"119":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1201":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1270":{"tf":1.0},"1283":{"tf":1.0},"1331":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1413":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1587":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"1606":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"308":{"tf":1.4142135623730951},"313":{"tf":1.0},"325":{"tf":1.0},"331":{"tf":1.0},"349":{"tf":1.7320508075688772},"354":{"tf":1.4142135623730951},"357":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"462":{"tf":1.4142135623730951},"485":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"53":{"tf":1.0},"549":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.7320508075688772},"692":{"tf":2.0},"694":{"tf":1.0},"699":{"tf":1.4142135623730951},"721":{"tf":1.0},"781":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"808":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"91":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"979":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.7320508075688772},"998":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"485":{"tf":1.0},"493":{"tf":1.0}}}}}},"df":4,"docs":{"462":{"tf":1.0},"607":{"tf":1.0},"613":{"tf":1.0},"691":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"607":{"tf":1.0},"613":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":18,"docs":{"1033":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1514":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"691":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"458":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":23,"docs":{"1":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1413":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1558":{"tf":1.0},"197":{"tf":1.0},"240":{"tf":1.0},"29":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"351":{"tf":1.0},"501":{"tf":1.0},"737":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"1622":{"tf":1.4142135623730951},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1098":{"tf":1.0},"1124":{"tf":1.0},"1283":{"tf":1.0},"1353":{"tf":1.0},"19":{"tf":1.0},"250":{"tf":1.0},"272":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"914":{"tf":1.0},"926":{"tf":1.4142135623730951},"928":{"tf":1.0},"999":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1233":{"tf":1.0}}}}},"w":{"df":1,"docs":{"1487":{"tf":1.0}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"655":{"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":{},"o":{"3":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"630":{"tf":1.0},"756":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1472":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1223":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1220":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1215":{"tf":1.4142135623730951},"1217":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1224":{"tf":1.0},"1230":{"tf":1.0},"1472":{"tf":1.7320508075688772}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":5,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},":":{"3":{".":{"1":{"2":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"659":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":133,"docs":{"1":{"tf":1.0},"102":{"tf":1.4142135623730951},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1142":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1215":{"tf":1.0},"1220":{"tf":1.0},"1223":{"tf":1.0},"1226":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1254":{"tf":1.7320508075688772},"1257":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.0},"1266":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1314":{"tf":1.0},"1332":{"tf":1.0},"1357":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"145":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1459":{"tf":1.0},"146":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.0},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1479":{"tf":1.0},"148":{"tf":1.0},"1480":{"tf":1.0},"1486":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"162":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1631":{"tf":1.4142135623730951},"1632":{"tf":1.4142135623730951},"1635":{"tf":1.0},"1642":{"tf":1.7320508075688772},"1643":{"tf":1.0},"1655":{"tf":1.0},"2":{"tf":1.4142135623730951},"297":{"tf":1.0},"3":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"40":{"tf":1.0},"41":{"tf":1.0},"43":{"tf":1.0},"438":{"tf":1.0},"45":{"tf":1.0},"6":{"tf":1.4142135623730951},"627":{"tf":2.23606797749979},"628":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"640":{"tf":1.4142135623730951},"656":{"tf":1.0},"658":{"tf":1.0},"663":{"tf":1.4142135623730951},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"693":{"tf":1.0},"703":{"tf":1.0},"746":{"tf":2.0},"747":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.0},"754":{"tf":1.7320508075688772},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"794":{"tf":1.4142135623730951},"803":{"tf":1.0},"852":{"tf":1.4142135623730951},"86":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}}}}}}}},"q":{"1":{"df":15,"docs":{"244":{"tf":1.0},"248":{"tf":1.0},"285":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"487":{"tf":1.0},"699":{"tf":1.0},"723":{"tf":1.0},"868":{"tf":1.0},"926":{"tf":1.0},"942":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"966":{"tf":1.0}}},"4":{"df":1,"docs":{"53":{"tf":1.0}}},"df":1,"docs":{"1279":{"tf":2.6457513110645907}},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"1345":{"tf":1.0},"1359":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.4142135623730951},"30":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1157":{"tf":2.0},"1161":{"tf":1.0},"1172":{"tf":1.0},"1403":{"tf":1.0},"1431":{"tf":1.0},"1454":{"tf":1.0},"825":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":40,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1067":{"tf":1.0},"1079":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1113":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"121":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1376":{"tf":1.0},"144":{"tf":1.0},"1640":{"tf":1.7320508075688772},"176":{"tf":1.0},"177":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"237":{"tf":1.0},"299":{"tf":1.4142135623730951},"300":{"tf":1.0},"305":{"tf":1.4142135623730951},"423":{"tf":1.7320508075688772},"424":{"tf":1.4142135623730951},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"651":{"tf":1.7320508075688772},"652":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"985":{"tf":1.0},"991":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1529":{"tf":1.0},"1627":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1093":{"tf":1.0},"294":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"526":{"tf":1.0},"708":{"tf":1.0},"717":{"tf":1.0},"926":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"1027":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1371":{"tf":1.0},"31":{"tf":1.0},"495":{"tf":1.0},"568":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":3,"docs":{"102":{"tf":1.0},"1464":{"tf":1.0},"300":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1218":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1218":{"tf":1.0},"775":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.4142135623730951}}}}}},"df":17,"docs":{"103":{"tf":1.0},"1267":{"tf":1.0},"133":{"tf":1.0},"285":{"tf":1.0},"289":{"tf":1.0},"487":{"tf":1.0},"601":{"tf":1.4142135623730951},"61":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"939":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"73":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":56,"docs":{"1062":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1273":{"tf":1.0},"1303":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"140":{"tf":1.4142135623730951},"163":{"tf":1.0},"189":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"34":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.0},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.0},"703":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1374":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1515":{"tf":1.4142135623730951},"438":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"676":{"tf":1.0},"77":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"440":{"tf":1.0},"441":{"tf":1.4142135623730951},"442":{"tf":1.0}}}}}},"df":53,"docs":{"10":{"tf":1.0},"1142":{"tf":1.0},"1273":{"tf":1.7320508075688772},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"13":{"tf":1.0},"1300":{"tf":1.0},"1315":{"tf":1.0},"140":{"tf":1.0},"1485":{"tf":2.6457513110645907},"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"38":{"tf":1.0},"406":{"tf":1.0},"42":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"522":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951},"672":{"tf":1.0},"675":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":2.23606797749979},"81":{"tf":1.0},"89":{"tf":1.0},"970":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"=":{"2":{"df":3,"docs":{"102":{"tf":1.0},"298":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1372":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":18,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"103":{"tf":1.7320508075688772},"104":{"tf":1.4142135623730951},"1207":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1373":{"tf":1.4142135623730951},"2":{"tf":1.0},"298":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"991":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1561":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"345":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"73":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1235":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1243":{"tf":1.0}}},"s":{"df":19,"docs":{"1279":{"tf":1.0},"1352":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1474":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"685":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"798":{"tf":1.0},"800":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1237":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"1":{"0":{"df":1,"docs":{"801":{"tf":1.0}}},"df":1,"docs":{"1470":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":2,"docs":{"985":{"tf":1.0},"989":{"tf":2.23606797749979}},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":9,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1525":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":26,"docs":{"1277":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1512":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"459":{"tf":1.0},"54":{"tf":1.0},"574":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"695":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"863":{"tf":1.4142135623730951},"960":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0}}}},"df":10,"docs":{"1455":{"tf":1.0},"1456":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.0},"1642":{"tf":1.0},"1655":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1024":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"49":{"tf":1.0},"834":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":12,"docs":{"1327":{"tf":1.0},"1586":{"tf":1.0},"272":{"tf":1.0},"309":{"tf":1.0},"59":{"tf":1.0},"675":{"tf":1.0},"74":{"tf":1.0},"891":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0}}}},"df":0,"docs":{}},"df":38,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1176":{"tf":1.7320508075688772},"1360":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"1533":{"tf":1.0},"1535":{"tf":1.0},"1580":{"tf":1.0},"1654":{"tf":1.0},"193":{"tf":1.7320508075688772},"260":{"tf":1.0},"414":{"tf":1.0},"418":{"tf":1.0},"45":{"tf":1.0},"450":{"tf":1.0},"574":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"642":{"tf":1.0},"646":{"tf":1.0},"686":{"tf":1.0},"743":{"tf":1.0},"78":{"tf":1.0},"999":{"tf":1.0}},"i":{"df":12,"docs":{"1140":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1252":{"tf":1.4142135623730951},"2":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"428":{"tf":1.0},"5":{"tf":1.0},"563":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"991":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1176":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"m":{"df":3,"docs":{"1481":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":11,"docs":{"1125":{"tf":1.0},"1189":{"tf":1.0},"1203":{"tf":1.0},"1391":{"tf":1.0},"1591":{"tf":1.0},"28":{"tf":1.4142135623730951},"32":{"tf":1.0},"33":{"tf":1.0},"509":{"tf":1.0},"75":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1187":{"tf":1.0},"1220":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1017":{"tf":1.0},"1139":{"tf":1.0},"1203":{"tf":1.0},"123":{"tf":1.0},"138":{"tf":1.0},"939":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"432":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"985":{"tf":1.4142135623730951}}}},"v":{"df":17,"docs":{"1185":{"tf":1.0},"1207":{"tf":1.0},"1227":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1299":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1367":{"tf":2.23606797749979},"1369":{"tf":1.4142135623730951},"27":{"tf":1.0},"388":{"tf":2.0},"570":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"777":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"999":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1378":{"tf":1.0},"276":{"tf":1.0},"446":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"680":{"tf":1.0},"699":{"tf":1.4142135623730951},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1387":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":50,"docs":{"1008":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1059":{"tf":1.0},"1068":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1118":{"tf":1.0},"1124":{"tf":1.0},"1139":{"tf":1.0},"1151":{"tf":1.0},"1195":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1237":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1346":{"tf":1.0},"1384":{"tf":1.4142135623730951},"145":{"tf":1.0},"1485":{"tf":1.0},"1530":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1629":{"tf":1.0},"168":{"tf":1.4142135623730951},"217":{"tf":1.4142135623730951},"227":{"tf":1.0},"318":{"tf":1.0},"38":{"tf":1.4142135623730951},"40":{"tf":1.0},"407":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"421":{"tf":1.4142135623730951},"43":{"tf":1.0},"437":{"tf":1.0},"44":{"tf":1.0},"446":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"649":{"tf":1.4142135623730951},"65":{"tf":1.0},"765":{"tf":1.0},"78":{"tf":1.4142135623730951},"975":{"tf":1.0},"980":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1005":{"tf":1.0},"1328":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"531":{"tf":1.0},"534":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"380":{"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":1,"docs":{"380":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":67,"docs":{"1015":{"tf":1.0},"1022":{"tf":1.0},"1027":{"tf":1.0},"1037":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":2.0},"1060":{"tf":1.0},"1062":{"tf":1.0},"1077":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.7320508075688772},"1087":{"tf":1.7320508075688772},"1095":{"tf":1.0},"117":{"tf":1.0},"1174":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.7320508075688772},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"1303":{"tf":1.0},"1310":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1366":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1391":{"tf":1.0},"140":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1556":{"tf":1.0},"1557":{"tf":2.449489742783178},"1558":{"tf":1.0},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.7320508075688772},"314":{"tf":1.0},"320":{"tf":1.0},"326":{"tf":1.4142135623730951},"329":{"tf":2.0},"330":{"tf":1.0},"331":{"tf":1.4142135623730951},"369":{"tf":1.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.7320508075688772},"690":{"tf":1.0},"815":{"tf":1.0},"846":{"tf":1.0},"914":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.7320508075688772},"1066":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}},"s":{"df":4,"docs":{"1215":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1445":{"tf":1.0},"1449":{"tf":1.0}}}}}},"d":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":44,"docs":{"1135":{"tf":1.0},"1144":{"tf":1.0},"1152":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1208":{"tf":1.0},"1223":{"tf":1.0},"1325":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1435":{"tf":2.449489742783178},"1535":{"tf":1.0},"1551":{"tf":1.0},"1553":{"tf":1.0},"1597":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1640":{"tf":1.7320508075688772},"1651":{"tf":1.4142135623730951},"234":{"tf":1.0},"260":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951},"685":{"tf":1.0},"687":{"tf":2.0},"688":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"f":{"df":15,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1303":{"tf":1.0},"1586":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":225,"docs":{"105":{"tf":1.0},"1060":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"128":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1311":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1331":{"tf":1.0},"1336":{"tf":1.0},"1360":{"tf":1.0},"1362":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1398":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1427":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1475":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1482":{"tf":2.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1534":{"tf":1.0},"1535":{"tf":1.0},"1536":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"1539":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1584":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1598":{"tf":2.0},"1599":{"tf":1.0},"1600":{"tf":1.0},"1601":{"tf":1.4142135623730951},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.0},"1604":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.0},"1609":{"tf":1.0},"1610":{"tf":1.0},"1611":{"tf":1.0},"1612":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.0},"185":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":1.7320508075688772},"339":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"465":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"575":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"669":{"tf":1.0},"674":{"tf":1.4142135623730951},"681":{"tf":1.0},"702":{"tf":1.0},"737":{"tf":1.0},"745":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0},"827":{"tf":1.0},"830":{"tf":1.4142135623730951},"831":{"tf":1.0},"859":{"tf":1.0},"881":{"tf":1.0},"921":{"tf":1.7320508075688772},"928":{"tf":1.0},"939":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"943":{"tf":1.0},"953":{"tf":1.7320508075688772},"956":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.4142135623730951},"970":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":10,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0},"1303":{"tf":1.0},"1307":{"tf":1.0},"1497":{"tf":1.0},"1589":{"tf":1.0},"953":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"968":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"953":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1573":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1198":{"tf":1.0},"1537":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1059":{"tf":1.0},"1547":{"tf":1.0},"1549":{"tf":1.0},"331":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1229":{"tf":1.0},"1517":{"tf":1.0},"1533":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"1249":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1288":{"tf":1.0},"1330":{"tf":1.7320508075688772},"1350":{"tf":1.0},"1438":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.7320508075688772},"751":{"tf":1.4142135623730951},"899":{"tf":1.0},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"2":{"a":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1257":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1257":{"tf":1.0},"751":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1258":{"tf":1.0},"408":{"tf":1.0},"508":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1258":{"tf":1.0},"508":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.4142135623730951},"322":{"tf":1.4142135623730951},"330":{"tf":1.0},"866":{"tf":2.0}}}},"df":16,"docs":{"1022":{"tf":1.0},"1060":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1330":{"tf":1.0},"2":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"613":{"tf":1.0},"729":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"787":{"tf":1.0},"866":{"tf":1.7320508075688772},"893":{"tf":1.0},"899":{"tf":1.4142135623730951}},"i":{"df":12,"docs":{"1013":{"tf":1.0},"1020":{"tf":2.0},"1022":{"tf":2.449489742783178},"1024":{"tf":2.0},"1025":{"tf":1.4142135623730951},"1059":{"tf":2.0},"1060":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1384":{"tf":1.0},"14":{"tf":1.0},"508":{"tf":1.0},"994":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.0},"237":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1034":{"tf":1.0},"1052":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":1,"docs":{"1203":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"389":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"430":{"tf":1.0},"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"567":{"tf":1.0}}}}}},"df":18,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1033":{"tf":2.449489742783178},"1037":{"tf":1.0},"1188":{"tf":1.0},"1246":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1627":{"tf":1.0},"289":{"tf":1.0},"299":{"tf":1.0},"567":{"tf":1.4142135623730951},"761":{"tf":1.0},"865":{"tf":1.0},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"985":{"tf":1.4142135623730951},"987":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":8,"docs":{"1144":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"367":{"tf":1.0},"831":{"tf":1.0},"952":{"tf":1.0},"968":{"tf":1.0},"984":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"955":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"952":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1030":{"tf":1.0},"1311":{"tf":1.0},"885":{"tf":1.0},"892":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"954":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"1020":{"tf":1.0},"1025":{"tf":1.0}}}},"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":9,"docs":{"1079":{"tf":1.0},"1330":{"tf":1.0},"144":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"162":{"tf":1.4142135623730951},"1628":{"tf":1.0},"1632":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"v":{"df":1,"docs":{"1209":{"tf":1.0}}}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1018":{"tf":1.0},"1235":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1198":{"tf":1.0},"1202":{"tf":1.0},"987":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1090":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1534":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1628":{"tf":1.0},"1640":{"tf":1.0},"234":{"tf":1.0},"494":{"tf":1.0},"957":{"tf":1.0},"994":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1190":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":27,"docs":{"107":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1151":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1300":{"tf":1.0},"1327":{"tf":1.0},"1486":{"tf":2.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1532":{"tf":1.0},"1573":{"tf":1.0},"1592":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"989":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1185":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":16,"docs":{"1":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1384":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1552":{"tf":1.0},"1628":{"tf":1.0},"1630":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"440":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"957":{"tf":1.0}},"e":{"_":{"c":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1382":{"tf":1.0},"1619":{"tf":1.4142135623730951},"1630":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"888":{"tf":1.0},"938":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1187":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"l":{"a":{"c":{"df":9,"docs":{"1064":{"tf":1.0},"1367":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"1627":{"tf":1.0},"1630":{"tf":1.4142135623730951},"314":{"tf":1.0},"938":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":8,"docs":{"1001":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.4142135623730951},"543":{"tf":1.0},"546":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.7320508075688772},"761":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.0}}}},"o":{"df":9,"docs":{"1252":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"753":{"tf":1.4142135623730951},"760":{"tf":1.0},"803":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"1387":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1419":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1419":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1230":{"tf":1.0}}}}}}},"df":21,"docs":{"1004":{"tf":1.0},"1208":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1419":{"tf":3.605551275463989},"1602":{"tf":1.0},"163":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.4142135623730951},"31":{"tf":1.0},"526":{"tf":1.0},"57":{"tf":1.0},"762":{"tf":1.0},"771":{"tf":1.0},"880":{"tf":1.4142135623730951},"916":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.4142135623730951},"932":{"tf":1.0},"942":{"tf":1.4142135623730951},"999":{"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":4,"docs":{"15":{"tf":1.0},"633":{"tf":1.0},"72":{"tf":1.0},"809":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":6,"docs":{"25":{"tf":1.0},"339":{"tf":1.0},"56":{"tf":1.0},"832":{"tf":1.0},"883":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"1589":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":5,"docs":{"565":{"tf":1.0},"933":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0},"998":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1651":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"544":{"tf":1.0},"548":{"tf":1.0},"551":{"tf":1.0},"560":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"548":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":10,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"1651":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"549":{"tf":1.0},"560":{"tf":1.0},"570":{"tf":1.7320508075688772},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":13,"docs":{"1223":{"tf":1.0},"1435":{"tf":2.23606797749979},"1651":{"tf":1.4142135623730951},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.4142135623730951},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":14,"docs":{"1038":{"tf":1.4142135623730951},"1103":{"tf":1.0},"1190":{"tf":1.0},"1221":{"tf":1.4142135623730951},"494":{"tf":1.4142135623730951},"562":{"tf":1.0},"565":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"730":{"tf":1.4142135623730951},"809":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1343":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":50,"docs":{"1039":{"tf":1.7320508075688772},"1208":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1223":{"tf":2.0},"1224":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1458":{"tf":2.8284271247461903},"1459":{"tf":1.7320508075688772},"1521":{"tf":1.0},"1556":{"tf":1.0},"1575":{"tf":2.23606797749979},"163":{"tf":1.0},"219":{"tf":1.0},"235":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"495":{"tf":1.7320508075688772},"501":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.4142135623730951},"544":{"tf":1.0},"545":{"tf":2.23606797749979},"551":{"tf":1.4142135623730951},"555":{"tf":1.0},"556":{"tf":1.0},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.7320508075688772},"576":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.4142135623730951},"585":{"tf":1.0},"608":{"tf":1.7320508075688772},"700":{"tf":1.0},"731":{"tf":1.7320508075688772},"737":{"tf":1.0},"756":{"tf":1.0},"782":{"tf":1.7320508075688772},"790":{"tf":1.0},"791":{"tf":1.0},"794":{"tf":1.0},"887":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1459":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":186,"docs":{"100":{"tf":1.0},"1008":{"tf":1.0},"1016":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.7320508075688772},"1024":{"tf":1.0},"1025":{"tf":1.4142135623730951},"1029":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1053":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":2.0},"1097":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.7320508075688772},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1196":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":2.0},"1200":{"tf":1.4142135623730951},"1201":{"tf":1.0},"1203":{"tf":2.23606797749979},"1219":{"tf":1.0},"1223":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1289":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"137":{"tf":1.0},"14":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1413":{"tf":1.4142135623730951},"1414":{"tf":2.23606797749979},"1416":{"tf":1.0},"1443":{"tf":1.0},"145":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1466":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1501":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1528":{"tf":2.0},"1533":{"tf":2.0},"1538":{"tf":1.0},"1543":{"tf":1.7320508075688772},"1548":{"tf":1.7320508075688772},"1558":{"tf":1.7320508075688772},"1562":{"tf":1.7320508075688772},"1572":{"tf":1.0},"1601":{"tf":1.0},"1605":{"tf":1.0},"1606":{"tf":1.0},"162":{"tf":1.0},"1640":{"tf":1.0},"165":{"tf":1.4142135623730951},"175":{"tf":1.0},"182":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":2.449489742783178},"200":{"tf":1.0},"203":{"tf":1.0},"206":{"tf":1.4142135623730951},"211":{"tf":1.0},"220":{"tf":1.0},"225":{"tf":1.0},"233":{"tf":2.0},"241":{"tf":1.0},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"284":{"tf":1.0},"29":{"tf":1.0},"294":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"305":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.4142135623730951},"319":{"tf":2.449489742783178},"320":{"tf":2.23606797749979},"322":{"tf":1.7320508075688772},"33":{"tf":1.0},"330":{"tf":1.4142135623730951},"332":{"tf":1.0},"336":{"tf":1.0},"37":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"412":{"tf":1.0},"421":{"tf":1.0},"438":{"tf":1.4142135623730951},"441":{"tf":1.0},"450":{"tf":1.0},"47":{"tf":1.0},"487":{"tf":1.4142135623730951},"51":{"tf":1.0},"517":{"tf":1.0},"531":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"571":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"59":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"649":{"tf":1.0},"668":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.4142135623730951},"684":{"tf":1.0},"686":{"tf":1.0},"698":{"tf":1.0},"70":{"tf":1.0},"723":{"tf":1.4142135623730951},"77":{"tf":1.0},"775":{"tf":1.4142135623730951},"78":{"tf":1.0},"810":{"tf":1.4142135623730951},"825":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"837":{"tf":1.7320508075688772},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"842":{"tf":1.0},"849":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.4142135623730951},"871":{"tf":1.0},"873":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.4142135623730951},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":2.449489742783178},"987":{"tf":1.0},"988":{"tf":1.0},"990":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":3,"docs":{"1282":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1282":{"tf":1.0},"1288":{"tf":1.0},"1296":{"tf":1.0},"1315":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":9,"docs":{"1394":{"tf":1.0},"1515":{"tf":1.0},"438":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"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":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"463":{"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":{}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1317":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}}}},"f":{"df":1,"docs":{"1647":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1647":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"1033":{"tf":1.7320508075688772},"994":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"d":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":0,"docs":{},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"299":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"654":{"tf":1.0},"655":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1435":{"tf":1.0}}}}}},"df":1,"docs":{"1435":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1435":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"547":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"551":{"tf":1.0},"560":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1223":{"tf":1.0},"1435":{"tf":1.7320508075688772},"551":{"tf":1.0},"570":{"tf":1.4142135623730951},"579":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1435":{"tf":1.0},"545":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"570":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1435":{"tf":1.0},"582":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1435":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"567":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"548":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"572":{"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":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"1118":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"57":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"289":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"389":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"389":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"305":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1139":{"tf":1.0},"1278":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1074":{"tf":1.4142135623730951},"110":{"tf":1.0},"122":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1530":{"tf":1.0},"1592":{"tf":1.0},"17":{"tf":1.0},"51":{"tf":1.4142135623730951},"810":{"tf":1.4142135623730951}}}},"v":{"df":11,"docs":{"1197":{"tf":1.0},"1200":{"tf":1.0},"1202":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":1.0},"136":{"tf":1.0},"139":{"tf":1.0},"1514":{"tf":1.0},"362":{"tf":1.0},"51":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1368":{"tf":1.0},"1438":{"tf":1.0},"1462":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1525":{"tf":1.0},"314":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0},"886":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"314":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1352":{"tf":1.0},"1521":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1458":{"tf":1.0},"1559":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":61,"docs":{"1027":{"tf":1.0},"1037":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1093":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1393":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1395":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1556":{"tf":1.0},"1576":{"tf":2.23606797749979},"289":{"tf":2.23606797749979},"308":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"43":{"tf":1.0},"496":{"tf":1.7320508075688772},"536":{"tf":1.0},"537":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"547":{"tf":1.7320508075688772},"553":{"tf":1.0},"556":{"tf":1.0},"558":{"tf":1.4142135623730951},"563":{"tf":2.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"572":{"tf":1.0},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"752":{"tf":1.0},"756":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"865":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1224":{"tf":1.0},"1459":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"1036":{"tf":1.0},"289":{"tf":1.0},"292":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"899":{"tf":1.4142135623730951}}}}}}}}}},"t":{"df":6,"docs":{"1":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1052":{"tf":1.0},"73":{"tf":1.0},"893":{"tf":1.0},"994":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1236":{"tf":2.0},"1655":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1052":{"tf":1.0},"1331":{"tf":1.4142135623730951},"59":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1287":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1287":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":6,"docs":{"109":{"tf":1.0},"445":{"tf":1.0},"464":{"tf":1.0},"679":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"448":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1224":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1040":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1040":{"tf":1.0},"783":{"tf":1.0},"793":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"577":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"532":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"450":{"tf":1.0},"999":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":6,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"672":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":7,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"438":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"78":{"tf":1.0},"805":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1391":{"tf":1.0},"532":{"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":{"682":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1287":{"tf":1.0}}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":22,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1319":{"tf":1.0},"1384":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"464":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"805":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"<":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"363":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"c":{"<":{"df":0,"docs":{},"u":{"8":{"df":2,"docs":{"1380":{"tf":1.0},"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1610":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"\"":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1294":{"tf":1.0}}},"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":{},"i":{"d":{"df":4,"docs":{"1266":{"tf":1.0},"1294":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1285":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"'":{"]":{"[":{"0":{"]":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"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":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1319":{"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":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"686":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1293":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1285":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1293":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.0},"1351":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"732":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":129,"docs":{"1008":{"tf":1.0},"1025":{"tf":1.0},"1040":{"tf":1.0},"1074":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1224":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1269":{"tf":1.0},"1285":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1303":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1327":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1431":{"tf":1.0},"1435":{"tf":2.449489742783178},"1438":{"tf":2.449489742783178},"1445":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":2.8284271247461903},"1461":{"tf":2.23606797749979},"1468":{"tf":1.0},"1470":{"tf":2.449489742783178},"1486":{"tf":1.0},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.7320508075688772},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"1606":{"tf":1.0},"1610":{"tf":1.4142135623730951},"1614":{"tf":1.0},"250":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"381":{"tf":1.0},"386":{"tf":1.0},"41":{"tf":1.0},"438":{"tf":1.0},"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"464":{"tf":1.0},"496":{"tf":1.4142135623730951},"516":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"58":{"tf":1.0},"582":{"tf":2.449489742783178},"583":{"tf":1.4142135623730951},"634":{"tf":1.0},"672":{"tf":1.0},"679":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"732":{"tf":1.4142135623730951},"750":{"tf":1.0},"756":{"tf":1.0},"78":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"793":{"tf":1.0},"805":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1470":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"496":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1210":{"tf":1.0}},"e":{"df":0,"docs":{},"v":{"df":4,"docs":{"1008":{"tf":1.0},"1184":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":162,"docs":{"1033":{"tf":1.0},"1144":{"tf":1.0},"1210":{"tf":1.0},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1279":{"tf":1.7320508075688772},"13":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.0},"1380":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1392":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":2.449489742783178},"1447":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1461":{"tf":2.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1468":{"tf":2.449489742783178},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1535":{"tf":1.0},"1584":{"tf":1.0},"1618":{"tf":1.0},"27":{"tf":1.0},"297":{"tf":1.0},"339":{"tf":2.0},"363":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.4142135623730951},"456":{"tf":1.0},"463":{"tf":1.0},"467":{"tf":1.0},"518":{"tf":1.0},"530":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"556":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"592":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"656":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"692":{"tf":1.0},"700":{"tf":1.4142135623730951},"749":{"tf":1.0},"756":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.4142135623730951},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"787":{"tf":1.0},"800":{"tf":1.7320508075688772},"801":{"tf":1.0},"999":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"926":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":33,"docs":{"1034":{"tf":1.4142135623730951},"129":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1310":{"tf":1.7320508075688772},"133":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.7320508075688772},"1416":{"tf":2.0},"1602":{"tf":1.0},"222":{"tf":2.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"293":{"tf":1.0},"305":{"tf":1.0},"351":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"848":{"tf":1.7320508075688772},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"898":{"tf":1.0},"908":{"tf":1.0},"910":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"99":{"tf":1.0}},"e":{"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":4,"docs":{"1310":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1335":{"tf":1.0},"1602":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"95":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"95":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"tf":1.0}}}}}}},"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":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"95":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"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":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"1":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"95":{"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":1,"docs":{"95":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"481":{"tf":1.0},"717":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":8,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1135":{"tf":1.0},"1188":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0}}}}}},"f":{"c":{"df":6,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"21":{"tf":1.0},"54":{"tf":1.4142135623730951}}},"df":1,"docs":{"430":{"tf":1.0}},"p":{"df":3,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.7320508075688772}}}},"i":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1148":{"tf":1.0},"1150":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":6,"docs":{"1137":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1360":{"tf":1.0},"36":{"tf":1.0},"78":{"tf":1.0},"842":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":70,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1100":{"tf":1.0},"1102":{"tf":1.0},"1104":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1142":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1449":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1543":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1607":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"387":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"421":{"tf":1.7320508075688772},"438":{"tf":1.0},"441":{"tf":1.7320508075688772},"470":{"tf":1.0},"485":{"tf":1.0},"493":{"tf":1.0},"499":{"tf":1.0},"53":{"tf":1.0},"550":{"tf":1.0},"607":{"tf":1.0},"639":{"tf":1.0},"649":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"675":{"tf":1.0},"706":{"tf":1.0},"721":{"tf":1.0},"729":{"tf":1.0},"78":{"tf":1.4142135623730951},"781":{"tf":1.4142135623730951},"787":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"972":{"tf":1.0},"975":{"tf":1.4142135623730951},"996":{"tf":1.0}}}},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1200":{"tf":1.0},"1372":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1426":{"tf":1.0},"1645":{"tf":1.0},"430":{"tf":1.0}}},"o":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"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":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1447":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1426":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1175":{"tf":1.0},"621":{"tf":1.7320508075688772},"622":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":5,"docs":{"1199":{"tf":1.0},"1220":{"tf":1.0},"1273":{"tf":1.0},"325":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1001":{"tf":1.0},"1009":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1064":{"tf":2.0},"1065":{"tf":1.7320508075688772},"1066":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.7320508075688772},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.7320508075688772},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.4142135623730951},"1079":{"tf":2.449489742783178},"1080":{"tf":2.449489742783178},"1081":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1093":{"tf":2.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.7320508075688772},"1096":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1519":{"tf":1.0},"237":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"371":{"tf":1.0},"375":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"n":{"d":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1192":{"tf":1.0},"1265":{"tf":1.0},"1271":{"tf":1.0},"1343":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1367":{"tf":1.0},"1435":{"tf":1.0},"1479":{"tf":1.0},"1651":{"tf":2.0},"312":{"tf":1.0},"314":{"tf":1.7320508075688772},"379":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.4142135623730951},"549":{"tf":2.23606797749979},"550":{"tf":1.0},"570":{"tf":1.4142135623730951},"574":{"tf":1.0},"582":{"tf":1.0},"761":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":1,"docs":{"1282":{"tf":1.0}}}}}}},"p":{"c":{"df":5,"docs":{"1191":{"tf":1.0},"1249":{"tf":1.0},"1275":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1278":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":35,"docs":{"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1098":{"tf":1.7320508075688772},"1105":{"tf":1.7320508075688772},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1113":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1139":{"tf":1.4142135623730951},"1141":{"tf":1.0},"1142":{"tf":1.0},"1380":{"tf":1.0},"1485":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"180":{"tf":1.0},"21":{"tf":1.0},"227":{"tf":1.4142135623730951},"299":{"tf":1.0},"422":{"tf":1.7320508075688772},"441":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.7320508075688772},"675":{"tf":1.0},"797":{"tf":1.0},"829":{"tf":1.0},"865":{"tf":1.0},"975":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":8,"docs":{"1061":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1573":{"tf":1.0},"811":{"tf":1.0},"826":{"tf":1.4142135623730951},"910":{"tf":1.4142135623730951}}}},"n":{"df":36,"docs":{"1052":{"tf":1.0},"1152":{"tf":1.0},"1215":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1233":{"tf":2.23606797749979},"1236":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1243":{"tf":1.0},"1249":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"146":{"tf":1.4142135623730951},"148":{"tf":1.0},"1544":{"tf":1.0},"155":{"tf":1.0},"1558":{"tf":1.0},"162":{"tf":1.0},"183":{"tf":1.4142135623730951},"301":{"tf":1.0},"316":{"tf":1.0},"40":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"44":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"513":{"tf":1.0},"556":{"tf":1.0},"582":{"tf":1.0},"634":{"tf":1.0},"686":{"tf":1.0},"755":{"tf":1.0},"954":{"tf":1.0},"994":{"tf":1.0}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"809":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":20,"docs":{"1250":{"tf":1.7320508075688772},"1271":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1380":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"147":{"tf":1.0},"158":{"tf":1.4142135623730951},"1629":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"605":{"tf":1.0},"779":{"tf":1.0},"803":{"tf":1.0},"810":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"989":{"tf":1.0},"992":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"799":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":2.23606797749979},"1151":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"362":{"tf":1.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}}},"t":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1515":{"tf":1.0},"438":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"df":122,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"1079":{"tf":1.0},"121":{"tf":1.7320508075688772},"1229":{"tf":1.7320508075688772},"1235":{"tf":1.7320508075688772},"1237":{"tf":1.0},"1243":{"tf":1.0},"1250":{"tf":1.0},"1258":{"tf":1.0},"13":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1377":{"tf":1.0},"142":{"tf":1.0},"1427":{"tf":1.0},"143":{"tf":1.0},"145":{"tf":1.0},"1477":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"162":{"tf":1.4142135623730951},"1630":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"182":{"tf":1.0},"184":{"tf":1.0},"2":{"tf":1.0},"334":{"tf":2.23606797749979},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"354":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":2.23606797749979},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"503":{"tf":1.0},"627":{"tf":1.0},"635":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"924":{"tf":1.4142135623730951},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.4142135623730951},"95":{"tf":1.0},"956":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"983":{"tf":1.4142135623730951},"994":{"tf":1.0},"999":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0}}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"[":{":":{"1":{"2":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"1637":{"tf":2.0},"1638":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1572":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":10,"docs":{"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"1536":{"tf":1.0},"1537":{"tf":1.0},"1572":{"tf":1.7320508075688772},"1637":{"tf":2.23606797749979},"1638":{"tf":1.7320508075688772},"72":{"tf":1.0},"797":{"tf":1.0},"976":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"27":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":7,"docs":{"1033":{"tf":1.0},"1153":{"tf":1.0},"1299":{"tf":1.0},"1487":{"tf":1.0},"364":{"tf":1.0},"801":{"tf":1.7320508075688772},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"801":{"tf":1.4142135623730951},"994":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1410":{"tf":1.0},"294":{"tf":1.0},"53":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":44,"docs":{"1008":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1037":{"tf":1.0},"1061":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1150":{"tf":1.0},"1187":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1378":{"tf":1.0},"1387":{"tf":1.0},"14":{"tf":1.0},"141":{"tf":1.0},"1487":{"tf":1.0},"1537":{"tf":1.0},"1621":{"tf":1.0},"1642":{"tf":1.4142135623730951},"1643":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"295":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"512":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"764":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"801":{"tf":1.0},"881":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.8284271247461903},"1525":{"tf":1.0},"1654":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":2.23606797749979},"387":{"tf":1.0},"392":{"tf":1.4142135623730951},"396":{"tf":1.0},"874":{"tf":1.0},"981":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"37":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1033":{"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":27,"docs":{"1183":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1236":{"tf":1.0},"1403":{"tf":2.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1485":{"tf":1.0},"1497":{"tf":2.0},"1498":{"tf":1.4142135623730951},"1504":{"tf":1.0},"202":{"tf":2.0},"206":{"tf":1.0},"247":{"tf":1.7320508075688772},"341":{"tf":1.0},"350":{"tf":1.7320508075688772},"365":{"tf":1.0},"441":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"597":{"tf":1.7320508075688772},"675":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"771":{"tf":1.7320508075688772}}}}},"c":{"a":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"tf":1.0}}}}}}}}},"df":4,"docs":{"129":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1602":{"tf":1.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1358":{"tf":1.0},"1602":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":12,"docs":{"1057":{"tf":1.0},"1059":{"tf":1.0},"1141":{"tf":1.0},"1151":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1303":{"tf":1.0},"1533":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1615":{"tf":1.0},"992":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1068":{"tf":1.0},"1093":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"824":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1497":{"tf":1.0},"1499":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1562":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"257":{"tf":1.0},"886":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1156":{"tf":1.0},"1157":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1153":{"tf":2.23606797749979},"1154":{"tf":1.4142135623730951},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":2.0},"1158":{"tf":1.7320508075688772},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1168":{"tf":1.7320508075688772},"1169":{"tf":2.449489742783178},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1177":{"tf":1.7320508075688772},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1181":{"tf":2.23606797749979},"1214":{"tf":1.0},"1241":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1497":{"tf":2.0},"1498":{"tf":1.7320508075688772},"1499":{"tf":2.449489742783178},"1500":{"tf":1.7320508075688772},"1505":{"tf":2.0},"1507":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1562":{"tf":2.23606797749979},"1647":{"tf":1.0},"202":{"tf":1.7320508075688772},"204":{"tf":1.7320508075688772},"21":{"tf":1.0},"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.7320508075688772},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"257":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"306":{"tf":1.0},"32":{"tf":2.0},"338":{"tf":1.0},"339":{"tf":1.0},"355":{"tf":2.0},"364":{"tf":1.0},"366":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"54":{"tf":1.7320508075688772},"597":{"tf":1.0},"639":{"tf":1.0},"706":{"tf":1.0},"709":{"tf":2.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"796":{"tf":1.0},"811":{"tf":2.23606797749979},"812":{"tf":2.6457513110645907},"813":{"tf":1.7320508075688772},"814":{"tf":2.0},"815":{"tf":2.0},"816":{"tf":2.0},"817":{"tf":2.23606797749979},"818":{"tf":1.7320508075688772},"819":{"tf":1.7320508075688772},"820":{"tf":1.7320508075688772},"821":{"tf":2.449489742783178},"822":{"tf":1.4142135623730951},"823":{"tf":2.0},"824":{"tf":2.23606797749979},"825":{"tf":2.449489742783178},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":1.0},"830":{"tf":3.3166247903554},"831":{"tf":2.0},"832":{"tf":2.0},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":2.8284271247461903},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.7320508075688772},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":2.0},"857":{"tf":2.449489742783178},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":2.0},"862":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.7320508075688772},"870":{"tf":1.0},"871":{"tf":1.7320508075688772},"872":{"tf":1.0},"873":{"tf":1.7320508075688772},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.7320508075688772},"883":{"tf":2.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.0},"886":{"tf":2.6457513110645907},"887":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"895":{"tf":2.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":2.23606797749979},"912":{"tf":2.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.0},"915":{"tf":2.449489742783178},"916":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":1.4142135623730951},"925":{"tf":2.0},"926":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.7320508075688772},"935":{"tf":1.7320508075688772},"936":{"tf":1.7320508075688772},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":2.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.7320508075688772},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":2.0},"959":{"tf":2.23606797749979},"960":{"tf":1.7320508075688772},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":2.0},"970":{"tf":2.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.4142135623730951},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":2.0},"979":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.7320508075688772},"985":{"tf":1.4142135623730951},"994":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"355":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1404":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"246":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1179":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":6,"docs":{"1100":{"tf":1.0},"1105":{"tf":1.0},"1112":{"tf":1.0},"1117":{"tf":1.0},"1597":{"tf":1.0},"65":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"627":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"985":{"tf":1.4142135623730951},"988":{"tf":2.449489742783178},"992":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":6,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"127":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1008":{"tf":1.0},"107":{"tf":1.0},"1417":{"tf":1.4142135623730951},"1482":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1607":{"tf":1.0},"1608":{"tf":1.4142135623730951},"1610":{"tf":1.4142135623730951},"185":{"tf":1.0},"36":{"tf":1.0},"427":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"673":{"tf":1.0},"89":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1618":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"523":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"116":{"tf":1.0},"1250":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1630":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0},"763":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"df":12,"docs":{"102":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1505":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"246":{"tf":1.0},"257":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1349":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1532":{"tf":1.7320508075688772},"1533":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"919":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"1409":{"tf":1.0},"1521":{"tf":1.4142135623730951},"197":{"tf":1.0},"210":{"tf":1.0},"385":{"tf":1.0},"746":{"tf":1.0},"95":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":13,"docs":{"1008":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":2.0},"1533":{"tf":1.0},"1637":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1501":{"tf":1.0},"1635":{"tf":1.0},"703":{"tf":1.0},"756":{"tf":2.23606797749979},"794":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":168,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.7320508075688772},"1014":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1025":{"tf":1.7320508075688772},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.7320508075688772},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":2.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.7320508075688772},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1049":{"tf":1.4142135623730951},"105":{"tf":1.0},"1050":{"tf":1.7320508075688772},"1051":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1054":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1068":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1115":{"tf":1.4142135623730951},"1118":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1125":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1211":{"tf":1.4142135623730951},"1239":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1250":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1256":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1336":{"tf":1.0},"141":{"tf":1.0},"1537":{"tf":1.4142135623730951},"1583":{"tf":1.4142135623730951},"16":{"tf":1.0},"1602":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"273":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"333":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"397":{"tf":1.0},"40":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"450":{"tf":1.7320508075688772},"47":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.0},"567":{"tf":1.0},"584":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"649":{"tf":1.0},"650":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.7320508075688772},"746":{"tf":1.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"78":{"tf":1.0},"794":{"tf":1.0},"831":{"tf":1.4142135623730951},"841":{"tf":1.0},"843":{"tf":1.0},"899":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.7320508075688772},"990":{"tf":1.0},"993":{"tf":2.0},"994":{"tf":1.7320508075688772},"995":{"tf":1.7320508075688772},"996":{"tf":1.0},"997":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":2.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1649":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1376":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":77,"docs":{"1063":{"tf":1.4142135623730951},"1096":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"120":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1208":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"1361":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1374":{"tf":1.0},"1379":{"tf":1.0},"138":{"tf":1.0},"1392":{"tf":1.0},"1396":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1450":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1512":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"1583":{"tf":1.4142135623730951},"1614":{"tf":1.4142135623730951},"1632":{"tf":1.0},"1656":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"264":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"367":{"tf":1.0},"450":{"tf":1.0},"465":{"tf":1.4142135623730951},"605":{"tf":1.0},"626":{"tf":1.4142135623730951},"630":{"tf":1.0},"686":{"tf":1.0},"702":{"tf":1.4142135623730951},"75":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"794":{"tf":1.0},"802":{"tf":1.4142135623730951},"806":{"tf":1.0},"807":{"tf":1.0},"810":{"tf":1.0},"831":{"tf":1.4142135623730951},"846":{"tf":1.0},"856":{"tf":1.4142135623730951},"882":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"958":{"tf":1.4142135623730951},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"887":{"tf":1.0}}},"n":{"df":1,"docs":{"1279":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"994":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":14,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1123":{"tf":1.4142135623730951},"1137":{"tf":1.7320508075688772},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1377":{"tf":1.0},"274":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1468":{"tf":1.4142135623730951},"668":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"668":{"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":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"668":{"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":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"668":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1474":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1468":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1468":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1468":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1084":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"699":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"462":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"104":{"tf":1.0},"1060":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1236":{"tf":1.7320508075688772},"127":{"tf":1.0},"1286":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"215":{"tf":1.0},"253":{"tf":1.0},"354":{"tf":1.0},"45":{"tf":1.0},"55":{"tf":1.0},"74":{"tf":1.0},"91":{"tf":1.0},"987":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"136":{"tf":1.4142135623730951},"139":{"tf":1.4142135623730951}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1410":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1410":{"tf":2.449489742783178}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1219":{"tf":1.4142135623730951},"859":{"tf":1.0},"872":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1223":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":19,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1302":{"tf":1.0},"1325":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1379":{"tf":1.0},"1436":{"tf":1.0},"1459":{"tf":1.0},"1519":{"tf":1.0},"27":{"tf":1.0},"544":{"tf":1.0},"563":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"565":{"tf":1.0},"962":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"568":{"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":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"568":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"567":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"567":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1516":{"tf":1.0},"1529":{"tf":1.0},"972":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1004":{"tf":1.0},"1328":{"tf":1.0},"305":{"tf":1.0},"808":{"tf":1.0},"842":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.4142135623730951}}}}}}}},"t":{"df":6,"docs":{"1354":{"tf":1.0},"1393":{"tf":1.0},"1519":{"tf":1.0},"556":{"tf":1.0},"58":{"tf":1.0},"62":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"1051":{"tf":1.0},"1220":{"tf":2.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1328":{"tf":1.0},"14":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"253":{"tf":1.0},"755":{"tf":1.0},"80":{"tf":1.0},"95":{"tf":1.4142135623730951},"959":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1294":{"tf":1.0},"959":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"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":{}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"943":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1329":{"tf":1.0},"353":{"tf":1.0},"365":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":3,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"339":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1236":{"tf":1.0}}}}}}},"df":5,"docs":{"1004":{"tf":1.0},"1210":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1597":{"tf":2.0},"782":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"446":{"tf":1.0},"680":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":12,"docs":{"1265":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.7320508075688772},"1282":{"tf":1.0},"1283":{"tf":2.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1353":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1438":{"tf":1.0},"1649":{"tf":1.0},"510":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":5,"docs":{"1272":{"tf":1.0},"1439":{"tf":1.0},"1479":{"tf":1.0},"1649":{"tf":1.0},"582":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"463":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1438":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1223":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1461":{"tf":1.0}}}}}}},"df":104,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.0},"117":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1223":{"tf":1.4142135623730951},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.4142135623730951},"1252":{"tf":2.0},"1254":{"tf":1.7320508075688772},"1255":{"tf":1.4142135623730951},"1258":{"tf":2.0},"1265":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"1434":{"tf":1.4142135623730951},"1435":{"tf":2.0},"1436":{"tf":1.0},"1438":{"tf":3.0},"1439":{"tf":1.0},"1450":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1461":{"tf":2.6457513110645907},"1477":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.7320508075688772},"1649":{"tf":1.7320508075688772},"172":{"tf":2.0},"187":{"tf":1.0},"190":{"tf":2.0},"2":{"tf":1.0},"304":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"398":{"tf":1.0},"40":{"tf":2.0},"434":{"tf":1.0},"435":{"tf":1.0},"46":{"tf":1.0},"463":{"tf":1.0},"5":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":2.23606797749979},"510":{"tf":2.0},"520":{"tf":1.0},"552":{"tf":1.0},"562":{"tf":2.0},"563":{"tf":1.4142135623730951},"564":{"tf":1.0},"565":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"569":{"tf":1.7320508075688772},"570":{"tf":1.7320508075688772},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.7320508075688772},"574":{"tf":1.7320508075688772},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"582":{"tf":1.7320508075688772},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"585":{"tf":1.0},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.0},"621":{"tf":1.0},"626":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"745":{"tf":1.0},"746":{"tf":1.0},"747":{"tf":1.4142135623730951},"749":{"tf":2.0},"755":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.4142135623730951},"80":{"tf":2.0},"803":{"tf":1.0},"89":{"tf":1.0},"934":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"143":{"tf":1.0},"147":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1435":{"tf":1.0},"1458":{"tf":1.0},"582":{"tf":1.0}}}}}}},"i":{"c":{"df":66,"docs":{"1008":{"tf":1.4142135623730951},"1218":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1248":{"tf":1.0},"1261":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1412":{"tf":1.0},"1416":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1487":{"tf":1.0},"1514":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":2.0},"1530":{"tf":2.0},"17":{"tf":1.0},"215":{"tf":1.0},"223":{"tf":2.449489742783178},"224":{"tf":1.4142135623730951},"23":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"285":{"tf":1.0},"292":{"tf":1.0},"341":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"487":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"699":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"816":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":2.0},"842":{"tf":2.23606797749979},"843":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"868":{"tf":1.0},"973":{"tf":1.0},"980":{"tf":1.7320508075688772},"988":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"341":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1408":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"362":{"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":{},"m":{"df":7,"docs":{"1368":{"tf":1.0},"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1517":{"tf":1.0},"1521":{"tf":1.0},"1525":{"tf":1.0},"383":{"tf":1.0},"387":{"tf":1.0},"392":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1008":{"tf":1.0},"128":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"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":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"380":{"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":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":87,"docs":{"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1046":{"tf":1.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1147":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1223":{"tf":1.0},"1234":{"tf":1.0},"1258":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1326":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1422":{"tf":1.0},"147":{"tf":1.4142135623730951},"1485":{"tf":1.7320508075688772},"1487":{"tf":2.23606797749979},"1491":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.7320508075688772},"1530":{"tf":1.0},"1537":{"tf":1.0},"1538":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1629":{"tf":1.0},"1637":{"tf":1.0},"1645":{"tf":1.0},"1653":{"tf":1.0},"183":{"tf":1.0},"192":{"tf":1.0},"207":{"tf":1.0},"250":{"tf":1.0},"297":{"tf":1.0},"305":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.7320508075688772},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"605":{"tf":1.0},"642":{"tf":1.0},"672":{"tf":1.0},"743":{"tf":1.0},"751":{"tf":1.0},"77":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":2.23606797749979},"806":{"tf":1.0},"81":{"tf":1.0},"839":{"tf":1.0},"856":{"tf":1.0},"89":{"tf":1.0},"916":{"tf":1.0},"928":{"tf":1.4142135623730951},"95":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":44,"docs":{"107":{"tf":1.0},"1190":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"120":{"tf":1.0},"1204":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1236":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1485":{"tf":1.0},"1488":{"tf":1.0},"1515":{"tf":1.0},"1536":{"tf":1.4142135623730951},"1558":{"tf":1.0},"163":{"tf":1.0},"304":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"388":{"tf":1.4142135623730951},"425":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"508":{"tf":1.0},"653":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"657":{"tf":1.4142135623730951},"661":{"tf":1.4142135623730951},"668":{"tf":1.4142135623730951},"76":{"tf":1.0},"78":{"tf":1.0},"81":{"tf":1.4142135623730951},"846":{"tf":1.0},"852":{"tf":1.0},"92":{"tf":1.4142135623730951},"934":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1150":{"tf":1.0},"1628":{"tf":1.0},"174":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":21,"docs":{"1008":{"tf":1.0},"1073":{"tf":1.0},"1128":{"tf":1.0},"1306":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1336":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1387":{"tf":2.8284271247461903},"1499":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"874":{"tf":1.0},"921":{"tf":1.0},"996":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1602":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":18,"docs":{"1004":{"tf":1.0},"1129":{"tf":1.0},"1381":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":1.0},"461":{"tf":1.0},"498":{"tf":1.0},"54":{"tf":1.0},"615":{"tf":1.0},"66":{"tf":1.0},"697":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0},"914":{"tf":1.0},"93":{"tf":1.0},"933":{"tf":1.0},"996":{"tf":1.0},"997":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1275":{"tf":1.0},"518":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1270":{"tf":1.0}}}},"df":34,"docs":{"100":{"tf":1.0},"1007":{"tf":1.0},"104":{"tf":1.0},"116":{"tf":1.0},"1220":{"tf":2.23606797749979},"1331":{"tf":1.0},"1333":{"tf":1.0},"1643":{"tf":1.7320508075688772},"17":{"tf":1.0},"229":{"tf":1.0},"237":{"tf":1.0},"276":{"tf":1.7320508075688772},"282":{"tf":1.0},"453":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"520":{"tf":1.0},"546":{"tf":1.0},"551":{"tf":1.0},"557":{"tf":1.0},"63":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"692":{"tf":1.0},"699":{"tf":1.0},"73":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"830":{"tf":1.0},"881":{"tf":1.0},"935":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"509":{"tf":1.0},"660":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":8,"docs":{"1157":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1324":{"tf":1.0},"1366":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1008":{"tf":1.0},"1200":{"tf":1.0},"17":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"749":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"794":{"tf":1.0}}},"w":{"df":9,"docs":{"1046":{"tf":1.0},"1361":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1506":{"tf":1.0},"1594":{"tf":1.4142135623730951},"166":{"tf":1.0},"291":{"tf":1.0},"854":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1033":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1189":{"tf":1.0},"563":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1074":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1074":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1245":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"103":{"tf":1.7320508075688772}}}}}}},"df":4,"docs":{"1074":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1373":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{")":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1190":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1418":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"36":{"tf":1.0},"38":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1206":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1465":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1279":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"137":{"tf":1.0},"140":{"tf":1.0},"1630":{"tf":1.0},"779":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1426":{"tf":1.4142135623730951},"386":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1395":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"124":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1309":{"tf":1.0},"133":{"tf":1.0},"136":{"tf":1.0},"140":{"tf":1.0},"675":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1630":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"r":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"l":{"df":1,"docs":{"1283":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1302":{"tf":1.0},"605":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":263,"docs":{"100":{"tf":1.0},"1001":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.0},"1016":{"tf":1.7320508075688772},"1017":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1043":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1056":{"tf":1.0},"1067":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1089":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1113":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.4142135623730951},"1122":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":2.23606797749979},"1130":{"tf":1.0},"1134":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1141":{"tf":1.4142135623730951},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1195":{"tf":1.0},"1199":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":2.6457513110645907},"1209":{"tf":1.4142135623730951},"121":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1217":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1238":{"tf":1.0},"124":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1283":{"tf":1.0},"1286":{"tf":1.0},"1290":{"tf":1.0},"1299":{"tf":1.0},"130":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1342":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":2.449489742783178},"1365":{"tf":1.0},"1371":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"138":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1387":{"tf":2.23606797749979},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"139":{"tf":2.23606797749979},"1398":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1464":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1511":{"tf":1.0},"1540":{"tf":1.7320508075688772},"1550":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1552":{"tf":1.7320508075688772},"1553":{"tf":2.0},"1567":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.4142135623730951},"1607":{"tf":1.4142135623730951},"1627":{"tf":1.0},"1640":{"tf":1.4142135623730951},"20":{"tf":1.0},"206":{"tf":1.0},"212":{"tf":1.0},"227":{"tf":2.0},"235":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"26":{"tf":1.0},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.7320508075688772},"292":{"tf":1.7320508075688772},"295":{"tf":1.4142135623730951},"297":{"tf":1.0},"309":{"tf":1.0},"349":{"tf":1.4142135623730951},"353":{"tf":1.4142135623730951},"354":{"tf":2.0},"36":{"tf":1.0},"381":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"478":{"tf":1.7320508075688772},"479":{"tf":2.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"487":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"51":{"tf":1.0},"516":{"tf":1.0},"53":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"546":{"tf":1.4142135623730951},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"579":{"tf":1.0},"580":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"61":{"tf":2.0},"611":{"tf":1.0},"613":{"tf":1.0},"62":{"tf":1.4142135623730951},"637":{"tf":1.0},"649":{"tf":1.0},"65":{"tf":1.7320508075688772},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"66":{"tf":1.7320508075688772},"668":{"tf":1.0},"679":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"714":{"tf":1.7320508075688772},"715":{"tf":2.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"737":{"tf":1.0},"751":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.7320508075688772},"781":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"839":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"865":{"tf":3.1622776601683795},"866":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"891":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":3.0},"906":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0},"987":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"997":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1378":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.7320508075688772}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"812":{"tf":1.0},"823":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1387":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"d":{"df":2,"docs":{"1365":{"tf":1.0},"1374":{"tf":1.0}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"721":{"tf":1.0},"781":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"773":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1585":{"tf":1.0},"1587":{"tf":1.4142135623730951},"1597":{"tf":1.4142135623730951},"1607":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1364":{"tf":1.0},"1376":{"tf":1.0}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"485":{"tf":1.0},"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":467,"docs":{"1":{"tf":2.0},"100":{"tf":1.4142135623730951},"1004":{"tf":2.449489742783178},"1009":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"102":{"tf":2.449489742783178},"1022":{"tf":1.0},"103":{"tf":1.7320508075688772},"1037":{"tf":1.0},"1039":{"tf":1.7320508075688772},"104":{"tf":1.7320508075688772},"1040":{"tf":1.0},"106":{"tf":2.6457513110645907},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":2.23606797749979},"1077":{"tf":1.0},"1078":{"tf":1.0},"108":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1083":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1095":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1104":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1125":{"tf":1.0},"113":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"114":{"tf":1.0},"1140":{"tf":1.0},"1144":{"tf":2.449489742783178},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.0},"115":{"tf":1.0},"1152":{"tf":1.0},"1156":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.0},"118":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"119":{"tf":1.0},"1191":{"tf":1.7320508075688772},"1192":{"tf":1.4142135623730951},"1194":{"tf":2.23606797749979},"1195":{"tf":1.7320508075688772},"1199":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":2.449489742783178},"1207":{"tf":1.0},"1208":{"tf":2.23606797749979},"1209":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"1210":{"tf":1.7320508075688772},"1211":{"tf":1.0},"1215":{"tf":1.0},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"122":{"tf":1.0},"1221":{"tf":2.449489742783178},"1224":{"tf":1.4142135623730951},"1226":{"tf":1.0},"123":{"tf":1.7320508075688772},"1238":{"tf":1.7320508075688772},"124":{"tf":2.0},"1249":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1254":{"tf":1.0},"1262":{"tf":1.0},"1266":{"tf":2.0},"1267":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":2.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1292":{"tf":2.0},"1293":{"tf":2.23606797749979},"1294":{"tf":1.7320508075688772},"1295":{"tf":1.0},"1296":{"tf":2.23606797749979},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1299":{"tf":2.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.0},"1303":{"tf":2.0},"1304":{"tf":1.0},"1305":{"tf":2.0},"1306":{"tf":1.0},"1307":{"tf":2.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"131":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1316":{"tf":2.23606797749979},"1322":{"tf":1.0},"1323":{"tf":1.0},"133":{"tf":1.4142135623730951},"1338":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"136":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1366":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.449489742783178},"1379":{"tf":2.0},"1380":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":2.23606797749979},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":2.449489742783178},"1390":{"tf":1.0},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1393":{"tf":2.23606797749979},"1394":{"tf":2.23606797749979},"1395":{"tf":1.7320508075688772},"1396":{"tf":1.0},"1398":{"tf":1.7320508075688772},"140":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":3.0},"1410":{"tf":2.449489742783178},"1412":{"tf":1.0},"1418":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1431":{"tf":1.7320508075688772},"1432":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1436":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":2.0},"1443":{"tf":1.0},"1449":{"tf":1.0},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":2.0},"1466":{"tf":1.0},"1470":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.0},"1485":{"tf":3.0},"1486":{"tf":2.449489742783178},"1493":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":2.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1535":{"tf":2.0},"1537":{"tf":1.0},"1551":{"tf":1.4142135623730951},"1552":{"tf":1.4142135623730951},"1553":{"tf":1.0},"1554":{"tf":2.0},"1567":{"tf":2.23606797749979},"1568":{"tf":1.4142135623730951},"1575":{"tf":1.0},"1576":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1587":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":1.0},"1613":{"tf":1.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1621":{"tf":1.7320508075688772},"1631":{"tf":2.0},"1640":{"tf":2.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"210":{"tf":2.0},"214":{"tf":1.0},"215":{"tf":1.4142135623730951},"23":{"tf":1.0},"234":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.0},"26":{"tf":1.0},"260":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"287":{"tf":1.7320508075688772},"288":{"tf":1.7320508075688772},"289":{"tf":1.7320508075688772},"29":{"tf":1.0},"291":{"tf":1.4142135623730951},"294":{"tf":2.0},"295":{"tf":1.0},"298":{"tf":2.23606797749979},"299":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.4142135623730951},"32":{"tf":1.7320508075688772},"322":{"tf":1.0},"339":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":2.0},"36":{"tf":2.6457513110645907},"362":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.4142135623730951},"412":{"tf":1.0},"42":{"tf":1.7320508075688772},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"437":{"tf":1.4142135623730951},"438":{"tf":1.7320508075688772},"44":{"tf":1.0},"440":{"tf":2.0},"446":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"45":{"tf":2.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.4142135623730951},"462":{"tf":2.23606797749979},"463":{"tf":1.4142135623730951},"466":{"tf":1.0},"48":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":2.0},"485":{"tf":1.0},"488":{"tf":1.7320508075688772},"489":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.7320508075688772},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.4142135623730951},"503":{"tf":1.0},"505":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.4142135623730951},"512":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.7320508075688772},"532":{"tf":1.0},"533":{"tf":2.0},"534":{"tf":2.23606797749979},"535":{"tf":1.4142135623730951},"536":{"tf":1.0},"537":{"tf":1.7320508075688772},"541":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"546":{"tf":1.0},"547":{"tf":2.23606797749979},"548":{"tf":2.0},"55":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.7320508075688772},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"558":{"tf":2.0},"559":{"tf":1.7320508075688772},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":2.23606797749979},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"576":{"tf":1.4142135623730951},"577":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"58":{"tf":1.0},"580":{"tf":1.0},"585":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":2.0},"606":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.4142135623730951},"61":{"tf":1.0},"610":{"tf":1.0},"613":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"634":{"tf":1.0},"637":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772},"671":{"tf":1.0},"672":{"tf":1.7320508075688772},"675":{"tf":1.0},"680":{"tf":1.7320508075688772},"681":{"tf":1.7320508075688772},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.7320508075688772},"688":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":2.23606797749979},"700":{"tf":1.4142135623730951},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"720":{"tf":2.0},"721":{"tf":1.0},"724":{"tf":1.7320508075688772},"725":{"tf":1.0},"729":{"tf":1.7320508075688772},"730":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"732":{"tf":1.0},"737":{"tf":1.4142135623730951},"739":{"tf":2.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"756":{"tf":2.23606797749979},"76":{"tf":1.0},"761":{"tf":1.0},"763":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":2.0},"78":{"tf":2.8284271247461903},"780":{"tf":1.4142135623730951},"782":{"tf":1.4142135623730951},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"787":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.7320508075688772},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"815":{"tf":1.7320508075688772},"830":{"tf":1.0},"832":{"tf":1.0},"84":{"tf":1.4142135623730951},"841":{"tf":2.0},"86":{"tf":1.0},"865":{"tf":1.7320508075688772},"88":{"tf":1.0},"894":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.7320508075688772},"908":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"914":{"tf":2.0},"916":{"tf":1.0},"920":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"93":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"933":{"tf":1.0},"935":{"tf":1.0},"94":{"tf":1.7320508075688772},"941":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951},"95":{"tf":2.449489742783178},"951":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"965":{"tf":1.0},"969":{"tf":1.0},"973":{"tf":1.0},"975":{"tf":1.0},"98":{"tf":1.4142135623730951},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":2.449489742783178},"988":{"tf":1.7320508075688772},"99":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"998":{"tf":1.0}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"446":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"131":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"680":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1316":{"tf":1.0},"1317":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1410":{"tf":2.23606797749979},"1442":{"tf":1.0},"1465":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"463":{"tf":1.0},"559":{"tf":1.0},"680":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":{"680":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"1":{"df":1,"docs":{"95":{"tf":1.0}}},"2":{"df":1,"docs":{"95":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1279":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1465":{"tf":1.0},"724":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.0},"95":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"1387":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1454":{"tf":1.0},"1458":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1474":{"tf":1.0},"637":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.4142135623730951},"739":{"tf":1.0},"929":{"tf":1.0}},"u":{"df":6,"docs":{"682":{"tf":1.0},"708":{"tf":1.4142135623730951},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"715":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":2,"docs":{"1379":{"tf":1.7320508075688772},"1384":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"110":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1039":{"tf":1.0},"1459":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1458":{"tf":1.7320508075688772}}}}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1346":{"tf":1.0},"737":{"tf":1.4142135623730951},"756":{"tf":1.0},"762":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1339":{"tf":1.0},"1349":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":6,"docs":{"1339":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1392":{"tf":1.0},"756":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"493":{"tf":1.0}}}}}}}}},"r":{"df":4,"docs":{"1442":{"tf":1.4142135623730951},"488":{"tf":1.0},"501":{"tf":1.0},"95":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":1,"docs":{"1441":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":7,"docs":{"1431":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1642":{"tf":1.4142135623730951},"428":{"tf":1.4142135623730951}},"u":{"df":16,"docs":{"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"452":{"tf":1.0},"459":{"tf":1.7320508075688772},"472":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"688":{"tf":1.0},"695":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"479":{"tf":1.0},"487":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1223":{"tf":1.0},"1436":{"tf":1.4142135623730951},"495":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"576":{"tf":1.0},"583":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"572":{"tf":1.0},"578":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"501":{"tf":1.4142135623730951},"95":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"516":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":11,"docs":{"104":{"tf":1.0},"106":{"tf":1.0},"122":{"tf":1.0},"136":{"tf":1.4142135623730951},"141":{"tf":1.0},"1587":{"tf":1.0},"160":{"tf":1.0},"496":{"tf":1.0},"610":{"tf":1.0},"732":{"tf":1.0},"784":{"tf":1.0}}},"=":{"%":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1364":{"tf":1.0},"1365":{"tf":1.0},"1607":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":31,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"107":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"136":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1464":{"tf":1.0},"1486":{"tf":1.0},"1607":{"tf":1.4142135623730951},"37":{"tf":1.0},"438":{"tf":1.0},"44":{"tf":1.0},"487":{"tf":1.0},"672":{"tf":1.0},"700":{"tf":1.0},"723":{"tf":1.0},"777":{"tf":1.0},"78":{"tf":1.4142135623730951},"869":{"tf":1.0}},"i":{"d":{"df":5,"docs":{"107":{"tf":1.0},"1486":{"tf":1.4142135623730951},"460":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1514":{"tf":1.0},"51":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"808":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"440":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1426":{"tf":1.0}}}}},"/":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1352":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1122":{"tf":1.0},"1223":{"tf":1.0},"544":{"tf":1.0},"794":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"924":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"339":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"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":{"1082":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"353":{"tf":1.0}},"e":{"_":{"c":{"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":{"1363":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"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":14,"docs":{"1073":{"tf":1.0},"1128":{"tf":1.4142135623730951},"157":{"tf":1.0},"1627":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"292":{"tf":1.0},"53":{"tf":1.0},"848":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.7320508075688772},"996":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1302":{"tf":1.0},"406":{"tf":1.0},"441":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"440":{"tf":1.0},"446":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"565":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"531":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"531":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":2.449489742783178}},"e":{"'":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1018":{"tf":1.0},"1229":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":17,"docs":{"1220":{"tf":1.0},"1322":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1468":{"tf":1.4142135623730951},"1630":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.4142135623730951},"634":{"tf":1.0},"661":{"tf":1.0},"72":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1220":{"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":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1220":{"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":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"89":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"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":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"1384":{"tf":1.0},"1385":{"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":{}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1220":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1220":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1220":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"551":{"tf":1.0},"89":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1146":{"tf":1.0},"371":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":65,"docs":{"1621":{"tf":1.4142135623730951},"436":{"tf":2.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.0},"671":{"tf":2.0},"672":{"tf":1.0},"673":{"tf":2.0},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"765":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"462":{"tf":1.0},"699":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":21,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1052":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1273":{"tf":1.0},"1354":{"tf":1.0},"1381":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"252":{"tf":1.0},"33":{"tf":1.0},"439":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0},"673":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"994":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"788":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"1191":{"tf":1.0}},"e":{"df":1,"docs":{"1367":{"tf":1.0}}}},"x":{"df":1,"docs":{"930":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"697":{"tf":1.0}}}}},"df":0,"docs":{}},"df":9,"docs":{"1098":{"tf":1.4142135623730951},"1101":{"tf":1.4142135623730951},"1107":{"tf":1.7320508075688772},"1110":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1137":{"tf":1.4142135623730951},"1140":{"tf":1.0},"697":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1017":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1275":{"tf":1.0},"1279":{"tf":1.7320508075688772},"815":{"tf":1.0},"912":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"928":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":7,"docs":{"1414":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"198":{"tf":1.0},"318":{"tf":1.0},"320":{"tf":1.0}}}},"u":{"df":2,"docs":{"1157":{"tf":2.0},"1172":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"332":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"146":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1107":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}},"s":{"a":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"986":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1303":{"tf":1.0}}}}}}}}}},"df":6,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":2.0},"992":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"1043":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1389":{"tf":1.0},"1504":{"tf":1.4142135623730951},"421":{"tf":1.0},"649":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1258":{"tf":1.0},"1271":{"tf":1.0},"253":{"tf":1.0},"901":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1124":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"757":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"849":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1157":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"844":{"tf":1.0},"849":{"tf":1.0}}}}}},"o":{"c":{"df":1,"docs":{"1068":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"222":{"tf":1.0},"850":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":32,"docs":{"1059":{"tf":2.6457513110645907},"149":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"1549":{"tf":1.0},"1551":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"1554":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1561":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"1564":{"tf":1.0},"1566":{"tf":1.0},"1567":{"tf":1.0},"1568":{"tf":1.0},"1569":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"850":{"tf":1.0}}}},"v":{"df":2,"docs":{"16":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"383":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"341":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"350":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"365":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"354":{"tf":1.0},"357":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"341":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"0":{".":{"8":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"df":1,"docs":{"392":{"tf":1.0}}},"df":1,"docs":{"385":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"df":3,"docs":{"361":{"tf":1.0},"378":{"tf":1.0},"392":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{":":{":":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1328":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"392":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"c":{"3":{"3":{"3":{"9":{"df":1,"docs":{"1328":{"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"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":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"392":{"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":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1328":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"380":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"383":{"tf":1.0},"392":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"346":{"tf":1.0},"350":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{":":{":":{"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":{},"j":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"346":{"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":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"123":{"tf":1.0},"133":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{")":{")":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1357":{"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":1,"docs":{"66":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1002":{"tf":1.0},"967":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":35,"docs":{"1008":{"tf":1.0},"1055":{"tf":1.0},"1075":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1330":{"tf":1.0},"136":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"148":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"151":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"153":{"tf":1.0},"156":{"tf":1.0},"1602":{"tf":1.0},"162":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"250":{"tf":1.0},"272":{"tf":1.0},"438":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"672":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"892":{"tf":1.0},"986":{"tf":1.0}},"e":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1367":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1370":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1504":{"tf":1.0},"1571":{"tf":1.0}}}},"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"386":{"tf":1.0}}}}}},"df":2,"docs":{"386":{"tf":2.23606797749979},"396":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1199":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1033":{"tf":1.0},"1392":{"tf":1.0},"1501":{"tf":1.0},"219":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"49":{"tf":1.0},"89":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":62,"docs":{"1008":{"tf":1.0},"1084":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1195":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1229":{"tf":1.0},"126":{"tf":1.0},"1267":{"tf":1.0},"1361":{"tf":1.0},"142":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1485":{"tf":1.0},"1487":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1588":{"tf":1.0},"186":{"tf":1.0},"19":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"232":{"tf":1.4142135623730951},"238":{"tf":1.0},"24":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"299":{"tf":1.0},"306":{"tf":1.0},"312":{"tf":1.4142135623730951},"313":{"tf":1.0},"32":{"tf":1.0},"357":{"tf":1.0},"367":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"479":{"tf":1.4142135623730951},"51":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.0},"66":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"715":{"tf":1.4142135623730951},"727":{"tf":1.0},"752":{"tf":1.0},"824":{"tf":1.4142135623730951},"830":{"tf":1.0},"840":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.4142135623730951},"94":{"tf":1.0},"951":{"tf":1.0},"986":{"tf":2.23606797749979}},"i":{"df":25,"docs":{"1059":{"tf":1.0},"107":{"tf":1.0},"1403":{"tf":1.0},"1486":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1508":{"tf":1.0},"1519":{"tf":1.0},"1522":{"tf":1.0},"1533":{"tf":1.0},"1540":{"tf":1.0},"1542":{"tf":1.0},"1544":{"tf":1.0},"1562":{"tf":1.0},"1563":{"tf":1.0},"206":{"tf":1.0},"256":{"tf":1.0},"311":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"823":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"997":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":9,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1127":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.7320508075688772}},"h":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1367":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1200":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"955":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"73":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1147":{"tf":1.7320508075688772},"1532":{"tf":1.4142135623730951},"1533":{"tf":1.4142135623730951},"175":{"tf":2.0},"336":{"tf":2.0},"417":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951}}}}},"x":{"df":2,"docs":{"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"427":{"tf":1.4142135623730951},"428":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"656":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1250":{"tf":1.0},"1254":{"tf":1.0},"1393":{"tf":1.0}}},"h":{"df":2,"docs":{"1008":{"tf":1.0},"1187":{"tf":1.0}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"326":{"tf":1.0},"327":{"tf":1.0}}}},"l":{"df":5,"docs":{"1070":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"951":{"tf":1.0},"957":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1013":{"tf":1.0},"1521":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1200":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1596":{"tf":1.0},"935":{"tf":1.0}}}}},"r":{"d":{"df":32,"docs":{"0":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1105":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1276":{"tf":1.0},"143":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"16":{"tf":1.0},"1628":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":2.0},"323":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"418":{"tf":1.0},"64":{"tf":1.0},"646":{"tf":1.0},"65":{"tf":1.4142135623730951},"941":{"tf":1.0},"984":{"tf":2.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":3,"docs":{"1254":{"tf":1.0},"752":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"967":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":81,"docs":{"1":{"tf":1.4142135623730951},"1059":{"tf":1.0},"1139":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1273":{"tf":1.0},"1302":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1477":{"tf":1.0},"1485":{"tf":1.0},"163":{"tf":1.0},"172":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.0},"293":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":2.23606797749979},"370":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"427":{"tf":1.0},"438":{"tf":1.7320508075688772},"526":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"626":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"703":{"tf":1.0},"75":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"760":{"tf":1.0},"77":{"tf":1.7320508075688772},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"802":{"tf":1.0},"803":{"tf":1.7320508075688772},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"81":{"tf":1.0},"810":{"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},"885":{"tf":1.0},"887":{"tf":1.4142135623730951},"888":{"tf":1.0},"89":{"tf":1.0},"891":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.4142135623730951},"899":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"906":{"tf":1.0},"907":{"tf":1.7320508075688772},"91":{"tf":1.0},"910":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"967":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1458":{"tf":1.4142135623730951},"463":{"tf":1.0},"572":{"tf":1.0},"700":{"tf":1.0}}}}}},"t":{"df":2,"docs":{"1373":{"tf":1.0},"1376":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"931":{"tf":1.0},"932":{"tf":1.0}}}}}},"df":48,"docs":{"1094":{"tf":1.0},"1210":{"tf":1.0},"1219":{"tf":1.0},"1235":{"tf":1.0},"1487":{"tf":1.0},"389":{"tf":1.0},"450":{"tf":1.0},"51":{"tf":1.0},"594":{"tf":1.0},"686":{"tf":1.0},"768":{"tf":1.0},"815":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"883":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.4142135623730951},"891":{"tf":1.0},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":2.0},"912":{"tf":2.449489742783178},"913":{"tf":1.0},"914":{"tf":2.23606797749979},"915":{"tf":1.7320508075688772},"916":{"tf":1.7320508075688772},"917":{"tf":1.0},"918":{"tf":1.7320508075688772},"919":{"tf":1.4142135623730951},"920":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"922":{"tf":1.0},"923":{"tf":1.7320508075688772},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":2.0},"929":{"tf":1.0},"930":{"tf":2.8284271247461903},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.0},"989":{"tf":1.0},"999":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"394":{"tf":1.0},"988":{"tf":1.0}}}}}}},"u":{"df":63,"docs":{"102":{"tf":1.0},"1023":{"tf":1.0},"107":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1083":{"tf":1.7320508075688772},"1089":{"tf":1.0},"1157":{"tf":2.0},"1160":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1172":{"tf":1.0},"1218":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1224":{"tf":1.4142135623730951},"1339":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.7320508075688772},"1410":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1435":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1443":{"tf":2.23606797749979},"1456":{"tf":1.0},"1458":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1466":{"tf":2.23606797749979},"1486":{"tf":1.0},"1487":{"tf":1.4142135623730951},"206":{"tf":1.0},"290":{"tf":1.4142135623730951},"304":{"tf":1.0},"323":{"tf":1.4142135623730951},"440":{"tf":1.0},"450":{"tf":1.0},"452":{"tf":1.0},"489":{"tf":2.0},"501":{"tf":1.7320508075688772},"541":{"tf":1.0},"542":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"603":{"tf":1.4142135623730951},"686":{"tf":1.0},"725":{"tf":2.0},"737":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"805":{"tf":1.0},"932":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.7320508075688772},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"955":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"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":4,"docs":{"102":{"tf":1.0},"1220":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"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":2,"docs":{"1465":{"tf":1.0},"1466":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1466":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1466":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1443":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1443":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"[":{"'":{"c":{"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":2,"docs":{"1218":{"tf":1.0},"777":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"777":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1218":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"777":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1442":{"tf":1.0},"1443":{"tf":1.0}}}}}}}}},"y":{"df":6,"docs":{"1033":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":1.0},"45":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"380":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"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":{}}}}}}},"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":1,"docs":{"1236":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"1328":{"tf":1.0},"1380":{"tf":1.0},"338":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.0},"351":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"r":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"8":{"(":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"1328":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"364":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"364":{"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":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":6,"docs":{"1366":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1524":{"tf":1.0},"375":{"tf":1.0},"510":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1485":{"tf":1.7320508075688772},"78":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1439":{"tf":1.4142135623730951},"1649":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":7,"docs":{"1252":{"tf":1.0},"1477":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"510":{"tf":1.0},"80":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"1255":{"tf":1.4142135623730951},"1438":{"tf":1.4142135623730951},"1649":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1229":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1520":{"tf":1.4142135623730951},"1524":{"tf":1.0},"1601":{"tf":1.0},"202":{"tf":1.4142135623730951},"206":{"tf":1.0},"247":{"tf":1.0},"379":{"tf":1.0},"510":{"tf":1.0}}}}}},"df":1,"docs":{"844":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"1":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.0}}},"df":63,"docs":{"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"105":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1157":{"tf":2.0},"1202":{"tf":1.0},"1233":{"tf":1.0},"1277":{"tf":1.7320508075688772},"1280":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1294":{"tf":2.0},"1295":{"tf":1.0},"1297":{"tf":2.23606797749979},"1300":{"tf":1.4142135623730951},"1311":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1328":{"tf":2.0},"1354":{"tf":1.0},"1361":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1385":{"tf":2.0},"1388":{"tf":1.4142135623730951},"1410":{"tf":2.6457513110645907},"1623":{"tf":1.4142135623730951},"163":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"172":{"tf":1.0},"178":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"190":{"tf":1.0},"213":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"30":{"tf":1.0},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"333":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"561":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"669":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"985":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":15,"docs":{"1080":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1095":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1219":{"tf":1.0},"1271":{"tf":1.0},"1279":{"tf":1.0},"1359":{"tf":1.0},"1476":{"tf":1.0},"1626":{"tf":1.0},"19":{"tf":1.0},"291":{"tf":1.0},"551":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1533":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"1045":{"tf":1.4142135623730951},"111":{"tf":1.0},"1144":{"tf":2.23606797749979},"1145":{"tf":1.7320508075688772},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1150":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1210":{"tf":1.4142135623730951},"130":{"tf":1.0},"1400":{"tf":1.0},"1487":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"1532":{"tf":2.449489742783178},"1533":{"tf":1.7320508075688772},"1534":{"tf":1.7320508075688772},"1537":{"tf":1.0},"1538":{"tf":2.0},"1563":{"tf":1.4142135623730951},"1570":{"tf":1.4142135623730951},"1571":{"tf":2.23606797749979},"1573":{"tf":1.4142135623730951},"1636":{"tf":1.4142135623730951},"1647":{"tf":1.7320508075688772},"1653":{"tf":1.4142135623730951},"1656":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"180":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"30":{"tf":1.0},"338":{"tf":1.0},"357":{"tf":1.0},"362":{"tf":3.0},"364":{"tf":1.0},"366":{"tf":1.4142135623730951},"412":{"tf":1.0},"415":{"tf":1.7320508075688772},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"440":{"tf":1.0},"499":{"tf":1.0},"597":{"tf":1.0},"643":{"tf":1.7320508075688772},"646":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"684":{"tf":1.0},"71":{"tf":1.7320508075688772},"72":{"tf":2.0},"771":{"tf":1.0},"797":{"tf":1.7320508075688772},"92":{"tf":1.0},"970":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.0},"980":{"tf":1.0},"999":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1150":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"358":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":81,"docs":{"1008":{"tf":2.23606797749979},"1030":{"tf":1.7320508075688772},"1032":{"tf":1.4142135623730951},"1033":{"tf":2.0},"1034":{"tf":1.4142135623730951},"1046":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1081":{"tf":1.7320508075688772},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1182":{"tf":2.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.23606797749979},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1209":{"tf":1.0},"122":{"tf":1.0},"1252":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1286":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1325":{"tf":1.0},"137":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1487":{"tf":3.1622776601683795},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"1534":{"tf":1.4142135623730951},"1535":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.0},"229":{"tf":1.0},"253":{"tf":1.0},"347":{"tf":1.0},"412":{"tf":1.4142135623730951},"440":{"tf":1.4142135623730951},"447":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"72":{"tf":1.0},"751":{"tf":1.0},"91":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"968":{"tf":1.4142135623730951},"973":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"980":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":2.0},"999":{"tf":1.0}}},"i":{"df":6,"docs":{"1261":{"tf":1.4142135623730951},"1271":{"tf":1.0},"38":{"tf":1.0},"503":{"tf":1.0},"6":{"tf":1.0},"746":{"tf":1.0}}}}},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"1470":{"tf":1.4142135623730951},"1474":{"tf":2.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1468":{"tf":1.0},"1470":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":4,"docs":{"110":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1212":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":57,"docs":{"1084":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1325":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1461":{"tf":2.23606797749979},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1468":{"tf":2.0},"1470":{"tf":1.7320508075688772},"1474":{"tf":2.23606797749979},"667":{"tf":1.0},"668":{"tf":1.0},"675":{"tf":2.23606797749979},"676":{"tf":1.0},"681":{"tf":1.0},"683":{"tf":1.7320508075688772},"684":{"tf":1.0},"685":{"tf":1.4142135623730951},"687":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"692":{"tf":1.0},"694":{"tf":1.4142135623730951},"695":{"tf":2.0},"697":{"tf":1.7320508075688772},"700":{"tf":1.4142135623730951},"749":{"tf":1.4142135623730951},"763":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.7320508075688772},"775":{"tf":2.23606797749979},"776":{"tf":1.7320508075688772},"777":{"tf":1.7320508075688772},"778":{"tf":2.0},"780":{"tf":1.4142135623730951},"781":{"tf":1.7320508075688772},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"787":{"tf":1.7320508075688772},"800":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1389":{"tf":2.6457513110645907},"1390":{"tf":1.0},"1391":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1393":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1519":{"tf":1.0},"33":{"tf":1.0},"532":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"436":{"tf":1.0},"671":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"1391":{"tf":2.0},"521":{"tf":1.0},"532":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1165":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"794":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1198":{"tf":1.0},"748":{"tf":1.0},"761":{"tf":1.4142135623730951}}}}}},"df":49,"docs":{"1012":{"tf":1.0},"1013":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1201":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1270":{"tf":1.0},"1276":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1352":{"tf":2.23606797749979},"137":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":1.4142135623730951},"1556":{"tf":1.0},"1558":{"tf":1.0},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"273":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.7320508075688772},"320":{"tf":1.4142135623730951},"322":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.0},"343":{"tf":2.0},"41":{"tf":1.0},"518":{"tf":2.0},"531":{"tf":1.0},"535":{"tf":2.0},"676":{"tf":1.0},"794":{"tf":1.0},"980":{"tf":1.0},"990":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":127,"docs":{"1156":{"tf":1.4142135623730951},"1157":{"tf":2.23606797749979},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1162":{"tf":2.8284271247461903},"1164":{"tf":1.4142135623730951},"1165":{"tf":2.0},"1166":{"tf":1.0},"1167":{"tf":1.0},"1169":{"tf":2.0},"1174":{"tf":2.449489742783178},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1179":{"tf":1.0},"1298":{"tf":1.0},"1325":{"tf":1.0},"1350":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1553":{"tf":1.0},"1588":{"tf":1.0},"339":{"tf":1.7320508075688772},"347":{"tf":1.0},"410":{"tf":1.7320508075688772},"441":{"tf":2.23606797749979},"442":{"tf":1.0},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":2.0},"459":{"tf":2.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"484":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.7320508075688772},"499":{"tf":1.0},"534":{"tf":2.0},"54":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"570":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"585":{"tf":1.0},"588":{"tf":1.0},"596":{"tf":1.4142135623730951},"597":{"tf":2.6457513110645907},"598":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":2.0},"601":{"tf":2.449489742783178},"602":{"tf":2.0},"603":{"tf":2.23606797749979},"604":{"tf":2.6457513110645907},"606":{"tf":1.7320508075688772},"607":{"tf":2.0},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.7320508075688772},"613":{"tf":1.7320508075688772},"615":{"tf":2.23606797749979},"616":{"tf":3.4641016151377544},"618":{"tf":1.0},"619":{"tf":1.0},"621":{"tf":1.4142135623730951},"623":{"tf":1.0},"641":{"tf":1.0},"668":{"tf":1.0},"680":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.4142135623730951},"775":{"tf":1.4142135623730951},"776":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.7320508075688772},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"797":{"tf":2.6457513110645907},"825":{"tf":1.7320508075688772},"836":{"tf":1.0},"839":{"tf":2.8284271247461903},"840":{"tf":1.4142135623730951},"842":{"tf":3.1622776601683795},"845":{"tf":3.3166247903554},"861":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":3.0},"869":{"tf":1.4142135623730951},"871":{"tf":2.0},"873":{"tf":1.0},"891":{"tf":2.23606797749979},"894":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"919":{"tf":2.8284271247461903},"937":{"tf":1.0},"939":{"tf":2.449489742783178},"948":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"973":{"tf":2.6457513110645907}}}},"p":{"df":2,"docs":{"1279":{"tf":1.0},"1388":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1052":{"tf":1.0},"237":{"tf":1.0},"6":{"tf":1.0},"78":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1008":{"tf":1.0},"1093":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1265":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1236":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.4142135623730951},"364":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":56,"docs":{"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1128":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1241":{"tf":1.0},"127":{"tf":1.0},"1325":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.4142135623730951},"138":{"tf":1.0},"1387":{"tf":1.0},"1495":{"tf":1.0},"1499":{"tf":1.0},"1501":{"tf":1.0},"1585":{"tf":1.4142135623730951},"1598":{"tf":1.0},"1653":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":1.4142135623730951},"241":{"tf":1.0},"248":{"tf":1.4142135623730951},"254":{"tf":1.4142135623730951},"279":{"tf":1.0},"292":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"32":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"405":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"74":{"tf":1.0},"811":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"857":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"886":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"915":{"tf":1.4142135623730951},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"983":{"tf":1.0},"986":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"683":{"tf":1.0}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"508":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":11,"docs":{"1":{"tf":1.0},"1202":{"tf":1.0},"1220":{"tf":1.0},"1478":{"tf":1.0},"309":{"tf":1.0},"543":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"761":{"tf":1.0},"809":{"tf":1.0}}}}}},"u":{"b":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"1487":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"313":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1331":{"tf":1.0},"1586":{"tf":1.0},"1594":{"tf":1.0},"885":{"tf":1.0},"901":{"tf":1.4142135623730951},"952":{"tf":1.0},"981":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1306":{"tf":1.0},"131":{"tf":1.0},"1357":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"124":{"tf":1.0},"126":{"tf":2.0},"127":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1601":{"tf":2.6457513110645907},"1602":{"tf":3.4641016151377544},"1609":{"tf":1.7320508075688772},"966":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"887":{"tf":1.4142135623730951},"988":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"1008":{"tf":1.0}}}},"t":{"df":1,"docs":{"298":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1201":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"903":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":4,"docs":{"1080":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0},"298":{"tf":1.0}},"e":{"d":{"df":2,"docs":{"1210":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"25":{"tf":1.0},"55":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"219":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":22,"docs":{"107":{"tf":1.0},"1224":{"tf":1.0},"1401":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"223":{"tf":1.0},"341":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"59":{"tf":1.4142135623730951},"792":{"tf":1.0},"842":{"tf":1.0},"891":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":13,"docs":{"1210":{"tf":1.0},"1404":{"tf":1.0},"1418":{"tf":1.0},"1426":{"tf":1.0},"1540":{"tf":1.0},"1589":{"tf":1.0},"221":{"tf":1.0},"363":{"tf":1.0},"365":{"tf":1.0},"404":{"tf":1.4142135623730951},"634":{"tf":1.4142135623730951},"938":{"tf":1.0},"96":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1147":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":5,"docs":{"1256":{"tf":1.0},"1262":{"tf":1.0},"1532":{"tf":1.0},"2":{"tf":1.0},"508":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"182":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":14,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.0},"608":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1271":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1":{"tf":1.0},"1205":{"tf":1.0},"1241":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"526":{"tf":1.0}},"i":{"df":9,"docs":{"1229":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1619":{"tf":1.4142135623730951},"250":{"tf":1.0},"450":{"tf":1.0},"686":{"tf":1.0},"926":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":2,"docs":{"533":{"tf":1.0},"763":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1474":{"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":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1329":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1055":{"tf":1.4142135623730951},"1378":{"tf":1.0},"988":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":71,"docs":{"1":{"tf":1.0},"1026":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":1.4142135623730951},"1043":{"tf":1.0},"1064":{"tf":1.0},"1085":{"tf":1.4142135623730951},"1097":{"tf":1.0},"1098":{"tf":1.4142135623730951},"1138":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1180":{"tf":1.0},"1193":{"tf":1.0},"1203":{"tf":1.0},"1229":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1258":{"tf":1.0},"128":{"tf":1.0},"1283":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"138":{"tf":1.0},"14":{"tf":1.0},"143":{"tf":1.7320508075688772},"144":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1506":{"tf":1.0},"1518":{"tf":1.0},"1554":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.6457513110645907},"220":{"tf":1.0},"227":{"tf":1.0},"293":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"322":{"tf":1.0},"336":{"tf":2.449489742783178},"35":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.7320508075688772},"374":{"tf":1.0},"410":{"tf":1.4142135623730951},"421":{"tf":1.0},"422":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"55":{"tf":1.0},"589":{"tf":1.0},"623":{"tf":1.4142135623730951},"649":{"tf":1.0},"65":{"tf":1.4142135623730951},"650":{"tf":1.0},"667":{"tf":1.4142135623730951},"669":{"tf":1.0},"745":{"tf":1.0},"747":{"tf":1.4142135623730951},"762":{"tf":1.0},"800":{"tf":1.0},"810":{"tf":1.0},"820":{"tf":1.0},"859":{"tf":1.4142135623730951},"954":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"994":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":8,"docs":{"1145":{"tf":1.0},"1148":{"tf":1.0},"1249":{"tf":1.0},"1258":{"tf":1.0},"362":{"tf":1.0},"5":{"tf":1.0},"803":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"b":{"df":2,"docs":{"1150":{"tf":1.0},"1532":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1093":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1125":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1152":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"582":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":48,"docs":{"1325":{"tf":1.0},"1429":{"tf":1.4142135623730951},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.0},"1620":{"tf":1.0},"1621":{"tf":1.0},"1622":{"tf":1.4142135623730951},"1623":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.7320508075688772},"440":{"tf":1.7320508075688772},"441":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"455":{"tf":1.0},"456":{"tf":1.0},"467":{"tf":1.7320508075688772},"469":{"tf":1.0},"494":{"tf":1.0},"592":{"tf":1.7320508075688772},"596":{"tf":1.4142135623730951},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"624":{"tf":2.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1018":{"tf":1.7320508075688772},"1202":{"tf":1.0},"1392":{"tf":1.0},"1620":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.4142135623730951},"1604":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1561":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":39,"docs":{"0":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1043":{"tf":1.0},"1075":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.0},"1139":{"tf":1.0},"1202":{"tf":1.0},"1235":{"tf":1.0},"1302":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1327":{"tf":1.0},"1336":{"tf":1.0},"1521":{"tf":1.0},"1527":{"tf":1.0},"153":{"tf":1.0},"1533":{"tf":1.0},"1537":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"177":{"tf":1.0},"33":{"tf":1.7320508075688772},"38":{"tf":1.0},"399":{"tf":1.0},"416":{"tf":1.4142135623730951},"46":{"tf":1.0},"628":{"tf":1.0},"63":{"tf":1.0},"644":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"811":{"tf":1.0},"841":{"tf":1.0},"899":{"tf":1.0},"985":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"801":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1439":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"801":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"1080":{"tf":1.0}}},"1":{"df":1,"docs":{"1080":{"tf":1.0}}},"2":{"df":1,"docs":{"1080":{"tf":1.0}}},"3":{"df":1,"docs":{"1080":{"tf":1.0}}},"4":{"df":1,"docs":{"1080":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"27":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":7,"docs":{"1315":{"tf":2.0},"1316":{"tf":1.7320508075688772},"1317":{"tf":1.7320508075688772},"1319":{"tf":1.7320508075688772},"1320":{"tf":1.7320508075688772},"1321":{"tf":1.7320508075688772},"1322":{"tf":1.7320508075688772}},"l":{"df":5,"docs":{"1362":{"tf":1.0},"1630":{"tf":1.4142135623730951},"1647":{"tf":1.0},"806":{"tf":1.0},"985":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1166":{"tf":1.0},"380":{"tf":1.4142135623730951},"914":{"tf":1.0},"919":{"tf":1.0},"931":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":6,"docs":{"1059":{"tf":1.0},"1251":{"tf":1.0},"1277":{"tf":1.0},"1557":{"tf":1.0},"329":{"tf":1.0},"507":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"141":{"tf":1.0},"764":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1238":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}}}},"df":22,"docs":{"1001":{"tf":1.0},"104":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.4142135623730951},"1217":{"tf":2.0},"1238":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"133":{"tf":1.0},"136":{"tf":1.4142135623730951},"1378":{"tf":1.0},"140":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1472":{"tf":1.4142135623730951},"1551":{"tf":1.0},"1587":{"tf":1.0},"2":{"tf":1.0},"565":{"tf":1.0},"914":{"tf":1.0},"933":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1472":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1449":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"p":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":12,"docs":{"1194":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.7320508075688772},"126":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"177":{"tf":1.0},"560":{"tf":1.0},"842":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1229":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"294":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"812":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"737":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"956":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"737":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":103,"docs":{"1262":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1416":{"tf":2.8284271247461903},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.23606797749979},"1631":{"tf":2.8284271247461903},"17":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"199":{"tf":1.4142135623730951},"200":{"tf":3.605551275463989},"25":{"tf":1.7320508075688772},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"27":{"tf":2.0},"279":{"tf":1.4142135623730951},"29":{"tf":1.0},"293":{"tf":2.449489742783178},"294":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"31":{"tf":1.0},"32":{"tf":1.4142135623730951},"33":{"tf":1.0},"351":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"426":{"tf":1.0},"435":{"tf":1.0},"501":{"tf":2.23606797749979},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.7320508075688772},"58":{"tf":2.23606797749979},"59":{"tf":2.0},"604":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"654":{"tf":1.0},"670":{"tf":1.0},"737":{"tf":2.23606797749979},"756":{"tf":1.0},"762":{"tf":2.0},"778":{"tf":1.4142135623730951},"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"861":{"tf":1.0},"882":{"tf":1.4142135623730951},"883":{"tf":2.449489742783178},"884":{"tf":1.0},"885":{"tf":1.7320508075688772},"886":{"tf":1.7320508075688772},"887":{"tf":2.449489742783178},"888":{"tf":1.0},"889":{"tf":1.7320508075688772},"890":{"tf":1.7320508075688772},"891":{"tf":2.0},"892":{"tf":2.0},"893":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.4142135623730951},"897":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":2.23606797749979},"902":{"tf":2.0},"903":{"tf":2.0},"904":{"tf":1.7320508075688772},"905":{"tf":2.0},"906":{"tf":1.4142135623730951},"907":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.7320508075688772},"935":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.4142135623730951},"945":{"tf":1.0},"946":{"tf":1.0},"95":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":2.0},"955":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1266":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"426":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"501":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"27":{"tf":1.0}}},"df":4,"docs":{"1266":{"tf":1.4142135623730951},"27":{"tf":2.0},"801":{"tf":1.4142135623730951},"805":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"1":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1416":{"tf":1.0},"1517":{"tf":1.0},"42":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"849":{"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":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}},"l":{"df":2,"docs":{"1207":{"tf":1.0},"1359":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1236":{"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":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1472":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1236":{"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":3,"docs":{"1215":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1449":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"1215":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1449":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1236":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"107":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1215":{"tf":1.0},"1220":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"597":{"tf":1.0},"771":{"tf":1.0}}}}},"df":1,"docs":{"1014":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"m":{"df":27,"docs":{"1115":{"tf":1.0},"1125":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1218":{"tf":1.0},"139":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"26":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"353":{"tf":1.0},"487":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"723":{"tf":1.0},"775":{"tf":1.0},"842":{"tf":1.0},"868":{"tf":1.0},"887":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"943":{"tf":1.4142135623730951},"966":{"tf":1.0},"967":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"1360":{"tf":1.0},"139":{"tf":1.4142135623730951}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"224":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"849":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1215":{"tf":1.0},"1449":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1223":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1226":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1449":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"404":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1423":{"tf":1.0},"1582":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"634":{"tf":1.4142135623730951}}}}},"/":{"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":1,"docs":{"1059":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"427":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1215":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1244":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1215":{"tf":1.0},"1217":{"tf":1.7320508075688772},"1218":{"tf":1.4142135623730951},"1244":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1245":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1246":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"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":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1218":{"tf":1.0}}}}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1221":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1246":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1217":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1221":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1217":{"tf":1.0}}},"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"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":{}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"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":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1224":{"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":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1214":{"tf":1.0},"1233":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1223":{"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":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1214":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1221":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"668":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1217":{"tf":1.0}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1221":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"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":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1246":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1224":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1224":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":83,"docs":{"1013":{"tf":1.4142135623730951},"1051":{"tf":1.0},"1062":{"tf":1.0},"1095":{"tf":1.0},"1116":{"tf":1.0},"1145":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1205":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"1212":{"tf":2.449489742783178},"1213":{"tf":1.7320508075688772},"1214":{"tf":2.23606797749979},"1215":{"tf":3.605551275463989},"1216":{"tf":1.7320508075688772},"1217":{"tf":2.8284271247461903},"1218":{"tf":2.449489742783178},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.7320508075688772},"1221":{"tf":2.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":2.6457513110645907},"1224":{"tf":2.23606797749979},"1225":{"tf":1.0},"1226":{"tf":2.8284271247461903},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.7320508075688772},"1229":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1233":{"tf":2.6457513110645907},"1234":{"tf":2.0},"1235":{"tf":2.23606797749979},"1236":{"tf":3.1622776601683795},"1237":{"tf":2.0},"1238":{"tf":2.23606797749979},"1239":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1241":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1243":{"tf":2.449489742783178},"1244":{"tf":2.449489742783178},"1245":{"tf":1.7320508075688772},"1246":{"tf":2.23606797749979},"1247":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1329":{"tf":2.23606797749979},"1422":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":2.6457513110645907},"1471":{"tf":1.4142135623730951},"1472":{"tf":2.23606797749979},"1474":{"tf":1.0},"1481":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.4142135623730951},"1582":{"tf":2.0},"1623":{"tf":1.4142135623730951},"1654":{"tf":1.4142135623730951},"302":{"tf":1.0},"379":{"tf":1.0},"389":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"427":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"624":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"647":{"tf":1.4142135623730951},"654":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":2.23606797749979},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"668":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1220":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1472":{"tf":1.0},"668":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1223":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1459":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0},"928":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":23,"docs":{"1039":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1391":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1438":{"tf":2.23606797749979},"1486":{"tf":1.0},"1533":{"tf":1.0},"312":{"tf":1.0},"417":{"tf":1.0},"463":{"tf":1.4142135623730951},"521":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.4142135623730951},"554":{"tf":1.0},"645":{"tf":1.0},"842":{"tf":1.4142135623730951},"865":{"tf":1.0},"872":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"78":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"928":{"tf":1.0}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1191":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"106":{"tf":1.0},"1377":{"tf":1.0},"14":{"tf":1.0},"90":{"tf":1.0}}}},"r":{"d":{"df":2,"docs":{"136":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1445":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"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":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"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":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"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":{},"o":{"d":{"df":1,"docs":{"1447":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1445":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1447":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1227":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1227":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1447":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.4142135623730951}}}}}}},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"1":{"tf":1.0},"1144":{"tf":1.0},"1361":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"967":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":22,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"364":{"tf":2.0},"494":{"tf":1.0},"55":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772},"801":{"tf":3.0},"830":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"963":{"tf":1.4142135623730951},"964":{"tf":2.0},"967":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"963":{"tf":1.0},"964":{"tf":2.0},"966":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"801":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1097":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":12,"docs":{"100":{"tf":2.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1249":{"tf":1.0},"1273":{"tf":1.0},"132":{"tf":1.0},"1325":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1366":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1207":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":23,"docs":{"1001":{"tf":1.0},"1034":{"tf":1.0},"116":{"tf":1.0},"1187":{"tf":1.0},"1197":{"tf":1.0},"1313":{"tf":1.0},"1329":{"tf":1.0},"1367":{"tf":1.0},"1518":{"tf":1.0},"1530":{"tf":1.0},"1607":{"tf":1.0},"185":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.0},"379":{"tf":1.0},"388":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.0},"67":{"tf":1.0},"761":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0}}}}},"w":{"df":12,"docs":{"1436":{"tf":1.0},"1447":{"tf":2.0},"445":{"tf":1.0},"446":{"tf":1.0},"462":{"tf":1.0},"464":{"tf":1.0},"518":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":1.7320508075688772},"568":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1347":{"tf":1.7320508075688772}}}}}},"d":{"df":1,"docs":{"967":{"tf":1.0}}},"df":1,"docs":{"1201":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"1325":{"tf":1.0},"1586":{"tf":1.4142135623730951},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.4142135623730951},"1591":{"tf":1.4142135623730951},"1592":{"tf":1.4142135623730951},"1607":{"tf":1.0},"841":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1374":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"=":{"1":{")":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"102":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":40,"docs":{"1008":{"tf":1.0},"1018":{"tf":1.0},"1036":{"tf":1.0},"1056":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1094":{"tf":1.0},"1125":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.0},"1169":{"tf":1.0},"1176":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1374":{"tf":1.0},"1391":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1485":{"tf":1.0},"1559":{"tf":1.4142135623730951},"1591":{"tf":1.0},"1647":{"tf":1.0},"197":{"tf":1.0},"311":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"45":{"tf":1.0},"675":{"tf":1.0},"828":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"868":{"tf":1.0},"891":{"tf":1.4142135623730951},"894":{"tf":1.0},"921":{"tf":1.0},"939":{"tf":1.4142135623730951},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"289":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"=":{"\"":{"2":{"0":{"2":{"5":{"df":2,"docs":{"297":{"tf":1.0},"300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.0},"1367":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1559":{"tf":1.4142135623730951},"2":{"tf":1.0},"297":{"tf":1.4142135623730951},"304":{"tf":1.0},"305":{"tf":1.0},"44":{"tf":1.0},"98":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":57,"docs":{"1001":{"tf":1.4142135623730951},"1014":{"tf":1.7320508075688772},"1015":{"tf":2.23606797749979},"1017":{"tf":1.0},"1018":{"tf":1.0},"1037":{"tf":1.0},"1039":{"tf":1.0},"104":{"tf":1.0},"1052":{"tf":1.0},"107":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1176":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0},"1295":{"tf":1.0},"1299":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"133":{"tf":1.0},"1334":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1385":{"tf":1.0},"1404":{"tf":1.0},"1435":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1588":{"tf":1.0},"1647":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"459":{"tf":1.4142135623730951},"460":{"tf":1.0},"495":{"tf":1.0},"534":{"tf":1.4142135623730951},"54":{"tf":1.7320508075688772},"546":{"tf":1.0},"547":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"567":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"69":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"731":{"tf":1.0},"782":{"tf":1.0},"827":{"tf":1.4142135623730951},"839":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"865":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"102":{"tf":1.0}}}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":52,"docs":{"1004":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1215":{"tf":1.4142135623730951},"1224":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1431":{"tf":1.0},"1433":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.0},"1472":{"tf":2.0},"1474":{"tf":1.0},"244":{"tf":1.0},"248":{"tf":1.4142135623730951},"353":{"tf":1.0},"365":{"tf":1.0},"428":{"tf":1.0},"472":{"tf":1.0},"481":{"tf":1.0},"501":{"tf":1.0},"53":{"tf":1.4142135623730951},"57":{"tf":1.0},"597":{"tf":1.0},"600":{"tf":1.4142135623730951},"61":{"tf":1.0},"656":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.4142135623730951},"708":{"tf":1.0},"717":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.4142135623730951},"825":{"tf":1.0},"835":{"tf":1.0},"874":{"tf":1.4142135623730951},"877":{"tf":1.4142135623730951},"880":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1265":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"d":{"df":1,"docs":{"1199":{"tf":1.0}}},"df":11,"docs":{"1001":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1011":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1052":{"tf":1.0},"1134":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"130":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1588":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1220":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"1144":{"tf":1.0},"1249":{"tf":1.0},"1265":{"tf":1.0},"14":{"tf":1.0},"1481":{"tf":1.0}}}},"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"815":{"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":22,"docs":{"815":{"tf":1.0},"816":{"tf":1.0},"830":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":2.0},"947":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"955":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.4142135623730951},"958":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"947":{"tf":1.0},"950":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"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":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1078":{"tf":1.0},"1353":{"tf":1.4142135623730951},"47":{"tf":1.0},"984":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":12,"docs":{"128":{"tf":1.0},"1324":{"tf":1.0},"1367":{"tf":1.0},"1389":{"tf":1.0},"1392":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":2.0},"1525":{"tf":1.0},"899":{"tf":1.0},"989":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1366":{"tf":1.7320508075688772},"175":{"tf":1.0},"336":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1017":{"tf":1.0},"1018":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1309":{"tf":1.0}}},"l":{"'":{"df":1,"docs":{"752":{"tf":1.0}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"2":{"df":1,"docs":{"516":{"tf":1.0}}},"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1334":{"tf":1.0}}}},"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1349":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"148":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":76,"docs":{"0":{"tf":1.0},"1":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1189":{"tf":2.0},"1190":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1252":{"tf":1.7320508075688772},"1255":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1257":{"tf":1.0},"1258":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":2.0},"1347":{"tf":1.0},"1349":{"tf":2.0},"1350":{"tf":1.4142135623730951},"1392":{"tf":2.0},"14":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":2.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1478":{"tf":1.4142135623730951},"2":{"tf":1.0},"304":{"tf":2.0},"323":{"tf":1.0},"36":{"tf":1.7320508075688772},"38":{"tf":1.0},"40":{"tf":2.0},"41":{"tf":1.4142135623730951},"437":{"tf":1.0},"439":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":2.0},"516":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":2.6457513110645907},"666":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"700":{"tf":1.0},"746":{"tf":1.4142135623730951},"747":{"tf":1.0},"751":{"tf":2.0},"754":{"tf":1.0},"756":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.0},"805":{"tf":1.0},"816":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.4142135623730951},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"930":{"tf":2.0},"931":{"tf":1.0},"932":{"tf":1.0},"987":{"tf":1.0},"992":{"tf":1.4142135623730951},"999":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"516":{"tf":1.0},"756":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"534":{"tf":1.0}}}}}}}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":1,"docs":{"1439":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1039":{"tf":1.0},"1221":{"tf":1.0},"790":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"758":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"p":{"df":3,"docs":{"130":{"tf":1.0},"137":{"tf":1.0},"1586":{"tf":1.4142135623730951}},"i":{"c":{"df":1,"docs":{"397":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1645":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"1157":{"tf":2.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1365":{"tf":1.4142135623730951}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":5,"docs":{"1302":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":2.6457513110645907}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"17":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":31,"docs":{"1366":{"tf":2.6457513110645907},"1367":{"tf":1.0},"1368":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":3.605551275463989},"1525":{"tf":1.0},"1634":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.4142135623730951},"336":{"tf":1.4142135623730951},"361":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.4142135623730951},"371":{"tf":1.0},"372":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.4142135623730951},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"385":{"tf":1.4142135623730951},"386":{"tf":1.4142135623730951},"387":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"396":{"tf":2.0},"981":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"376":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"386":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1377":{"tf":1.0},"367":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":33,"docs":{"1355":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1376":{"tf":1.7320508075688772},"14":{"tf":1.0},"19":{"tf":1.0},"238":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"30":{"tf":1.0},"33":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"830":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0},"920":{"tf":1.7320508075688772},"933":{"tf":1.0},"945":{"tf":1.0},"956":{"tf":1.0},"959":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":2,"docs":{"1140":{"tf":1.0},"1376":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1278":{"tf":1.0},"17":{"tf":1.0},"227":{"tf":1.0},"32":{"tf":1.0},"65":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"100":{"tf":1.0},"1025":{"tf":1.0},"1071":{"tf":1.0},"1078":{"tf":1.0},"124":{"tf":1.0},"1295":{"tf":1.4142135623730951},"1592":{"tf":1.0},"17":{"tf":1.4142135623730951},"281":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"68":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"944":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":6,"docs":{"1150":{"tf":1.0},"1236":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1380":{"tf":1.7320508075688772},"1388":{"tf":1.0},"345":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"33":{"tf":1.0},"462":{"tf":1.7320508075688772},"699":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1210":{"tf":1.0},"446":{"tf":1.4142135623730951},"680":{"tf":1.0},"73":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":5,"docs":{"129":{"tf":1.0},"1311":{"tf":1.0},"1589":{"tf":1.7320508075688772},"221":{"tf":1.4142135623730951},"985":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1042":{"tf":1.0},"1043":{"tf":1.0},"1067":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1090":{"tf":1.0},"1093":{"tf":1.0},"1098":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1121":{"tf":1.0},"1133":{"tf":1.0},"1208":{"tf":1.0},"1386":{"tf":1.0},"326":{"tf":1.0},"888":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"1202":{"tf":1.0},"1254":{"tf":1.0},"985":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"988":{"tf":2.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"7":{"tf":1.0}}}}}}},"df":42,"docs":{"1047":{"tf":1.7320508075688772},"1052":{"tf":1.0},"1134":{"tf":1.0},"1191":{"tf":2.0},"1194":{"tf":1.0},"1227":{"tf":2.23606797749979},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1255":{"tf":2.0},"1256":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"1359":{"tf":1.0},"1477":{"tf":1.0},"1649":{"tf":1.4142135623730951},"172":{"tf":1.0},"187":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"32":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"520":{"tf":1.0},"536":{"tf":1.0},"621":{"tf":1.7320508075688772},"71":{"tf":1.7320508075688772},"73":{"tf":1.4142135623730951},"746":{"tf":1.0},"761":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"1033":{"tf":2.23606797749979},"1188":{"tf":1.0},"994":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":1,"docs":{"1410":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1023":{"tf":1.0},"14":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}},"i":{"df":24,"docs":{"1032":{"tf":1.0},"1059":{"tf":1.0},"1075":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1447":{"tf":2.23606797749979},"1458":{"tf":1.7320508075688772},"1470":{"tf":1.4142135623730951},"1474":{"tf":2.23606797749979},"1559":{"tf":1.0},"299":{"tf":1.0},"404":{"tf":1.0},"464":{"tf":1.7320508075688772},"500":{"tf":1.7320508075688772},"572":{"tf":1.0},"574":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"75":{"tf":1.0},"798":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1187":{"tf":1.0},"121":{"tf":1.0},"1238":{"tf":1.0},"1329":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":23,"docs":{"1058":{"tf":1.4142135623730951},"1279":{"tf":1.4142135623730951},"149":{"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},"1593":{"tf":1.4142135623730951},"160":{"tf":1.0},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"1652":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"328":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":147,"docs":{"102":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.7320508075688772},"1048":{"tf":1.7320508075688772},"1049":{"tf":1.0},"107":{"tf":1.0},"1166":{"tf":1.0},"1174":{"tf":1.0},"1198":{"tf":2.6457513110645907},"1215":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":2.23606797749979},"1226":{"tf":2.0},"1279":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"131":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1335":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1368":{"tf":2.0},"1395":{"tf":1.0},"1403":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.0},"1435":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1504":{"tf":1.0},"1517":{"tf":2.0},"1521":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"1546":{"tf":1.0},"1547":{"tf":1.0},"1582":{"tf":1.0},"1585":{"tf":2.449489742783178},"1586":{"tf":1.0},"1594":{"tf":1.4142135623730951},"1602":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":1.0},"1627":{"tf":1.0},"1634":{"tf":1.0},"1640":{"tf":1.0},"1654":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"195":{"tf":1.4142135623730951},"202":{"tf":1.0},"207":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"222":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"253":{"tf":1.0},"332":{"tf":1.0},"341":{"tf":1.0},"343":{"tf":1.0},"361":{"tf":1.4142135623730951},"372":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"387":{"tf":2.0},"391":{"tf":1.0},"392":{"tf":2.0},"394":{"tf":1.0},"395":{"tf":1.0},"433":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"452":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"475":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.0},"509":{"tf":1.0},"518":{"tf":1.4142135623730951},"526":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":2.0},"546":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"554":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.7320508075688772},"557":{"tf":1.4142135623730951},"558":{"tf":1.0},"572":{"tf":1.0},"578":{"tf":1.0},"597":{"tf":1.7320508075688772},"598":{"tf":1.0},"600":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"688":{"tf":1.0},"696":{"tf":1.0},"711":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.0},"761":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"774":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"83":{"tf":1.0},"844":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.4142135623730951},"905":{"tf":1.0},"921":{"tf":1.4142135623730951},"928":{"tf":1.0},"95":{"tf":1.0},"979":{"tf":1.7320508075688772},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1528":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1279":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1033":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"122":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1184":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1270":{"tf":1.0},"2":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1286":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"440":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1186":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}}}}}},"df":122,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1002":{"tf":1.4142135623730951},"1030":{"tf":2.0},"1031":{"tf":2.0},"1032":{"tf":1.7320508075688772},"1033":{"tf":2.0},"1034":{"tf":2.23606797749979},"1052":{"tf":1.0},"1053":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.4142135623730951},"1081":{"tf":2.0},"1083":{"tf":1.0},"1089":{"tf":1.0},"1135":{"tf":1.0},"114":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":2.449489742783178},"1183":{"tf":1.4142135623730951},"1184":{"tf":2.449489742783178},"1185":{"tf":2.449489742783178},"1186":{"tf":2.0},"1187":{"tf":1.7320508075688772},"1188":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1196":{"tf":2.23606797749979},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.4142135623730951},"120":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1204":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":2.23606797749979},"1270":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1280":{"tf":1.7320508075688772},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":2.23606797749979},"1287":{"tf":1.0},"1288":{"tf":2.0},"1289":{"tf":2.0},"1290":{"tf":2.6457513110645907},"1291":{"tf":2.0},"1293":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1306":{"tf":1.4142135623730951},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"132":{"tf":2.6457513110645907},"133":{"tf":1.4142135623730951},"134":{"tf":2.23606797749979},"1345":{"tf":1.0},"135":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1359":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1360":{"tf":1.0},"137":{"tf":2.0},"138":{"tf":2.23606797749979},"1385":{"tf":1.0},"139":{"tf":2.23606797749979},"1391":{"tf":1.0},"1394":{"tf":1.4142135623730951},"140":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1481":{"tf":1.0},"1486":{"tf":1.0},"1592":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1622":{"tf":1.0},"17":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"273":{"tf":1.0},"309":{"tf":1.0},"32":{"tf":1.0},"325":{"tf":2.23606797749979},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"440":{"tf":2.23606797749979},"46":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":1.0},"515":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"761":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.449489742783178},"991":{"tf":1.0},"994":{"tf":1.7320508075688772},"999":{"tf":1.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1082":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1607":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"1084":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1236":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1236":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":8,"docs":{"1002":{"tf":1.0},"124":{"tf":1.0},"1273":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"131":{"tf":1.0},"1354":{"tf":1.0},"1357":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"625":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"798":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"433":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"1200":{"tf":1.4142135623730951},"1413":{"tf":1.4142135623730951},"197":{"tf":1.7320508075688772},"311":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"440":{"tf":1.0},"454":{"tf":1.7320508075688772},"546":{"tf":1.0},"557":{"tf":1.0},"690":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":44,"docs":{"1313":{"tf":2.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1360":{"tf":1.0},"140":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1614":{"tf":1.0},"185":{"tf":1.7320508075688772},"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}}}}}}},"w":{"df":0,"docs":{},"o":{"df":21,"docs":{"100":{"tf":1.0},"106":{"tf":1.0},"1119":{"tf":1.0},"1144":{"tf":1.0},"1187":{"tf":1.0},"1220":{"tf":2.449489742783178},"1251":{"tf":1.0},"1265":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1408":{"tf":1.0},"1516":{"tf":1.0},"284":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951},"746":{"tf":1.0},"941":{"tf":1.0},"964":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":39,"docs":{"1022":{"tf":1.0},"1027":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1086":{"tf":1.7320508075688772},"117":{"tf":1.0},"118":{"tf":1.0},"1187":{"tf":1.0},"119":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1413":{"tf":1.7320508075688772},"1514":{"tf":1.0},"1556":{"tf":1.4142135623730951},"1557":{"tf":2.0},"1558":{"tf":1.4142135623730951},"197":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"323":{"tf":1.4142135623730951},"329":{"tf":1.0},"331":{"tf":1.0},"440":{"tf":1.0},"454":{"tf":1.0},"690":{"tf":1.4142135623730951},"808":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":160,"docs":{"1037":{"tf":1.0},"1042":{"tf":1.0},"1059":{"tf":1.0},"1098":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1156":{"tf":2.0},"1157":{"tf":3.4641016151377544},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1162":{"tf":3.1622776601683795},"1164":{"tf":1.7320508075688772},"1165":{"tf":2.23606797749979},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1169":{"tf":2.6457513110645907},"1174":{"tf":3.0},"1175":{"tf":3.3166247903554},"1176":{"tf":3.0},"1179":{"tf":1.0},"1223":{"tf":1.7320508075688772},"1229":{"tf":1.0},"126":{"tf":1.0},"1298":{"tf":2.0},"1299":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1408":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1436":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1445":{"tf":1.0},"1459":{"tf":1.0},"1464":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.0},"1474":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1517":{"tf":1.4142135623730951},"1519":{"tf":2.23606797749979},"1520":{"tf":2.23606797749979},"1521":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1586":{"tf":1.0},"1587":{"tf":1.0},"1588":{"tf":1.4142135623730951},"1589":{"tf":1.4142135623730951},"1601":{"tf":1.7320508075688772},"1602":{"tf":2.0},"1609":{"tf":1.0},"1651":{"tf":1.0},"220":{"tf":2.0},"24":{"tf":1.0},"242":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.4142135623730951},"289":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"337":{"tf":1.4142135623730951},"338":{"tf":1.0},"341":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"427":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.4142135623730951},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"54":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.4142135623730951},"550":{"tf":1.4142135623730951},"567":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"572":{"tf":1.0},"582":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.7320508075688772},"588":{"tf":1.4142135623730951},"59":{"tf":1.0},"604":{"tf":1.0},"623":{"tf":1.0},"63":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"689":{"tf":1.0},"693":{"tf":1.7320508075688772},"697":{"tf":1.0},"699":{"tf":1.0},"778":{"tf":1.0},"797":{"tf":1.0},"800":{"tf":1.7320508075688772},"824":{"tf":1.7320508075688772},"825":{"tf":3.0},"827":{"tf":1.0},"831":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":2.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0},"886":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.4142135623730951},"916":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"919":{"tf":1.4142135623730951},"921":{"tf":1.0},"926":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"960":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"973":{"tf":1.0},"986":{"tf":1.0},"989":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"103":{"tf":1.4142135623730951},"1280":{"tf":1.0},"36":{"tf":1.0},"410":{"tf":1.7320508075688772},"433":{"tf":1.7320508075688772},"623":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":4,"docs":{"1146":{"tf":1.0},"1389":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"8":{"df":4,"docs":{"1325":{"tf":1.0},"1328":{"tf":1.0},"1380":{"tf":1.0},"1388":{"tf":1.0}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1233":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":7,"docs":{"1571":{"tf":1.0},"219":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"57":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"305":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"239":{"tf":1.0},"326":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":3,"docs":{"1201":{"tf":1.0},"177":{"tf":1.0},"319":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1192":{"tf":1.0},"1620":{"tf":1.7320508075688772},"1622":{"tf":1.0},"1651":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1438":{"tf":1.0},"1461":{"tf":1.0},"410":{"tf":2.23606797749979},"499":{"tf":2.23606797749979}}}}},"r":{"df":12,"docs":{"1008":{"tf":1.0},"106":{"tf":1.0},"116":{"tf":1.0},"1313":{"tf":1.0},"1326":{"tf":1.0},"1369":{"tf":1.0},"1389":{"tf":1.0},"1534":{"tf":1.4142135623730951},"436":{"tf":1.0},"671":{"tf":1.0},"76":{"tf":1.0},"952":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"621":{"tf":1.0},"810":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1425":{"tf":1.4142135623730951},"19":{"tf":1.0},"47":{"tf":1.0},"75":{"tf":1.0},"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"938":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1252":{"tf":1.0},"362":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"432":{"tf":1.0},"663":{"tf":1.0},"665":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":19,"docs":{"1051":{"tf":1.0},"1156":{"tf":1.0},"1299":{"tf":1.0},"215":{"tf":1.0},"23":{"tf":1.0},"242":{"tf":1.0},"302":{"tf":1.0},"587":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.0},"834":{"tf":1.0},"839":{"tf":1.0},"859":{"tf":1.4142135623730951},"861":{"tf":1.0},"91":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1176":{"tf":1.0},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1223":{"tf":1.0},"1533":{"tf":1.0},"816":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"901":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"825":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"668":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1226":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"668":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"21":{"tf":1.0},"74":{"tf":1.0},"97":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":9,"docs":{"1279":{"tf":1.0},"1425":{"tf":1.0},"1435":{"tf":1.0},"1554":{"tf":2.0},"270":{"tf":1.4142135623730951},"326":{"tf":1.0},"531":{"tf":1.0},"534":{"tf":1.0},"582":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"1251":{"tf":1.0},"1326":{"tf":1.0},"1486":{"tf":1.0},"1528":{"tf":1.4142135623730951},"305":{"tf":1.0},"509":{"tf":1.0},"544":{"tf":1.0},"556":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"509":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1008":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1022":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1236":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":4,"docs":{"441":{"tf":1.0},"545":{"tf":1.0},"675":{"tf":1.0},"78":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":12,"docs":{"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1552":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"748":{"tf":1.0},"750":{"tf":1.0},"920":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1540":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1554":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1219":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1032":{"tf":1.0},"1033":{"tf":1.0},"1188":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1184":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1186":{"tf":1.0},"1622":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1186":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"1032":{"tf":1.4142135623730951},"1241":{"tf":1.0},"994":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":10,"docs":{"1020":{"tf":1.0},"1023":{"tf":1.0},"1059":{"tf":2.23606797749979},"1060":{"tf":1.0},"1061":{"tf":1.0},"136":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"943":{"tf":1.0},"967":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1094":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":84,"docs":{"1009":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":1.0},"1061":{"tf":1.0},"1070":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1095":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1209":{"tf":1.0},"1405":{"tf":2.449489742783178},"1433":{"tf":2.0},"1456":{"tf":2.0},"1498":{"tf":2.8284271247461903},"1503":{"tf":1.4142135623730951},"1535":{"tf":1.4142135623730951},"1538":{"tf":1.0},"1549":{"tf":1.0},"1564":{"tf":1.4142135623730951},"1623":{"tf":1.4142135623730951},"1629":{"tf":1.0},"1635":{"tf":1.7320508075688772},"1637":{"tf":1.0},"1638":{"tf":1.0},"1640":{"tf":1.0},"1645":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"203":{"tf":2.449489742783178},"234":{"tf":1.7320508075688772},"237":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"260":{"tf":2.23606797749979},"261":{"tf":1.7320508075688772},"277":{"tf":2.0},"326":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.7320508075688772},"348":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"451":{"tf":2.0},"452":{"tf":2.0},"462":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.4142135623730951},"49":{"tf":1.0},"492":{"tf":2.23606797749979},"50":{"tf":1.0},"54":{"tf":1.0},"600":{"tf":1.4142135623730951},"612":{"tf":1.0},"63":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"687":{"tf":2.23606797749979},"688":{"tf":2.449489742783178},"69":{"tf":1.0},"699":{"tf":1.4142135623730951},"716":{"tf":1.4142135623730951},"717":{"tf":1.7320508075688772},"718":{"tf":1.4142135623730951},"728":{"tf":2.23606797749979},"740":{"tf":1.4142135623730951},"774":{"tf":2.0},"786":{"tf":1.7320508075688772},"863":{"tf":1.4142135623730951},"879":{"tf":2.449489742783178},"906":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"930":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"957":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"943":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1456":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1456":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"956":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1405":{"tf":1.4142135623730951},"1498":{"tf":1.0},"203":{"tf":1.7320508075688772}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"699":{"tf":1.0},"786":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"728":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"717":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1456":{"tf":1.0},"348":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0}},"u":{"df":2,"docs":{"717":{"tf":1.4142135623730951},"718":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"462":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"492":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"481":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1433":{"tf":1.0},"600":{"tf":1.0}},"u":{"df":2,"docs":{"481":{"tf":1.4142135623730951},"482":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1433":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"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":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1433":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":28,"docs":{"1059":{"tf":1.0},"1074":{"tf":1.0},"1080":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"119":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1223":{"tf":1.0},"1243":{"tf":1.0},"1413":{"tf":1.0},"1476":{"tf":1.0},"1530":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"1625":{"tf":1.0},"198":{"tf":1.0},"211":{"tf":1.0},"314":{"tf":1.4142135623730951},"315":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"318":{"tf":1.7320508075688772},"329":{"tf":1.0},"333":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"81":{"tf":1.0},"856":{"tf":1.0},"980":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":10,"docs":{"1061":{"tf":1.7320508075688772},"1067":{"tf":1.0},"1093":{"tf":1.0},"1147":{"tf":1.0},"1625":{"tf":1.0},"1635":{"tf":1.0},"417":{"tf":1.0},"43":{"tf":1.0},"645":{"tf":1.0},"665":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1229":{"tf":1.0},"1233":{"tf":1.0},"1637":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1408":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"314":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1311":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"1438":{"tf":1.0}}}}}}},"df":10,"docs":{"1277":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1336":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1602":{"tf":1.0},"828":{"tf":1.4142135623730951},"919":{"tf":1.0},"986":{"tf":1.0}}},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"8":{"0":{"df":1,"docs":{"1265":{"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":17,"docs":{"107":{"tf":1.0},"116":{"tf":2.23606797749979},"1251":{"tf":1.0},"1265":{"tf":1.0},"1275":{"tf":1.0},"1290":{"tf":1.0},"1459":{"tf":1.0},"1486":{"tf":1.4142135623730951},"1573":{"tf":1.0},"339":{"tf":1.0},"440":{"tf":1.0},"54":{"tf":1.0},"748":{"tf":1.0},"817":{"tf":1.4142135623730951},"827":{"tf":1.0},"842":{"tf":1.4142135623730951},"861":{"tf":1.0}}},"n":{":":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":6,"docs":{"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"520":{"tf":1.0},"764":{"tf":1.0}}}},"df":2,"docs":{"844":{"tf":1.0},"850":{"tf":1.0}},"g":{"df":112,"docs":{"1151":{"tf":1.0},"1189":{"tf":1.0},"1236":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.7320508075688772},"1583":{"tf":1.0},"174":{"tf":1.0},"184":{"tf":1.0},"224":{"tf":1.0},"36":{"tf":1.4142135623730951},"364":{"tf":1.0},"434":{"tf":1.0},"45":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"466":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"567":{"tf":1.4142135623730951},"568":{"tf":1.0},"626":{"tf":1.4142135623730951},"669":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.7320508075688772},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"841":{"tf":1.0},"842":{"tf":1.0}}}},"b":{"df":1,"docs":{"73":{"tf":1.0}}},"d":{"df":7,"docs":{"1156":{"tf":1.0},"266":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0},"825":{"tf":1.4142135623730951},"893":{"tf":1.0},"895":{"tf":1.0}}},"df":398,"docs":{"0":{"tf":1.0},"1002":{"tf":1.0},"1008":{"tf":2.449489742783178},"1009":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1022":{"tf":1.0},"1033":{"tf":1.0},"1043":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1047":{"tf":1.0},"105":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1055":{"tf":1.0},"1056":{"tf":1.0},"1059":{"tf":2.23606797749979},"1069":{"tf":1.0},"107":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1103":{"tf":1.4142135623730951},"1104":{"tf":1.0},"1106":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"1121":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1134":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.0},"1153":{"tf":1.0},"1156":{"tf":1.0},"1157":{"tf":1.0},"1159":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1195":{"tf":2.23606797749979},"1196":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":2.23606797749979},"1238":{"tf":1.0},"124":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1261":{"tf":1.0},"1270":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"130":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1315":{"tf":1.0},"1323":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"1330":{"tf":1.0},"1331":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1354":{"tf":1.7320508075688772},"1359":{"tf":1.7320508075688772},"136":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"137":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.7320508075688772},"1388":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"140":{"tf":1.7320508075688772},"1403":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1412":{"tf":1.0},"1422":{"tf":1.7320508075688772},"1428":{"tf":1.0},"1429":{"tf":1.4142135623730951},"143":{"tf":1.0},"144":{"tf":1.7320508075688772},"1451":{"tf":1.0},"147":{"tf":1.4142135623730951},"1478":{"tf":1.0},"1481":{"tf":1.0},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1488":{"tf":1.0},"149":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1499":{"tf":1.0},"1508":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.0},"1516":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.4142135623730951},"153":{"tf":1.0},"1530":{"tf":1.4142135623730951},"1532":{"tf":1.4142135623730951},"1534":{"tf":1.4142135623730951},"1537":{"tf":1.0},"1539":{"tf":1.0},"1554":{"tf":1.0},"156":{"tf":1.0},"1575":{"tf":1.0},"1587":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.0},"1606":{"tf":1.0},"1616":{"tf":1.0},"1620":{"tf":1.0},"1623":{"tf":1.0},"1625":{"tf":1.4142135623730951},"1630":{"tf":1.0},"1632":{"tf":1.0},"1634":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1643":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"175":{"tf":1.0},"184":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"207":{"tf":1.0},"210":{"tf":1.0},"227":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"3":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":2.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"330":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"338":{"tf":1.4142135623730951},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"345":{"tf":1.4142135623730951},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":2.0},"35":{"tf":1.4142135623730951},"350":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"357":{"tf":1.0},"36":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.4142135623730951},"363":{"tf":1.0},"364":{"tf":2.0},"365":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.4142135623730951},"375":{"tf":1.0},"376":{"tf":2.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"388":{"tf":1.0},"389":{"tf":1.0},"39":{"tf":2.0},"397":{"tf":1.0},"40":{"tf":2.0},"401":{"tf":1.4142135623730951},"402":{"tf":1.4142135623730951},"403":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"410":{"tf":1.0},"417":{"tf":1.0},"42":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"442":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.4142135623730951},"469":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"508":{"tf":1.4142135623730951},"51":{"tf":2.23606797749979},"512":{"tf":1.4142135623730951},"513":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"528":{"tf":1.4142135623730951},"544":{"tf":1.0},"546":{"tf":1.7320508075688772},"548":{"tf":1.0},"550":{"tf":1.0},"556":{"tf":1.0},"557":{"tf":1.7320508075688772},"563":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"574":{"tf":1.4142135623730951},"585":{"tf":1.0},"594":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"615":{"tf":1.0},"624":{"tf":4.123105625617661},"625":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.7320508075688772},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"64":{"tf":1.0},"645":{"tf":1.0},"65":{"tf":1.0},"658":{"tf":1.4142135623730951},"659":{"tf":1.4142135623730951},"660":{"tf":1.4142135623730951},"661":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"683":{"tf":1.0},"687":{"tf":1.0},"703":{"tf":1.0},"740":{"tf":1.0},"746":{"tf":1.4142135623730951},"752":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"755":{"tf":1.0},"761":{"tf":1.4142135623730951},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"768":{"tf":1.0},"779":{"tf":1.0},"78":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"793":{"tf":1.0},"798":{"tf":1.0},"801":{"tf":1.4142135623730951},"803":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"818":{"tf":1.4142135623730951},"823":{"tf":1.0},"824":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"835":{"tf":1.0},"86":{"tf":1.4142135623730951},"863":{"tf":1.0},"865":{"tf":1.4142135623730951},"868":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"919":{"tf":1.0},"921":{"tf":1.4142135623730951},"926":{"tf":1.0},"928":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"957":{"tf":1.0},"959":{"tf":1.0},"965":{"tf":1.0},"967":{"tf":1.0},"972":{"tf":1.0},"975":{"tf":1.0},"978":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.4142135623730951},"994":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"357":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1389":{"tf":1.0}}}}}},"r":{"'":{"df":1,"docs":{"1008":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"550":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"550":{"tf":1.4142135623730951}}}}},"df":7,"docs":{"1008":{"tf":1.4142135623730951},"1391":{"tf":1.0},"1394":{"tf":1.0},"550":{"tf":1.0},"842":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":2.0}}}}},"t":{"c":{"df":1,"docs":{"1015":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":6,"docs":{"1432":{"tf":1.0},"1433":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1647":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":7,"docs":{"1254":{"tf":1.0},"410":{"tf":1.0},"497":{"tf":1.4142135623730951},"562":{"tf":1.0},"614":{"tf":1.4142135623730951},"636":{"tf":1.0},"733":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"943":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"294":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"206":{"tf":1.0},"284":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"939":{"tf":1.0},"940":{"tf":1.0},"943":{"tf":1.0},"953":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1033":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"470":{"tf":1.0},"481":{"tf":1.0},"639":{"tf":1.0},"684":{"tf":1.4142135623730951},"706":{"tf":1.0},"717":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"994":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":75,"docs":{"1024":{"tf":1.0},"1033":{"tf":2.23606797749979},"1070":{"tf":1.4142135623730951},"1080":{"tf":2.23606797749979},"1175":{"tf":1.0},"1197":{"tf":1.0},"1387":{"tf":1.0},"1404":{"tf":1.0},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1647":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"215":{"tf":1.0},"23":{"tf":1.0},"248":{"tf":2.23606797749979},"249":{"tf":1.7320508075688772},"265":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"293":{"tf":2.0},"294":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"481":{"tf":1.7320508075688772},"487":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"501":{"tf":1.7320508075688772},"53":{"tf":2.23606797749979},"54":{"tf":2.449489742783178},"57":{"tf":1.0},"61":{"tf":2.8284271247461903},"639":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"699":{"tf":1.0},"706":{"tf":1.0},"717":{"tf":1.7320508075688772},"723":{"tf":1.4142135623730951},"728":{"tf":1.4142135623730951},"737":{"tf":1.7320508075688772},"775":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"839":{"tf":1.7320508075688772},"861":{"tf":1.0},"862":{"tf":2.0},"865":{"tf":1.4142135623730951},"868":{"tf":2.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":3.1622776601683795},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.7320508075688772},"940":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"963":{"tf":1.7320508075688772},"966":{"tf":1.4142135623730951},"968":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"1458":{"tf":1.0},"1461":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"655":{"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":4,"docs":{"1279":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{".":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"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":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1328":{"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":{}},"0":{".":{"4":{".":{"0":{"df":1,"docs":{"1275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"1033":{"tf":1.0},"89":{"tf":1.7320508075688772},"994":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"296":{"tf":1.4142135623730951}}},"df":0,"docs":{},"x":{"df":4,"docs":{"1618":{"tf":1.0},"1619":{"tf":1.0},"1621":{"tf":1.0},"624":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":8,"docs":{"1429":{"tf":1.0},"1618":{"tf":1.7320508075688772},"1619":{"tf":1.4142135623730951},"1621":{"tf":1.4142135623730951},"437":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"624":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"0":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1405":{"tf":1.4142135623730951},"1433":{"tf":1.0},"1456":{"tf":1.0},"277":{"tf":1.4142135623730951}}}}}}},"df":12,"docs":{"1071":{"tf":1.0},"1080":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1283":{"tf":1.0},"1289":{"tf":1.0},"137":{"tf":1.0},"1564":{"tf":1.0},"823":{"tf":2.449489742783178},"881":{"tf":1.0},"978":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1405":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1564":{"tf":1.0},"1645":{"tf":1.0},"300":{"tf":1.0},"881":{"tf":1.0}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":2,"docs":{"1071":{"tf":1.0},"881":{"tf":1.0}}},"4":{"/":{"df":0,"docs":{},"v":{"5":{"df":1,"docs":{"537":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1070":{"tf":1.0},"54":{"tf":2.0},"827":{"tf":1.4142135623730951},"828":{"tf":1.0}}},"8":{"df":7,"docs":{"1620":{"tf":1.7320508075688772},"1623":{"tf":1.0},"494":{"tf":1.0},"608":{"tf":1.7320508075688772},"609":{"tf":1.4142135623730951},"610":{"tf":1.4142135623730951},"624":{"tf":1.7320508075688772}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":3,"docs":{"1086":{"tf":1.4142135623730951},"1197":{"tf":1.0},"690":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},":":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}}},"=":{"$":{"(":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1610":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1364":{"tf":1.0},"1370":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1364":{"tf":1.0}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1198":{"tf":1.0}}}}}},"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"771":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":162,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1020":{"tf":1.0},"1022":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":2.6457513110645907},"1052":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1059":{"tf":1.0},"107":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1090":{"tf":1.0},"1125":{"tf":1.0},"1130":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1152":{"tf":1.0},"1153":{"tf":1.0},"1154":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1164":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1206":{"tf":1.0},"1223":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1267":{"tf":1.0},"1279":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"130":{"tf":1.0},"1312":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1329":{"tf":1.0},"1359":{"tf":1.0},"136":{"tf":1.7320508075688772},"1364":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1432":{"tf":1.0},"1435":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.0},"1468":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1486":{"tf":2.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1500":{"tf":1.0},"1505":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1510":{"tf":1.0},"1514":{"tf":1.0},"1556":{"tf":1.7320508075688772},"1561":{"tf":1.0},"1562":{"tf":1.7320508075688772},"157":{"tf":1.0},"1585":{"tf":1.0},"1586":{"tf":1.0},"1591":{"tf":1.0},"1594":{"tf":2.0},"1607":{"tf":1.7320508075688772},"1609":{"tf":1.0},"1610":{"tf":2.23606797749979},"1611":{"tf":1.0},"1612":{"tf":1.0},"1627":{"tf":1.0},"1640":{"tf":1.0},"196":{"tf":2.23606797749979},"198":{"tf":1.0},"204":{"tf":1.0},"21":{"tf":1.0},"233":{"tf":1.0},"246":{"tf":1.0},"256":{"tf":1.0},"273":{"tf":1.4142135623730951},"30":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.7320508075688772},"32":{"tf":1.4142135623730951},"320":{"tf":2.0},"322":{"tf":1.0},"323":{"tf":1.0},"326":{"tf":1.0},"330":{"tf":1.4142135623730951},"338":{"tf":1.0},"355":{"tf":1.7320508075688772},"364":{"tf":1.0},"428":{"tf":1.0},"460":{"tf":1.0},"473":{"tf":1.0},"478":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"563":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"668":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"696":{"tf":1.0},"700":{"tf":1.0},"709":{"tf":1.0},"714":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"74":{"tf":1.0},"771":{"tf":1.4142135623730951},"772":{"tf":1.0},"773":{"tf":1.0},"781":{"tf":1.0},"785":{"tf":1.0},"811":{"tf":1.4142135623730951},"821":{"tf":1.7320508075688772},"826":{"tf":1.4142135623730951},"828":{"tf":1.7320508075688772},"829":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"861":{"tf":1.0},"910":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":2.23606797749979},"979":{"tf":1.7320508075688772},"986":{"tf":1.0},"990":{"tf":1.0},"994":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"df":72,"docs":{"1059":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1138":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1152":{"tf":1.0},"1164":{"tf":1.0},"1172":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1189":{"tf":1.0},"122":{"tf":1.0},"127":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"131":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":2.0},"1334":{"tf":1.7320508075688772},"1335":{"tf":1.4142135623730951},"1339":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1347":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1357":{"tf":1.0},"1358":{"tf":1.0},"136":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"1380":{"tf":1.0},"1387":{"tf":2.23606797749979},"1441":{"tf":1.0},"1449":{"tf":1.0},"1464":{"tf":1.0},"1472":{"tf":1.0},"1497":{"tf":1.0},"1521":{"tf":1.0},"1530":{"tf":1.0},"1532":{"tf":1.4142135623730951},"1557":{"tf":1.0},"157":{"tf":1.0},"1588":{"tf":1.0},"1601":{"tf":1.0},"1602":{"tf":2.449489742783178},"1609":{"tf":1.0},"1627":{"tf":1.0},"1647":{"tf":1.0},"193":{"tf":1.0},"314":{"tf":1.0},"339":{"tf":1.4142135623730951},"380":{"tf":1.4142135623730951},"446":{"tf":1.0},"567":{"tf":1.0},"680":{"tf":1.0},"687":{"tf":1.0},"756":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"822":{"tf":1.0},"829":{"tf":1.0},"893":{"tf":1.4142135623730951},"895":{"tf":1.4142135623730951},"899":{"tf":1.7320508075688772},"975":{"tf":1.0},"976":{"tf":1.0},"980":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"798":{"tf":1.0},"799":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1526":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1526":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":7,"docs":{"1008":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"156":{"tf":1.4142135623730951},"676":{"tf":1.0},"78":{"tf":1.0},"980":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":43,"docs":{"1008":{"tf":1.7320508075688772},"1046":{"tf":1.0},"1052":{"tf":1.0},"1142":{"tf":1.0},"1148":{"tf":1.0},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1236":{"tf":1.0},"1368":{"tf":1.0},"1422":{"tf":1.4142135623730951},"147":{"tf":1.0},"1487":{"tf":1.7320508075688772},"1508":{"tf":1.4142135623730951},"1512":{"tf":1.0},"1514":{"tf":1.0},"1527":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"1530":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1536":{"tf":1.0},"1538":{"tf":1.0},"1579":{"tf":1.0},"1613":{"tf":1.7320508075688772},"1626":{"tf":1.4142135623730951},"1627":{"tf":1.7320508075688772},"1629":{"tf":1.0},"1637":{"tf":1.0},"180":{"tf":2.0},"183":{"tf":1.0},"193":{"tf":1.0},"207":{"tf":1.7320508075688772},"228":{"tf":1.0},"414":{"tf":1.7320508075688772},"418":{"tf":1.0},"642":{"tf":1.7320508075688772},"646":{"tf":1.0},"743":{"tf":1.7320508075688772},"78":{"tf":1.0},"81":{"tf":1.0},"95":{"tf":1.0},"975":{"tf":1.0},"982":{"tf":2.0},"994":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":11,"docs":{"1008":{"tf":1.0},"1251":{"tf":1.0},"1429":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"592":{"tf":1.0}}}},"t":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":3,"docs":{"1131":{"tf":1.0},"1208":{"tf":1.0},"1592":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":14,"docs":{"1404":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1506":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":1.0},"1582":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"247":{"tf":1.0},"259":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"967":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"<":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1328":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"u":{"8":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"1328":{"tf":1.0},"1330":{"tf":1.0}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1151":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1386":{"tf":1.0},"816":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"633":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"633":{"tf":1.4142135623730951},"658":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1367":{"tf":1.0},"1404":{"tf":1.0},"1497":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.4142135623730951},"1506":{"tf":1.4142135623730951},"1579":{"tf":1.7320508075688772},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"247":{"tf":1.0},"259":{"tf":1.4142135623730951},"374":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":22,"docs":{"1391":{"tf":1.4142135623730951},"1396":{"tf":1.0},"143":{"tf":1.0},"521":{"tf":2.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"7":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":2,"docs":{"1395":{"tf":1.0},"141":{"tf":1.0}},"f":{"df":243,"docs":{"1001":{"tf":1.0},"1005":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1026":{"tf":1.7320508075688772},"1029":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1033":{"tf":1.4142135623730951},"104":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1048":{"tf":1.4142135623730951},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1058":{"tf":1.4142135623730951},"1059":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"1062":{"tf":1.0},"1063":{"tf":1.0},"107":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1074":{"tf":1.0},"1075":{"tf":1.7320508075688772},"1077":{"tf":1.0},"1080":{"tf":1.0},"1089":{"tf":1.0},"1091":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1128":{"tf":1.0},"1133":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1141":{"tf":2.0},"1143":{"tf":1.0},"1147":{"tf":1.0},"1152":{"tf":1.0},"116":{"tf":1.4142135623730951},"117":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1195":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1198":{"tf":1.0},"120":{"tf":1.7320508075688772},"1201":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1209":{"tf":1.0},"121":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1238":{"tf":1.0},"124":{"tf":1.0},"1249":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1303":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1319":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1389":{"tf":1.0},"139":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1404":{"tf":2.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1445":{"tf":1.0},"1447":{"tf":1.0},"1468":{"tf":1.0},"1474":{"tf":1.0},"1479":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.7320508075688772},"1499":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1514":{"tf":1.0},"1540":{"tf":1.4142135623730951},"1551":{"tf":1.7320508075688772},"1555":{"tf":1.4142135623730951},"1575":{"tf":1.7320508075688772},"1576":{"tf":1.7320508075688772},"1584":{"tf":1.7320508075688772},"1585":{"tf":1.0},"1586":{"tf":2.0},"1587":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.4142135623730951},"1590":{"tf":1.7320508075688772},"1591":{"tf":1.0},"1592":{"tf":1.0},"1593":{"tf":1.0},"1594":{"tf":1.0},"1595":{"tf":1.0},"1596":{"tf":1.0},"1597":{"tf":1.0},"160":{"tf":1.4142135623730951},"1606":{"tf":2.0},"1607":{"tf":2.0},"1614":{"tf":1.0},"1616":{"tf":1.0},"1627":{"tf":1.0},"1654":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"212":{"tf":1.0},"233":{"tf":1.4142135623730951},"237":{"tf":1.0},"24":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"256":{"tf":1.7320508075688772},"27":{"tf":1.0},"274":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":2.0},"308":{"tf":1.4142135623730951},"309":{"tf":2.449489742783178},"310":{"tf":1.0},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"321":{"tf":1.4142135623730951},"322":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"343":{"tf":1.0},"352":{"tf":1.4142135623730951},"354":{"tf":1.7320508075688772},"37":{"tf":1.0},"381":{"tf":1.0},"40":{"tf":1.0},"440":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.4142135623730951},"464":{"tf":1.0},"466":{"tf":1.0},"483":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"503":{"tf":1.0},"508":{"tf":1.4142135623730951},"509":{"tf":1.0},"51":{"tf":1.7320508075688772},"563":{"tf":1.4142135623730951},"570":{"tf":1.0},"572":{"tf":1.0},"574":{"tf":1.0},"58":{"tf":1.0},"586":{"tf":1.4142135623730951},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"699":{"tf":1.4142135623730951},"70":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"719":{"tf":1.4142135623730951},"751":{"tf":1.0},"761":{"tf":1.0},"772":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":1.0},"800":{"tf":1.0},"808":{"tf":1.0},"810":{"tf":1.4142135623730951},"834":{"tf":1.0},"840":{"tf":1.0},"846":{"tf":1.7320508075688772},"856":{"tf":1.4142135623730951},"859":{"tf":1.0},"871":{"tf":1.0},"899":{"tf":1.0},"91":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"985":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.4142135623730951},"991":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"462":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"462":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"462":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"699":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"462":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1445":{"tf":1.0},"462":{"tf":1.0},"699":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1468":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"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":{"1364":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1470":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":9,"docs":{"445":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"460":{"tf":1.7320508075688772},"679":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"696":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":358,"docs":{"100":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1005":{"tf":2.0},"101":{"tf":1.0},"102":{"tf":1.0},"1020":{"tf":2.23606797749979},"1021":{"tf":1.0},"1022":{"tf":2.23606797749979},"1023":{"tf":1.0},"1024":{"tf":2.23606797749979},"1025":{"tf":1.7320508075688772},"1027":{"tf":1.0},"103":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.4142135623730951},"104":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1055":{"tf":1.0},"1059":{"tf":3.0},"106":{"tf":2.0},"1060":{"tf":2.0},"1061":{"tf":1.7320508075688772},"1062":{"tf":1.4142135623730951},"1064":{"tf":1.0},"1066":{"tf":1.0},"107":{"tf":3.605551275463989},"1074":{"tf":1.7320508075688772},"108":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"1128":{"tf":1.0},"113":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"114":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1144":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"117":{"tf":1.0},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1187":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1198":{"tf":1.4142135623730951},"120":{"tf":1.7320508075688772},"121":{"tf":1.7320508075688772},"1210":{"tf":1.4142135623730951},"1217":{"tf":1.0},"122":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1224":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"1261":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"127":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1283":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.7320508075688772},"1294":{"tf":1.4142135623730951},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.0},"130":{"tf":2.0},"1303":{"tf":1.7320508075688772},"131":{"tf":1.0},"1312":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.7320508075688772},"133":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1345":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1357":{"tf":1.4142135623730951},"1358":{"tf":1.0},"136":{"tf":2.0},"1360":{"tf":1.0},"1366":{"tf":1.0},"137":{"tf":1.4142135623730951},"1375":{"tf":1.0},"1378":{"tf":1.7320508075688772},"138":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"139":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"140":{"tf":1.0},"1401":{"tf":2.0},"1404":{"tf":3.0},"1405":{"tf":1.4142135623730951},"1409":{"tf":1.0},"141":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1414":{"tf":2.6457513110645907},"1419":{"tf":1.4142135623730951},"1420":{"tf":2.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1449":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1458":{"tf":2.0},"1459":{"tf":1.4142135623730951},"1468":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1474":{"tf":1.0},"1486":{"tf":3.4641016151377544},"1493":{"tf":1.0},"1499":{"tf":3.1622776601683795},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.4142135623730951},"1514":{"tf":2.0},"1515":{"tf":1.0},"1535":{"tf":1.4142135623730951},"1542":{"tf":1.0},"1553":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"1563":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.4142135623730951},"1573":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1577":{"tf":1.0},"1579":{"tf":1.0},"1581":{"tf":2.0},"1589":{"tf":1.0},"1595":{"tf":1.0},"1598":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"1602":{"tf":1.4142135623730951},"1603":{"tf":1.7320508075688772},"1604":{"tf":1.0},"1605":{"tf":1.0},"1607":{"tf":2.6457513110645907},"1609":{"tf":1.7320508075688772},"1610":{"tf":1.0},"1611":{"tf":1.7320508075688772},"1612":{"tf":1.4142135623730951},"1616":{"tf":1.4142135623730951},"1635":{"tf":1.4142135623730951},"1637":{"tf":1.4142135623730951},"1638":{"tf":1.4142135623730951},"1642":{"tf":1.0},"1651":{"tf":1.0},"1653":{"tf":2.0},"1654":{"tf":2.449489742783178},"1655":{"tf":1.7320508075688772},"166":{"tf":1.4142135623730951},"17":{"tf":1.0},"171":{"tf":1.4142135623730951},"196":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":2.8284271247461903},"207":{"tf":1.0},"209":{"tf":1.4142135623730951},"211":{"tf":2.0},"214":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.7320508075688772},"232":{"tf":1.7320508075688772},"233":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.7320508075688772},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"267":{"tf":1.0},"27":{"tf":1.7320508075688772},"270":{"tf":2.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"30":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"317":{"tf":1.4142135623730951},"319":{"tf":2.8284271247461903},"323":{"tf":1.4142135623730951},"326":{"tf":1.0},"329":{"tf":1.4142135623730951},"330":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"349":{"tf":2.23606797749979},"354":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"376":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"404":{"tf":1.7320508075688772},"406":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":2.0},"441":{"tf":1.0},"445":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"460":{"tf":1.0},"462":{"tf":1.7320508075688772},"47":{"tf":1.0},"477":{"tf":1.4142135623730951},"478":{"tf":1.7320508075688772},"479":{"tf":1.7320508075688772},"48":{"tf":1.0},"485":{"tf":1.7320508075688772},"491":{"tf":1.7320508075688772},"496":{"tf":2.0},"501":{"tf":1.0},"51":{"tf":2.0},"515":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":2.23606797749979},"546":{"tf":1.0},"553":{"tf":1.0},"554":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"563":{"tf":1.4142135623730951},"565":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.4142135623730951},"570":{"tf":2.0},"572":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"577":{"tf":1.0},"579":{"tf":1.0},"58":{"tf":1.0},"580":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.4142135623730951},"610":{"tf":1.0},"611":{"tf":1.7320508075688772},"62":{"tf":1.0},"634":{"tf":2.0},"656":{"tf":1.0},"66":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"671":{"tf":1.0},"675":{"tf":1.0},"679":{"tf":1.4142135623730951},"682":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.7320508075688772},"700":{"tf":1.0},"713":{"tf":1.4142135623730951},"714":{"tf":1.7320508075688772},"715":{"tf":1.7320508075688772},"721":{"tf":1.7320508075688772},"727":{"tf":2.0},"732":{"tf":2.0},"737":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"772":{"tf":1.4142135623730951},"773":{"tf":1.7320508075688772},"781":{"tf":1.0},"783":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":2.23606797749979},"791":{"tf":1.0},"793":{"tf":1.0},"800":{"tf":1.0},"803":{"tf":1.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"83":{"tf":1.4142135623730951},"841":{"tf":1.0},"855":{"tf":2.449489742783178},"878":{"tf":1.4142135623730951},"912":{"tf":1.0},"914":{"tf":1.4142135623730951},"916":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"933":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":3.3166247903554},"95":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"99":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1328":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"1436":{"tf":1.0},"568":{"tf":1.0},"572":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1345":{"tf":1.0}}}}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"567":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"567":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"1017":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1326":{"tf":1.0},"1328":{"tf":1.0}}}}}}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"380":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1445":{"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":{"df":1,"docs":{"1468":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1186":{"tf":1.0},"448":{"tf":1.4142135623730951},"51":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"929":{"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":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"800":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":2,"docs":{"1303":{"tf":1.0},"1592":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1584":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"130":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1591":{"tf":1.4142135623730951}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1226":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1455":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1470":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1385":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1327":{"tf":2.0},"1328":{"tf":1.0},"1329":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"761":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1357":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1357":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"136":{"tf":1.0},"1514":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"51":{"tf":1.0}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1074":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"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":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"624":{"tf":1.0}}}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"d":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1226":{"tf":1.0},"624":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1432":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1226":{"tf":1.0},"1623":{"tf":1.0},"565":{"tf":1.0},"624":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"565":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1623":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1358":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"440":{"tf":1.0},"445":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"121":{"tf":1.0},"1622":{"tf":1.0},"51":{"tf":1.4142135623730951}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"114":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"624":{"tf":1.0}}}},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"440":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"a":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1569":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1647":{"tf":2.0}}},"df":0,"docs":{}}},"df":133,"docs":{"1001":{"tf":1.4142135623730951},"1009":{"tf":1.7320508075688772},"1025":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1069":{"tf":2.0},"1070":{"tf":2.23606797749979},"1071":{"tf":2.0},"1072":{"tf":1.7320508075688772},"1074":{"tf":1.7320508075688772},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1081":{"tf":1.4142135623730951},"1084":{"tf":2.23606797749979},"1085":{"tf":1.7320508075688772},"1086":{"tf":1.7320508075688772},"1130":{"tf":2.0},"1135":{"tf":1.4142135623730951},"1144":{"tf":1.0},"1147":{"tf":1.0},"1159":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1178":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1258":{"tf":1.0},"1273":{"tf":1.0},"1321":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1387":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":2.23606797749979},"1433":{"tf":1.4142135623730951},"1435":{"tf":1.0},"1438":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1445":{"tf":1.0},"145":{"tf":1.7320508075688772},"1456":{"tf":1.4142135623730951},"1458":{"tf":1.0},"1461":{"tf":1.0},"1468":{"tf":1.0},"1484":{"tf":2.0},"1498":{"tf":1.4142135623730951},"151":{"tf":1.0},"1521":{"tf":1.0},"1535":{"tf":1.0},"1564":{"tf":2.449489742783178},"1602":{"tf":1.0},"1615":{"tf":1.0},"1616":{"tf":2.23606797749979},"1640":{"tf":1.4142135623730951},"1647":{"tf":1.4142135623730951},"165":{"tf":1.0},"1654":{"tf":1.4142135623730951},"1655":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"17":{"tf":1.0},"174":{"tf":2.0},"182":{"tf":1.0},"187":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"238":{"tf":1.0},"24":{"tf":1.0},"242":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"260":{"tf":1.4142135623730951},"267":{"tf":3.1622776601683795},"272":{"tf":1.0},"277":{"tf":1.0},"292":{"tf":1.0},"32":{"tf":1.4142135623730951},"336":{"tf":1.0},"339":{"tf":1.0},"348":{"tf":1.0},"357":{"tf":1.0},"369":{"tf":1.0},"399":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.4142135623730951},"481":{"tf":1.0},"492":{"tf":1.0},"499":{"tf":1.0},"50":{"tf":1.0},"508":{"tf":1.0},"510":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.7320508075688772},"54":{"tf":2.0},"561":{"tf":1.0},"600":{"tf":1.0},"628":{"tf":1.0},"663":{"tf":1.4142135623730951},"68":{"tf":1.7320508075688772},"687":{"tf":1.4142135623730951},"688":{"tf":1.0},"69":{"tf":2.0},"717":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"774":{"tf":1.0},"797":{"tf":1.0},"810":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":2.0},"827":{"tf":1.7320508075688772},"834":{"tf":1.0},"839":{"tf":1.7320508075688772},"859":{"tf":1.7320508075688772},"862":{"tf":2.449489742783178},"865":{"tf":1.0},"866":{"tf":1.0},"881":{"tf":2.23606797749979},"899":{"tf":1.7320508075688772},"919":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.4142135623730951},"947":{"tf":1.0},"957":{"tf":2.0},"977":{"tf":1.0},"978":{"tf":1.7320508075688772},"997":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1647":{"tf":1.4142135623730951}}}}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":46,"docs":{"1001":{"tf":1.4142135623730951},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1142":{"tf":1.0},"1144":{"tf":1.4142135623730951},"117":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1207":{"tf":1.0},"122":{"tf":1.0},"1262":{"tf":1.0},"1302":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1357":{"tf":1.0},"1368":{"tf":1.0},"1381":{"tf":1.0},"1385":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"143":{"tf":1.0},"148":{"tf":1.0},"1487":{"tf":1.0},"1530":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"162":{"tf":1.0},"1625":{"tf":1.0},"175":{"tf":1.0},"228":{"tf":1.0},"260":{"tf":1.0},"32":{"tf":1.0},"336":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"387":{"tf":1.0},"5":{"tf":1.0},"806":{"tf":1.0},"936":{"tf":1.0},"944":{"tf":1.0},"947":{"tf":1.0},"954":{"tf":1.0},"960":{"tf":1.0},"964":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":1.4142135623730951}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"121":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"1395":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1230":{"tf":1.0},"1371":{"tf":1.0},"854":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"633":{"tf":1.0},"657":{"tf":1.4142135623730951},"658":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1535":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1174":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"666":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"c":{"a":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":42,"docs":{"1061":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"124":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"133":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1360":{"tf":1.0},"1614":{"tf":1.0},"1618":{"tf":1.0},"253":{"tf":1.4142135623730951},"437":{"tf":1.0},"467":{"tf":1.0},"51":{"tf":1.4142135623730951},"592":{"tf":1.0},"984":{"tf":1.7320508075688772},"985":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.7320508075688772},"988":{"tf":1.7320508075688772},"989":{"tf":1.7320508075688772},"990":{"tf":1.7320508075688772},"991":{"tf":1.0},"992":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1052":{"tf":1.0},"994":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1059":{"tf":1.0},"1556":{"tf":1.0},"1557":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"622":{"tf":1.0}}}},"l":{"df":0,"docs":{},"k":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1008":{"tf":1.0},"1530":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":34,"docs":{"1140":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1195":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1254":{"tf":1.0},"1270":{"tf":1.0},"1302":{"tf":1.0},"1354":{"tf":1.0},"1515":{"tf":1.4142135623730951},"1533":{"tf":1.0},"1640":{"tf":1.0},"40":{"tf":1.0},"41":{"tf":1.0},"417":{"tf":1.0},"438":{"tf":1.0},"442":{"tf":1.0},"46":{"tf":1.0},"5":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"51":{"tf":1.0},"513":{"tf":1.0},"518":{"tf":1.0},"520":{"tf":1.0},"645":{"tf":1.0},"672":{"tf":1.0},"676":{"tf":1.0},"746":{"tf":1.0},"755":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":14,"docs":{"1011":{"tf":1.4142135623730951},"1013":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1375":{"tf":1.0},"1519":{"tf":1.0},"1626":{"tf":1.0},"1629":{"tf":1.7320508075688772},"320":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"605":{"tf":1.0},"779":{"tf":1.0},"975":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1145":{"tf":1.0},"144":{"tf":1.7320508075688772},"1532":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"141":{"tf":1.0},"1556":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1420":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1420":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1420":{"tf":2.0},"239":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"1":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1191":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1485":{"tf":1.0},"1597":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"371":{"tf":1.0},"51":{"tf":1.0},"528":{"tf":1.4142135623730951}}}},"df":8,"docs":{"1215":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1472":{"tf":1.0},"744":{"tf":1.0},"95":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"r":{"df":1,"docs":{"17":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1199":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1350":{"tf":1.0},"533":{"tf":1.4142135623730951}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"177":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"1047":{"tf":1.0},"1125":{"tf":1.0},"116":{"tf":1.0},"1532":{"tf":1.4142135623730951},"36":{"tf":1.0},"398":{"tf":1.0},"75":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"756":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"943":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"l":{"df":12,"docs":{"1139":{"tf":1.0},"1271":{"tf":1.0},"1275":{"tf":1.0},"1280":{"tf":1.0},"1283":{"tf":2.449489742783178},"1290":{"tf":1.0},"1479":{"tf":1.0},"440":{"tf":1.0},"455":{"tf":1.0},"463":{"tf":1.0},"691":{"tf":1.4142135623730951},"700":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":2,"docs":{"1024":{"tf":1.0},"1323":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":3,"docs":{"143":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1198":{"tf":1.0},"1262":{"tf":1.0},"1285":{"tf":1.0},"1326":{"tf":1.0},"1359":{"tf":1.0},"1376":{"tf":1.0},"1487":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.4142135623730951},"1530":{"tf":1.0},"195":{"tf":1.0},"291":{"tf":1.0},"534":{"tf":1.0},"842":{"tf":1.0},"871":{"tf":1.0},"914":{"tf":1.0},"980":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"760":{"tf":1.4142135623730951},"946":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1043":{"tf":1.0},"1139":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1157":{"tf":1.4142135623730951},"1410":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":11,"docs":{"1017":{"tf":1.0},"1229":{"tf":1.0},"1372":{"tf":1.0},"143":{"tf":1.0},"176":{"tf":1.0},"399":{"tf":1.0},"628":{"tf":1.0},"633":{"tf":1.0},"658":{"tf":1.0},"666":{"tf":1.7320508075688772},"994":{"tf":1.0}}}}},"df":1,"docs":{"1008":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1254":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1340":{"tf":1.4142135623730951},"756":{"tf":1.0},"759":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"759":{"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":{}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"938":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"1017":{"tf":1.0},"1033":{"tf":1.0},"116":{"tf":1.0},"1327":{"tf":1.0},"1354":{"tf":1.0},"1372":{"tf":1.0},"1588":{"tf":1.0},"386":{"tf":1.0},"59":{"tf":1.4142135623730951},"914":{"tf":1.0},"933":{"tf":1.0},"935":{"tf":1.0},"994":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":52,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1023":{"tf":1.0},"1033":{"tf":1.0},"1067":{"tf":1.0},"110":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"1144":{"tf":1.0},"117":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1193":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1366":{"tf":1.0},"1372":{"tf":1.0},"1384":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1487":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1530":{"tf":1.0},"1535":{"tf":1.0},"1566":{"tf":1.0},"1595":{"tf":1.0},"1620":{"tf":1.0},"195":{"tf":1.0},"325":{"tf":1.0},"36":{"tf":1.4142135623730951},"41":{"tf":1.0},"43":{"tf":1.4142135623730951},"440":{"tf":1.0},"449":{"tf":1.0},"46":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"51":{"tf":1.0},"597":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.4142135623730951},"771":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"89":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"i":{"(":{"'":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"1391":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"529":{"tf":1.7320508075688772}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"319":{"tf":1.0},"588":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"956":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":111,"docs":{"1015":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"105":{"tf":1.0},"1141":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"1197":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1273":{"tf":1.0},"1275":{"tf":1.0},"1298":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.4142135623730951},"14":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1504":{"tf":1.4142135623730951},"1527":{"tf":1.0},"1530":{"tf":1.0},"1533":{"tf":1.0},"1626":{"tf":1.0},"17":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"323":{"tf":1.0},"332":{"tf":1.0},"344":{"tf":1.4142135623730951},"404":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"486":{"tf":1.4142135623730951},"521":{"tf":1.0},"532":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"556":{"tf":1.4142135623730951},"56":{"tf":1.0},"58":{"tf":1.0},"63":{"tf":1.0},"634":{"tf":1.0},"700":{"tf":1.0},"722":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"876":{"tf":1.4142135623730951},"882":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.4142135623730951},"891":{"tf":2.0},"897":{"tf":1.4142135623730951},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"938":{"tf":1.0},"94":{"tf":1.4142135623730951},"940":{"tf":1.0},"968":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"988":{"tf":1.0},"991":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"801":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"144":{"tf":1.0}}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1410":{"tf":1.0}}}}},"df":45,"docs":{"1":{"tf":1.0},"1160":{"tf":1.0},"1195":{"tf":1.0},"1211":{"tf":1.0},"1219":{"tf":1.0},"126":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1410":{"tf":1.7320508075688772},"1476":{"tf":1.0},"1482":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1495":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1601":{"tf":1.0},"17":{"tf":1.0},"185":{"tf":1.0},"208":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"36":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.4142135623730951},"627":{"tf":1.0},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"75":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0},"830":{"tf":1.0},"856":{"tf":1.0},"885":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"904":{"tf":1.4142135623730951},"916":{"tf":1.0},"95":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"924":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1008":{"tf":1.0},"1046":{"tf":1.0},"1248":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"d":{"df":8,"docs":{"1104":{"tf":1.0},"28":{"tf":1.4142135623730951},"345":{"tf":1.0},"597":{"tf":1.0},"739":{"tf":1.0},"75":{"tf":1.0},"750":{"tf":1.0},"771":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":23,"docs":{"1249":{"tf":1.0},"1277":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1340":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1631":{"tf":2.0},"1649":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"516":{"tf":1.4142135623730951},"529":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"747":{"tf":1.4142135623730951},"760":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"794":{"tf":1.0},"912":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1251":{"tf":1.0},"36":{"tf":1.0},"518":{"tf":1.0},"807":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1391":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"516":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"159":{"tf":1.0},"394":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":26,"docs":{"1144":{"tf":1.0},"1147":{"tf":1.0},"1192":{"tf":1.0},"1324":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1331":{"tf":1.0},"1500":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1535":{"tf":1.0},"1571":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1602":{"tf":1.0},"183":{"tf":1.0},"294":{"tf":1.0},"379":{"tf":1.0},"532":{"tf":1.0},"744":{"tf":1.0},"905":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":8,"docs":{"1024":{"tf":1.0},"136":{"tf":1.0},"1377":{"tf":1.0},"1547":{"tf":1.0},"156":{"tf":1.0},"1587":{"tf":1.0},"588":{"tf":1.0},"685":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"399":{"tf":1.0},"628":{"tf":1.0}}}}},"x":{"6":{"4":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":3,"docs":{"143":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1167":{"tf":1.0},"1244":{"tf":1.0},"1343":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"905":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"897":{"tf":1.0}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"399":{"tf":1.0},"402":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":24,"docs":{"1139":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1601":{"tf":1.0},"1605":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"206":{"tf":1.4142135623730951},"220":{"tf":1.7320508075688772},"249":{"tf":2.8284271247461903},"839":{"tf":2.6457513110645907},"840":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"861":{"tf":1.7320508075688772},"862":{"tf":2.0},"865":{"tf":2.6457513110645907},"869":{"tf":1.0},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"891":{"tf":1.7320508075688772},"894":{"tf":1.4142135623730951},"985":{"tf":3.0}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1215":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1273":{"tf":1.0},"1313":{"tf":1.0},"1538":{"tf":1.0}}}},"r":{"df":6,"docs":{"1059":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1354":{"tf":1.0},"1394":{"tf":1.0},"305":{"tf":1.0},"78":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"96":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{":":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1516":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1008":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"314":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"!":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1438":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1438":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"533":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1438":{"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":{"533":{"tf":1.0}}}}}}}}},"df":2,"docs":{"1438":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":5,"docs":{"1512":{"tf":1.0},"1515":{"tf":1.4142135623730951},"672":{"tf":1.0},"77":{"tf":1.4142135623730951},"970":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"843":{"tf":1.0}}}},"o":{"d":{"df":3,"docs":{"1429":{"tf":1.0},"1438":{"tf":1.0},"533":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1059":{"tf":1.0},"118":{"tf":1.0},"1556":{"tf":1.0},"1647":{"tf":1.0},"314":{"tf":1.4142135623730951},"322":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1633":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1624":{"tf":1.0}}},"2":{"df":1,"docs":{"1624":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1617":{"tf":1.0}}}},"df":0,"docs":{}},"7":{".":{"0":{"df":1,"docs":{"1617":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"0":{"df":1,"docs":{"1628":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":13,"docs":{"1045":{"tf":1.0},"1243":{"tf":1.0},"1252":{"tf":1.0},"1264":{"tf":1.0},"1315":{"tf":1.0},"40":{"tf":1.0},"505":{"tf":1.0},"523":{"tf":1.0},"539":{"tf":1.0},"749":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"996":{"tf":1.0}}},"2":{"df":13,"docs":{"1046":{"tf":1.0},"1244":{"tf":1.0},"1253":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"41":{"tf":1.0},"508":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"750":{"tf":1.0},"906":{"tf":1.0},"92":{"tf":1.0},"997":{"tf":1.0}}},"3":{"df":12,"docs":{"1047":{"tf":1.0},"1245":{"tf":1.0},"1256":{"tf":1.0},"1266":{"tf":1.0},"1317":{"tf":1.0},"42":{"tf":1.0},"525":{"tf":1.0},"541":{"tf":1.0},"751":{"tf":1.0},"907":{"tf":1.0},"93":{"tf":1.0},"998":{"tf":1.0}}},"4":{"df":5,"docs":{"1048":{"tf":1.0},"1246":{"tf":1.0},"1318":{"tf":1.0},"43":{"tf":1.0},"908":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"314":{"tf":1.0}}},"df":6,"docs":{"1049":{"tf":1.0},"1321":{"tf":1.0},"44":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0},"909":{"tf":1.0}}},"6":{"df":2,"docs":{"1322":{"tf":1.0},"45":{"tf":1.0}}},"7":{"df":1,"docs":{"46":{"tf":1.0}}},"a":{"2":{"a":{"df":10,"docs":{"1193":{"tf":1.0},"1261":{"tf":1.0},"1262":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1277":{"tf":1.0},"132":{"tf":1.0},"1353":{"tf":1.0},"137":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"358":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1233":{"tf":1.0},"1309":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0}}}}},"d":{"df":9,"docs":{"1262":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"41":{"tf":1.0},"541":{"tf":1.0}}},"df":5,"docs":{"1647":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"335":{"tf":1.0},"880":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"38":{"tf":1.0},"925":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1163":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1001":{"tf":1.0},"1017":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"603":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"603":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"597":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"597":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"770":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"596":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"776":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"778":{"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"782":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"780":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"613":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"r":{"df":1,"docs":{"602":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"604":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"608":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"606":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"786":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"612":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"612":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"600":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"600":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"785":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"772":{"tf":1.0}}}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"784":{"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":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"611":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"611":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"598":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"598":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"609":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"610":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"599":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"607":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"2":{"a":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"779":{"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":{}},"a":{"2":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"605":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"605":{"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":{},"i":{"d":{"df":1,"docs":{"775":{"tf":1.0}}},"df":0,"docs":{}}},"df":108,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1069":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"119":{"tf":1.0},"1193":{"tf":1.0},"1206":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1309":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1581":{"tf":1.0},"159":{"tf":1.0},"1643":{"tf":1.0},"19":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"307":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"321":{"tf":1.0},"338":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"44":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"50":{"tf":1.0},"515":{"tf":1.0},"550":{"tf":1.0},"587":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"806":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.0},"855":{"tf":1.0},"89":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"912":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"990":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"694":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1067":{"tf":1.0},"1133":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"775":{"tf":1.0},"776":{"tf":1.0},"777":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":60,"docs":{"100":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1365":{"tf":1.0},"1371":{"tf":1.0},"1372":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1501":{"tf":1.0},"1565":{"tf":1.0},"1566":{"tf":1.0},"1569":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"26":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"292":{"tf":1.0},"293":{"tf":1.0},"295":{"tf":1.0},"296":{"tf":1.0},"304":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"898":{"tf":1.0},"907":{"tf":1.0},"941":{"tf":1.0}}}}}}}}}},"i":{"df":6,"docs":{"1309":{"tf":1.0},"1391":{"tf":1.0},"221":{"tf":1.0},"29":{"tf":1.0},"521":{"tf":1.0},"848":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"g":{"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":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":21,"docs":{"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1123":{"tf":1.0},"1130":{"tf":1.0},"1133":{"tf":1.0},"1137":{"tf":1.0},"1138":{"tf":1.0},"1141":{"tf":1.0},"1549":{"tf":1.0},"1554":{"tf":1.0},"157":{"tf":1.0},"1639":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"299":{"tf":1.0},"420":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0}}}}}}}}},"i":{"a":{"df":1,"docs":{"1630":{"tf":1.0}},"s":{"df":1,"docs":{"1628":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"992":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"153":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1307":{"tf":1.0},"1567":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"32":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1196":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"211":{"tf":1.0},"318":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":3,"docs":{"1348":{"tf":1.0},"1350":{"tf":1.0},"763":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"i":{"df":32,"docs":{"1184":{"tf":1.0},"1287":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1618":{"tf":1.0},"1621":{"tf":1.0},"1650":{"tf":1.0},"1651":{"tf":1.0},"301":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"406":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"467":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"592":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0},"674":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}},"p":{"df":2,"docs":{"1282":{"tf":1.0},"1480":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"394":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"428":{"tf":1.0},"656":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1195":{"tf":1.0},"1372":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"v":{"df":1,"docs":{"44":{"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":4,"docs":{"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"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":{"1278":{"tf":1.0},"130":{"tf":1.0},"812":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1605":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1253":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"1166":{"tf":1.0},"1588":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":5,"docs":{"1266":{"tf":1.0},"1292":{"tf":1.0},"1298":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"906":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1002":{"tf":1.0},"1199":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1287":{"tf":1.0},"1618":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":16,"docs":{"1336":{"tf":1.0},"1504":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"261":{"tf":1.0},"346":{"tf":1.0},"452":{"tf":1.0},"461":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"697":{"tf":1.0},"712":{"tf":1.0},"718":{"tf":1.0},"870":{"tf":1.0},"880":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":2,"docs":{"1017":{"tf":1.0},"1200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":26,"docs":{"123":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"1332":{"tf":1.0},"1338":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"138":{"tf":1.0},"1584":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"1603":{"tf":1.0},"1611":{"tf":1.0},"984":{"tf":1.0}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":5,"docs":{"1049":{"tf":1.0},"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"46":{"tf":1.0},"546":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1568":{"tf":1.0}}}}},"o":{"df":3,"docs":{"516":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1532":{"tf":1.0},"175":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1072":{"tf":1.0}}}},"df":7,"docs":{"1148":{"tf":1.4142135623730951},"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0},"314":{"tf":1.0},"418":{"tf":1.0},"646":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"316":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1144":{"tf":1.0},"1145":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":1.0},"1532":{"tf":1.0},"1533":{"tf":1.0},"1538":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"643":{"tf":1.0}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1023":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1026":{"tf":1.0},"1237":{"tf":1.0},"1413":{"tf":1.0},"1445":{"tf":1.0},"1468":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"21":{"tf":1.0},"301":{"tf":1.0},"307":{"tf":1.0},"407":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"1156":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"1503":{"tf":1.0},"256":{"tf":1.0},"284":{"tf":1.0},"412":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"472":{"tf":1.0},"567":{"tf":1.0},"656":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1418":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1611":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"137":{"tf":1.0}},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1011":{"tf":1.0},"1534":{"tf":1.0},"509":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"32":{"tf":1.0},"70":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"1250":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1538":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"432":{"tf":1.0},"665":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1209":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"14":{"tf":1.0}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"1270":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1353":{"tf":1.0},"1354":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"902":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"1618":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1395":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"d":{"df":5,"docs":{"1295":{"tf":1.0},"1328":{"tf":1.0},"148":{"tf":1.0},"162":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.0},"381":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"327":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1338":{"tf":1.0},"1384":{"tf":1.0},"533":{"tf":1.0}}}},"r":{"d":{"df":3,"docs":{"1193":{"tf":1.0},"1264":{"tf":1.0},"1281":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1240":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":8,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1244":{"tf":1.0},"39":{"tf":1.0},"808":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"813":{"tf":1.0},"875":{"tf":1.0}}}}}}}}},"df":1,"docs":{"138":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"46":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1010":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1055":{"tf":1.0},"1071":{"tf":1.0},"129":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.0},"1320":{"tf":1.0},"1340":{"tf":1.0},"1589":{"tf":1.0},"1596":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1618":{"tf":1.0},"1620":{"tf":1.0},"1622":{"tf":1.0},"1634":{"tf":1.0},"277":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1056":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1101":{"tf":1.0},"1107":{"tf":1.0},"1113":{"tf":1.0},"1119":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1443":{"tf":1.0},"1466":{"tf":1.0},"1580":{"tf":1.0},"1610":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1050":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1654":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":6,"docs":{"1139":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.0},"1249":{"tf":1.0},"514":{"tf":1.0},"756":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1232":{"tf":1.0},"332":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":10,"docs":{"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1058":{"tf":1.0},"1060":{"tf":1.0},"127":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"14":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"594":{"tf":1.0},"768":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"763":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"389":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":13,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"1079":{"tf":1.0},"120":{"tf":1.0},"1397":{"tf":1.0},"1482":{"tf":1.0},"1540":{"tf":1.0},"1598":{"tf":1.0},"167":{"tf":1.0},"185":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"854":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"583":{"tf":1.0}}}},"df":12,"docs":{"1436":{"tf":1.0},"1439":{"tf":1.0},"1459":{"tf":1.0},"1462":{"tf":1.0},"407":{"tf":1.0},"506":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"583":{"tf":1.0},"750":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1018":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":9,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1425":{"tf":1.0},"1507":{"tf":1.0},"1539":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0},"407":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1367":{"tf":1.0},"1368":{"tf":1.0},"388":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"300":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":17,"docs":{"1062":{"tf":1.0},"1079":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1490":{"tf":1.0},"1492":{"tf":1.0},"1494":{"tf":1.0},"1496":{"tf":1.0},"1501":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"194":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"201":{"tf":1.0},"206":{"tf":1.0},"311":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"1059":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"141":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1653":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"429":{"tf":1.0},"510":{"tf":1.0},"662":{"tf":1.0},"799":{"tf":1.0},"808":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"15":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1131":{"tf":1.0},"560":{"tf":1.0},"985":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1023":{"tf":1.0},"142":{"tf":1.0},"1616":{"tf":1.0},"432":{"tf":1.0},"665":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":17,"docs":{"1219":{"tf":1.0},"1410":{"tf":1.0},"1435":{"tf":1.0},"1458":{"tf":1.0},"1517":{"tf":1.0},"291":{"tf":1.0},"365":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"581":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1068":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"59":{"tf":1.0},"816":{"tf":1.0}}},"s":{"df":1,"docs":{"530":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1355":{"tf":1.0},"824":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1066":{"tf":1.0},"1135":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"125":{"tf":1.0},"22":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"807":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"631":{"tf":1.0},"659":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1164":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":6,"docs":{"1491":{"tf":1.0},"1515":{"tf":1.0},"155":{"tf":1.0},"507":{"tf":1.0},"77":{"tf":1.0},"970":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":76,"docs":{"1012":{"tf":1.0},"1016":{"tf":1.0},"1028":{"tf":1.0},"1102":{"tf":1.0},"1108":{"tf":1.0},"1114":{"tf":1.0},"1120":{"tf":1.0},"1142":{"tf":1.0},"1198":{"tf":1.0},"1367":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"1533":{"tf":1.0},"1536":{"tf":1.0},"154":{"tf":1.0},"1541":{"tf":1.0},"1542":{"tf":1.0},"1543":{"tf":1.0},"1577":{"tf":1.0},"1580":{"tf":1.0},"1634":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"342":{"tf":1.0},"356":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"385":{"tf":1.0},"387":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"470":{"tf":1.0},"499":{"tf":1.0},"571":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"706":{"tf":1.0},"735":{"tf":1.0},"741":{"tf":1.0},"744":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"814":{"tf":1.0},"820":{"tf":1.0},"92":{"tf":1.0},"972":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"979":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1573":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"1025":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1110":{"tf":1.0},"1116":{"tf":1.0},"1122":{"tf":1.0},"1132":{"tf":1.0},"1331":{"tf":1.0},"1537":{"tf":1.0},"324":{"tf":1.0},"584":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1210":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1166":{"tf":1.0},"1251":{"tf":1.0},"299":{"tf":1.0},"748":{"tf":1.0},"829":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"595":{"tf":1.0},"769":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"225":{"tf":1.0},"837":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"585":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":3,"docs":{"1306":{"tf":1.0},"138":{"tf":1.0},"285":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1175":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"529":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"959":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"902":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":15,"docs":{"1145":{"tf":1.0},"1263":{"tf":1.0},"136":{"tf":1.0},"18":{"tf":1.0},"337":{"tf":1.0},"406":{"tf":1.0},"47":{"tf":1.0},"564":{"tf":1.0},"593":{"tf":1.0},"636":{"tf":1.0},"767":{"tf":1.0},"839":{"tf":1.0},"860":{"tf":1.0},"890":{"tf":1.0},"995":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"987":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1228":{"tf":1.0},"1229":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1150":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"168":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1155":{"tf":1.0},"1315":{"tf":1.0},"1317":{"tf":1.0},"1403":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1416":{"tf":1.0},"1431":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"1464":{"tf":1.0},"1497":{"tf":1.0},"1599":{"tf":1.0},"1609":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"243":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"340":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"351":{"tf":1.0},"469":{"tf":1.0},"471":{"tf":1.0},"487":{"tf":1.0},"499":{"tf":1.0},"524":{"tf":1.0},"540":{"tf":1.0},"705":{"tf":1.0},"707":{"tf":1.0},"723":{"tf":1.0},"735":{"tf":1.0},"825":{"tf":1.0},"851":{"tf":1.0},"877":{"tf":1.0},"905":{"tf":1.0},"928":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"621":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"622":{"tf":1.0}}}}}}}}},"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":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"159":{"tf":1.0},"472":{"tf":1.0},"708":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1470":{"tf":1.0}}}}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1344":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":7,"docs":{"1141":{"tf":1.0},"1187":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"1587":{"tf":1.0},"1594":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1067":{"tf":1.0},"1097":{"tf":1.0},"1545":{"tf":1.0},"1639":{"tf":1.0},"226":{"tf":1.0},"420":{"tf":1.0},"64":{"tf":1.0},"648":{"tf":1.0},"864":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":1,"docs":{"20":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"s":{"a":{"df":1,"docs":{"990":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1143":{"tf":1.0},"1271":{"tf":1.0},"287":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1294":{"tf":1.0},"1297":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1169":{"tf":1.0},"1324":{"tf":1.0},"1335":{"tf":1.0},"1412":{"tf":1.0},"219":{"tf":1.0},"246":{"tf":1.0},"266":{"tf":1.0},"355":{"tf":1.0},"361":{"tf":1.0},"372":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"821":{"tf":1.0},"825":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"1646":{"tf":1.0},"1647":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":6,"docs":{"30":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1578":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":3,"docs":{"1124":{"tf":1.0},"1302":{"tf":1.0},"140":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1339":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":6,"docs":{"1011":{"tf":1.0},"1334":{"tf":1.0},"360":{"tf":1.0},"371":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1165":{"tf":1.0},"219":{"tf":1.0},"457":{"tf":1.0},"693":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1091":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"335":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":3,"docs":{"1":{"tf":1.0},"142":{"tf":1.0},"147":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1626":{"tf":1.0},"1628":{"tf":1.0},"1629":{"tf":1.0},"1630":{"tf":1.0},"1632":{"tf":1.0},"624":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"129":{"tf":1.0},"1320":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"19":{"tf":1.0},"238":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"224":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1373":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"1011":{"tf":1.0},"1051":{"tf":1.0},"1274":{"tf":1.0},"1524":{"tf":1.0},"391":{"tf":1.0},"425":{"tf":1.0},"633":{"tf":1.0},"653":{"tf":1.0}}}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1062":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1190":{"tf":1.0},"1271":{"tf":1.0},"269":{"tf":1.0},"288":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1111":{"tf":1.4142135623730951},"423":{"tf":1.0},"651":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1544":{"tf":1.0},"245":{"tf":1.0},"258":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1285":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1265":{"tf":1.0},"137":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1026":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1196":{"tf":1.0},"120":{"tf":1.0},"1413":{"tf":1.0},"1555":{"tf":1.0},"1557":{"tf":1.0},"1558":{"tf":1.0},"1559":{"tf":1.0},"197":{"tf":1.0},"233":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"311":{"tf":1.0},"313":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.0},"329":{"tf":1.0},"343":{"tf":1.0},"846":{"tf":1.0},"979":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1556":{"tf":1.0},"322":{"tf":1.0},"323":{"tf":1.0},"330":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":101,"docs":{"1004":{"tf":1.0},"1005":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":1.0},"1217":{"tf":1.0},"1265":{"tf":1.0},"1316":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1418":{"tf":1.0},"1420":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1444":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1560":{"tf":1.0},"1563":{"tf":1.0},"161":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"235":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"250":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"353":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.0},"815":{"tf":1.0},"819":{"tf":1.0},"84":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"926":{"tf":1.0},"928":{"tf":1.0},"932":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1535":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"119":{"tf":1.0},"321":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1322":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1278":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"45":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1195":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"989":{"tf":1.0}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1099":{"tf":1.4142135623730951},"1640":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1378":{"tf":1.0},"1379":{"tf":1.0},"1383":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1380":{"tf":1.0}}}}}}}}},"b":{"df":3,"docs":{"253":{"tf":1.0},"447":{"tf":1.0},"452":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"681":{"tf":1.0},"688":{"tf":1.0},"771":{"tf":1.0},"774":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1406":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"924":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1595":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1338":{"tf":1.0},"1366":{"tf":1.0},"1579":{"tf":1.0},"378":{"tf":1.0},"383":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"898":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1224":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1022":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"3":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"829":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1234":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"657":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":32,"docs":{"1024":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1539":{"tf":1.0},"1541":{"tf":1.0},"1545":{"tf":1.0},"1550":{"tf":1.0},"1555":{"tf":1.0},"1560":{"tf":1.0},"1565":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1572":{"tf":1.0},"1573":{"tf":1.0},"1574":{"tf":1.0},"1577":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"363":{"tf":1.0},"431":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"664":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1160":{"tf":1.0},"94":{"tf":1.0}}}}}}},"i":{"d":{"df":7,"docs":{"128":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1336":{"tf":1.0},"1588":{"tf":1.0},"1595":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"a":{"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1325":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1080":{"tf":1.0},"1104":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1304":{"tf":1.0},"131":{"tf":1.0},"1356":{"tf":1.0},"1397":{"tf":1.0},"1417":{"tf":1.0},"1428":{"tf":1.0},"1451":{"tf":1.0},"146":{"tf":1.0},"1476":{"tf":1.0},"1517":{"tf":1.0},"1536":{"tf":1.0},"1602":{"tf":1.0},"1607":{"tf":1.0},"1631":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"28":{"tf":1.0},"294":{"tf":1.0},"365":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"501":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"581":{"tf":1.0},"670":{"tf":1.0},"699":{"tf":1.0},"737":{"tf":1.0},"753":{"tf":1.0},"847":{"tf":1.0},"874":{"tf":1.0},"899":{"tf":1.0},"922":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"942":{"tf":1.0},"955":{"tf":1.0},"966":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"698":{"tf":1.0},"799":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1292":{"tf":1.0},"137":{"tf":1.0},"42":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1253":{"tf":1.0},"1277":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"481":{"tf":1.0},"516":{"tf":1.0},"717":{"tf":1.0}}}},"t":{"df":5,"docs":{"1425":{"tf":1.0},"1507":{"tf":1.0},"1540":{"tf":1.0},"1612":{"tf":1.0},"212":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1016":{"tf":1.0}},"i":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"689":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"453":{"tf":1.0}}}},"df":4,"docs":{"1264":{"tf":1.0},"1322":{"tf":1.0},"1366":{"tf":1.0},"395":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1192":{"tf":1.0},"1393":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1651":{"tf":1.0},"537":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1169":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"822":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"493":{"tf":1.0},"729":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1150":{"tf":1.0},"1406":{"tf":1.0},"1500":{"tf":1.0},"205":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":13,"docs":{"1373":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"1551":{"tf":1.0},"1556":{"tf":1.0},"156":{"tf":1.0},"1562":{"tf":1.0},"157":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"330":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1205":{"tf":1.0},"1426":{"tf":1.0},"509":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"1594":{"tf":1.0},"1597":{"tf":1.0}}}},"q":{"df":1,"docs":{"1279":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":7,"docs":{"1192":{"tf":1.0},"1282":{"tf":1.0},"1341":{"tf":1.0},"1393":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"761":{"tf":1.0}}}}},"df":1,"docs":{"1319":{"tf":1.0}},"m":{"c":{"df":0,"docs":{},"p":{"df":3,"docs":{"1461":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1163":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"336":{"tf":1.0},"369":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":2,"docs":{"1369":{"tf":1.0},"1370":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"568":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":34,"docs":{"1162":{"tf":1.0},"1179":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"249":{"tf":1.0},"479":{"tf":1.0},"54":{"tf":1.0},"715":{"tf":1.0},"827":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"864":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"875":{"tf":1.0},"890":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"961":{"tf":1.0},"973":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":29,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1526":{"tf":1.0},"232":{"tf":1.0},"244":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"387":{"tf":1.0},"413":{"tf":1.0},"416":{"tf":1.0},"45":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"639":{"tf":1.0},"644":{"tf":1.0},"706":{"tf":1.0},"710":{"tf":1.0},"742":{"tf":1.0},"796":{"tf":1.0},"820":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0},"970":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1146":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"909":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1400":{"tf":1.0},"1618":{"tf":1.0},"19":{"tf":1.0},"216":{"tf":1.0},"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}}}},"t":{"df":1,"docs":{"1250":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1215":{"tf":1.0},"1235":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"336":{"tf":1.0},"369":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1080":{"tf":1.0},"1263":{"tf":1.0},"1290":{"tf":1.0},"140":{"tf":1.0},"565":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":11,"docs":{"1070":{"tf":1.0},"1127":{"tf":1.0},"1509":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1644":{"tf":1.0},"312":{"tf":1.0},"74":{"tf":1.0},"740":{"tf":1.0},"796":{"tf":1.0},"828":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1134":{"tf":1.0},"1382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"1544":{"tf":1.0},"1546":{"tf":1.0},"155":{"tf":1.0},"1557":{"tf":1.0},"1563":{"tf":1.0},"1566":{"tf":1.0},"161":{"tf":1.0},"329":{"tf":1.0},"430":{"tf":1.0},"663":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"1198":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":8,"docs":{"1192":{"tf":1.0},"1332":{"tf":1.0},"1351":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"409":{"tf":1.0},"755":{"tf":1.0},"990":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1146":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1320":{"tf":1.0},"1588":{"tf":1.0},"1589":{"tf":1.0},"1592":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"1622":{"tf":1.0},"1632":{"tf":1.0},"497":{"tf":1.0},"614":{"tf":1.0},"624":{"tf":1.0},"733":{"tf":1.0},"788":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1213":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1360":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1007":{"tf":1.0},"1087":{"tf":1.0},"1126":{"tf":1.0},"311":{"tf":1.0},"926":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"690":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"692":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"691":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"444":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"454":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1283":{"tf":1.0},"1299":{"tf":1.0},"1399":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"456":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"455":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1233":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"2":{"tf":1.0},"515":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1483":{"tf":1.0},"1506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"o":{"df":5,"docs":{"13":{"tf":1.0},"8":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"98":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"760":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1162":{"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":{"1037":{"tf":1.0},"1535":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1345":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":8,"docs":{"1123":{"tf":1.0},"1137":{"tf":1.0},"1157":{"tf":1.0},"1260":{"tf":1.0},"1332":{"tf":1.0},"1361":{"tf":1.0},"1615":{"tf":1.0},"76":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"7":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"408":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"822":{"tf":1.0},"875":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":17,"docs":{"1046":{"tf":1.0},"1246":{"tf":1.0},"1424":{"tf":1.0},"1426":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"363":{"tf":1.0},"464":{"tf":1.0},"500":{"tf":1.0},"572":{"tf":1.0},"586":{"tf":1.0},"625":{"tf":1.0},"701":{"tf":1.0},"736":{"tf":1.0},"798":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"104":{"tf":1.0},"90":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1220":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1129":{"tf":1.0},"1319":{"tf":1.0},"295":{"tf":1.0},"498":{"tf":1.0},"734":{"tf":1.0},"867":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"615":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1522":{"tf":1.0},"249":{"tf":1.0},"839":{"tf":1.0},"890":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"1489":{"tf":1.0},"163":{"tf":1.0},"186":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"752":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"36":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"954":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"667":{"tf":1.0},"800":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1081":{"tf":1.0},"267":{"tf":1.0},"881":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1349":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1574":{"tf":1.0}}}},"df":0,"docs":{}}},"df":13,"docs":{"1224":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1480":{"tf":1.0},"1650":{"tf":1.0},"409":{"tf":1.0},"43":{"tf":1.0},"562":{"tf":1.0},"566":{"tf":1.0},"617":{"tf":1.0},"809":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1310":{"tf":1.0},"222":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"d":{"df":4,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"1159":{"tf":1.0},"667":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"136":{"tf":1.0},"1413":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"810":{"tf":1.0},"977":{"tf":1.0},"996":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"861":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":1,"docs":{"989":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"965":{"tf":1.0}}}}},"p":{"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":1,"docs":{"4":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"1013":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1251":{"tf":1.0},"748":{"tf":1.0}}}}}}},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1320":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"545":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"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":{"1189":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1168":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1488":{"tf":1.0}},"i":{"df":5,"docs":{"188":{"tf":1.0},"360":{"tf":1.0},"468":{"tf":1.0},"704":{"tf":1.0},"83":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":26,"docs":{"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"164":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"504":{"tf":1.0},"517":{"tf":1.0},"523":{"tf":1.0},"527":{"tf":1.0},"539":{"tf":1.0},"591":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"766":{"tf":1.0},"79":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.0},"82":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0}}},"n":{"c":{"df":2,"docs":{"301":{"tf":1.0},"407":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":5,"docs":{"512":{"tf":1.0},"520":{"tf":1.0},"754":{"tf":1.0},"760":{"tf":1.0},"764":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":19,"docs":{"1222":{"tf":1.0},"1223":{"tf":1.0},"1232":{"tf":1.0},"1277":{"tf":1.0},"1305":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"1437":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"1527":{"tf":1.0},"1648":{"tf":1.0},"332":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"513":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"997":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1261":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1543":{"tf":1.0},"1547":{"tf":1.0},"1553":{"tf":1.0},"1561":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1176":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"677":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1243":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":9,"docs":{"1059":{"tf":1.0},"150":{"tf":1.0},"154":{"tf":1.0},"158":{"tf":1.0},"1653":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":63,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"1189":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1226":{"tf":1.0},"1241":{"tf":1.0},"1252":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"1368":{"tf":1.0},"1385":{"tf":1.0},"1387":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1598":{"tf":1.0},"1599":{"tf":1.0},"16":{"tf":1.0},"1603":{"tf":1.0},"1649":{"tf":1.0},"1651":{"tf":1.0},"17":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"242":{"tf":1.0},"27":{"tf":1.0},"33":{"tf":1.0},"335":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"524":{"tf":1.0},"54":{"tf":1.0},"540":{"tf":1.0},"6":{"tf":1.0},"751":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"789":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"790":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"792":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"578":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"791":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"793":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"577":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"594":{"tf":1.0},"637":{"tf":1.0},"768":{"tf":1.0}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"301":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"339":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"579":{"tf":1.0},"618":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"8":{"tf":1.0},"803":{"tf":1.0}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"580":{"tf":1.0},"619":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1347":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1449":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"1561":{"tf":1.0},"244":{"tf":1.0},"45":{"tf":1.0},"811":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"t":{"df":1,"docs":{"1328":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"45":{"tf":1.0}}}},"y":{"_":{"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":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"683":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"683":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1487":{"tf":1.0},"1530":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":40,"docs":{"1006":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1009":{"tf":1.0},"1045":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1089":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"122":{"tf":1.0},"1238":{"tf":1.0},"125":{"tf":1.0},"1278":{"tf":1.0},"1514":{"tf":1.0},"1544":{"tf":1.0},"1546":{"tf":1.0},"1547":{"tf":1.0},"1548":{"tf":1.0},"156":{"tf":1.0},"1644":{"tf":1.0},"1645":{"tf":1.0},"22":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"740":{"tf":1.0},"97":{"tf":1.0},"975":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1200":{"tf":1.0}}}}}},"o":{"a":{"df":4,"docs":{"1393":{"tf":1.0},"553":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"m":{"b":{"d":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"513":{"tf":1.0}}}},"df":8,"docs":{"1337":{"tf":1.0},"1340":{"tf":1.0},"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"512":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":5,"docs":{"1392":{"tf":1.0},"1478":{"tf":1.0},"41":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0}}}}},"df":0,"docs":{}}},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"130":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":15,"docs":{"1020":{"tf":1.0},"1029":{"tf":1.0},"1060":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1198":{"tf":1.0},"1386":{"tf":1.0},"1586":{"tf":1.0},"1621":{"tf":1.0},"1632":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0},"788":{"tf":1.0},"863":{"tf":1.0}}}}}},"i":{"b":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"173":{"tf":1.0},"334":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":6,"docs":{"101":{"tf":1.0},"1503":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.0},"58":{"tf":1.0},"938":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"153":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"946":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":1,"docs":{"1394":{"tf":1.0}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"442":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"342":{"tf":1.0},"347":{"tf":1.0},"357":{"tf":1.0},"469":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.0},"640":{"tf":1.0},"705":{"tf":1.0},"742":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1147":{"tf":1.0},"1319":{"tf":1.0},"1591":{"tf":1.0},"40":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}},"t":{"df":6,"docs":{"817":{"tf":1.0},"833":{"tf":1.0},"858":{"tf":1.0},"884":{"tf":1.0},"913":{"tf":1.0},"971":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1569":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1049":{"tf":1.0},"1309":{"tf":1.0},"1519":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"394":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"318":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1075":{"tf":1.0},"1559":{"tf":1.0},"198":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"910":{"tf":1.0}}}}},"o":{"df":2,"docs":{"169":{"tf":1.0},"79":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"1006":{"tf":1.0},"1030":{"tf":1.0},"1415":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"741":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"179":{"tf":1.0},"218":{"tf":1.0},"548":{"tf":1.0},"559":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1124":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1065":{"tf":1.0},"1194":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{"df":37,"docs":{"1191":{"tf":1.0},"1223":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"1252":{"tf":1.0},"1253":{"tf":1.0},"1256":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1477":{"tf":1.0},"1648":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"408":{"tf":1.0},"43":{"tf":1.0},"463":{"tf":1.0},"503":{"tf":1.0},"508":{"tf":1.0},"520":{"tf":1.0},"620":{"tf":1.0},"700":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"764":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"809":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}}}},"df":1,"docs":{"298":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1174":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"1149":{"tf":1.4142135623730951},"1210":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"924":{"tf":1.0},"931":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"903":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1024":{"tf":1.0},"265":{"tf":1.0},"961":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1207":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"d":{"df":6,"docs":{"1619":{"tf":1.0},"1620":{"tf":1.0},"1628":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"637":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":7,"docs":{"1520":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"1189":{"tf":1.0},"1192":{"tf":1.0},"1342":{"tf":1.0},"1480":{"tf":1.0},"1577":{"tf":1.0},"537":{"tf":1.0},"541":{"tf":1.0},"544":{"tf":1.0},"549":{"tf":1.0},"553":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"758":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":21,"docs":{"1130":{"tf":1.0},"1152":{"tf":1.0},"1180":{"tf":1.0},"1538":{"tf":1.0},"1615":{"tf":1.0},"1617":{"tf":1.0},"1623":{"tf":1.0},"1624":{"tf":1.0},"1625":{"tf":1.0},"1631":{"tf":1.0},"1633":{"tf":1.0},"1635":{"tf":1.0},"1636":{"tf":1.0},"1639":{"tf":1.0},"1641":{"tf":1.0},"1644":{"tf":1.0},"1646":{"tf":1.0},"1648":{"tf":1.0},"1650":{"tf":1.0},"1652":{"tf":1.0},"551":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"1277":{"tf":1.0},"1516":{"tf":1.0},"341":{"tf":1.0},"805":{"tf":1.0},"923":{"tf":1.0},"972":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"522":{"tf":1.0},"538":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"141":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1549":{"tf":1.0},"1564":{"tf":1.0},"331":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"1542":{"tf":1.0},"1552":{"tf":1.0},"396":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1205":{"tf":1.0},"1352":{"tf":1.0},"320":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1199":{"tf":1.0},"325":{"tf":1.0},"525":{"tf":1.0},"964":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"1621":{"tf":1.0},"1632":{"tf":1.0},"430":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"663":{"tf":1.0},"767":{"tf":1.0},"788":{"tf":1.0},"794":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"1371":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1282":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"100":{"tf":1.0},"1086":{"tf":1.0},"1311":{"tf":1.0},"1441":{"tf":1.0},"1464":{"tf":1.0},"210":{"tf":1.0},"294":{"tf":1.0},"31":{"tf":1.0},"44":{"tf":1.0},"941":{"tf":1.0},"95":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1423":{"tf":1.0},"1611":{"tf":1.0},"268":{"tf":1.0},"278":{"tf":1.0},"550":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"n":{"df":1,"docs":{"298":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1354":{"tf":1.0},"1385":{"tf":1.0},"37":{"tf":1.0}}},"df":0,"docs":{}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"774":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1420":{"tf":1.0},"1627":{"tf":1.0},"407":{"tf":1.0},"482":{"tf":1.0},"718":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":27,"docs":{"105":{"tf":1.0},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1323":{"tf":1.0},"1377":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"771":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":18,"docs":{"103":{"tf":1.0},"112":{"tf":1.0},"1172":{"tf":1.0},"1186":{"tf":1.0},"12":{"tf":1.0},"1231":{"tf":1.0},"1255":{"tf":1.0},"1258":{"tf":1.0},"1269":{"tf":1.0},"1358":{"tf":1.0},"1428":{"tf":1.0},"1617":{"tf":1.0},"1642":{"tf":1.0},"303":{"tf":1.0},"398":{"tf":1.0},"503":{"tf":1.0},"7":{"tf":1.0},"853":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":1,"docs":{"998":{"tf":1.0}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"661":{"tf":1.0}}}}}},"df":6,"docs":{"1152":{"tf":1.0},"1188":{"tf":1.0},"1625":{"tf":1.0},"177":{"tf":1.0},"810":{"tf":1.0},"933":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"m":{"df":2,"docs":{"152":{"tf":1.0},"401":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1596":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1587":{"tf":1.0},"1589":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":7,"docs":{"1361":{"tf":1.0},"1518":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"361":{"tf":1.0},"367":{"tf":1.0},"981":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"1384":{"tf":1.0},"1609":{"tf":1.0},"760":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"388":{"tf":1.0}}}}}}}}}}}},"r":{"df":10,"docs":{"1182":{"tf":1.0},"1217":{"tf":1.0},"1256":{"tf":1.0},"1402":{"tf":1.0},"1411":{"tf":1.0},"1430":{"tf":1.0},"1453":{"tf":1.0},"239":{"tf":1.0},"490":{"tf":1.0},"726":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":21,"docs":{"1321":{"tf":1.0},"1322":{"tf":1.0},"1506":{"tf":1.0},"1601":{"tf":1.0},"1606":{"tf":1.0},"174":{"tf":1.0},"247":{"tf":1.0},"296":{"tf":1.0},"300":{"tf":1.0},"449":{"tf":1.0},"531":{"tf":1.0},"543":{"tf":1.0},"555":{"tf":1.0},"72":{"tf":1.0},"797":{"tf":1.0},"919":{"tf":1.0},"939":{"tf":1.0},"949":{"tf":1.0},"952":{"tf":1.0},"963":{"tf":1.0},"974":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"122":{"tf":1.0},"38":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"1187":{"tf":1.0},"42":{"tf":1.0},"850":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"920":{"tf":1.0}}}}}}},"s":{"df":1,"docs":{"1530":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1366":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"771":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"1511":{"tf":1.0},"1579":{"tf":1.0},"247":{"tf":1.0},"259":{"tf":1.0},"474":{"tf":1.0},"525":{"tf":1.0},"710":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"32":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1090":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":15,"docs":{"1100":{"tf":1.0},"1106":{"tf":1.0},"1112":{"tf":1.0},"1118":{"tf":1.0},"1154":{"tf":1.0},"1248":{"tf":1.0},"1513":{"tf":1.0},"187":{"tf":1.0},"308":{"tf":1.0},"368":{"tf":1.0},"563":{"tf":1.0},"834":{"tf":1.0},"859":{"tf":1.0},"885":{"tf":1.0},"914":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"405":{"tf":1.0},"635":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"427":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"778":{"tf":1.0},"779":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":1,"docs":{"739":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1206":{"tf":1.0}}}},"df":2,"docs":{"1441":{"tf":1.0},"1464":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":3,"docs":{"1046":{"tf":1.0},"1548":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":9,"docs":{"1178":{"tf":1.0},"1249":{"tf":1.0},"1259":{"tf":1.0},"1272":{"tf":1.0},"1515":{"tf":1.0},"35":{"tf":1.0},"507":{"tf":1.0},"511":{"tf":1.0},"753":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":13,"docs":{"1167":{"tf":1.0},"1236":{"tf":1.0},"1270":{"tf":1.0},"1308":{"tf":1.0},"1333":{"tf":1.0},"1447":{"tf":1.0},"1474":{"tf":1.0},"1502":{"tf":1.0},"1523":{"tf":1.0},"1608":{"tf":1.0},"510":{"tf":1.0},"514":{"tf":1.0},"809":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1343":{"tf":1.0},"549":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"1131":{"tf":1.0},"274":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1090":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1352":{"tf":1.0},"431":{"tf":1.0},"664":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"18":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"843":{"tf":1.0}}},"p":{"df":2,"docs":{"151":{"tf":1.0},"630":{"tf":1.0}},"e":{"df":1,"docs":{"1608":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1311":{"tf":1.0},"1609":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1079":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":4,"docs":{"143":{"tf":1.0},"1641":{"tf":1.0},"1643":{"tf":1.0},"176":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"632":{"tf":1.0},"660":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1368":{"tf":1.0},"3":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":4,"docs":{"1048":{"tf":1.0},"1267":{"tf":1.0},"1289":{"tf":1.0},"132":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1095":{"tf":1.0},"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1117":{"tf":1.0},"424":{"tf":1.0},"652":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1111":{"tf":1.0},"423":{"tf":1.0},"651":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":10,"docs":{"1034":{"tf":1.0},"1044":{"tf":1.0},"1092":{"tf":1.0},"1158":{"tf":1.0},"1242":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.0},"305":{"tf":1.0},"326":{"tf":1.0},"390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1094":{"tf":1.0}},"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":{"1314":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"995":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1075":{"tf":1.0},"1241":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1331":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1546":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"17":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1655":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1003":{"tf":1.0},"1074":{"tf":1.0},"1076":{"tf":1.0},"1418":{"tf":1.0},"1469":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1012":{"tf":1.0},"1052":{"tf":1.0},"1282":{"tf":1.0},"1525":{"tf":1.0},"392":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"641":{"tf":1.0},"744":{"tf":1.0},"806":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"654":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1167":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1245":{"tf":1.0},"838":{"tf":1.0},"889":{"tf":1.0},"917":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1001":{"tf":1.0},"1008":{"tf":1.0},"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1193":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"534":{"tf":1.0}}}},"i":{"d":{"df":3,"docs":{"1201":{"tf":1.0},"1202":{"tf":1.0},"312":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"1191":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"781":{"tf":1.0},"787":{"tf":1.0}}}}}},"df":2,"docs":{"1388":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"118":{"tf":1.0},"310":{"tf":1.0},"46":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1622":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"926":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"102":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"1171":{"tf":1.0},"1185":{"tf":1.0},"1230":{"tf":1.0},"1254":{"tf":1.0},"1257":{"tf":1.0},"1268":{"tf":1.0},"1357":{"tf":1.0},"1451":{"tf":1.0},"1642":{"tf":1.0},"302":{"tf":1.0},"6":{"tf":1.0},"627":{"tf":1.0},"640":{"tf":1.0},"746":{"tf":1.0},"852":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1140":{"tf":1.0},"1640":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"775":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":17,"docs":{"1062":{"tf":1.0},"1303":{"tf":1.0},"131":{"tf":1.0},"1398":{"tf":1.0},"140":{"tf":1.0},"189":{"tf":1.0},"217":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"9":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"675":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"441":{"tf":1.0}}}}}},"df":4,"docs":{"1273":{"tf":1.0},"1485":{"tf":1.0},"522":{"tf":1.0},"538":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1207":{"tf":1.0},"1373":{"tf":1.0},"298":{"tf":1.0}}}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1235":{"tf":1.0}}}},"t":{"df":1,"docs":{"989":{"tf":1.0}}},"w":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"1176":{"tf":1.0},"1360":{"tf":1.0},"193":{"tf":1.0}},"i":{"df":1,"docs":{"1252":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"686":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1203":{"tf":1.0},"1240":{"tf":1.0},"1384":{"tf":1.0},"168":{"tf":1.0},"217":{"tf":1.0},"38":{"tf":1.0},"407":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1086":{"tf":1.0},"1087":{"tf":1.0},"1174":{"tf":1.0},"118":{"tf":1.0},"1557":{"tf":1.0},"313":{"tf":1.0},"329":{"tf":1.0},"380":{"tf":1.0},"534":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1057":{"tf":1.0},"1066":{"tf":1.0}}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"685":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1060":{"tf":1.0},"1303":{"tf":1.0},"1362":{"tf":1.0},"1398":{"tf":1.0},"1482":{"tf":1.0},"1512":{"tf":1.0},"1598":{"tf":1.0},"253":{"tf":1.0},"440":{"tf":1.0},"575":{"tf":1.0},"590":{"tf":1.0},"674":{"tf":1.0},"765":{"tf":1.0},"830":{"tf":1.0},"921":{"tf":1.0},"940":{"tf":1.0},"953":{"tf":1.0},"968":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1256":{"tf":1.0},"1330":{"tf":1.0},"508":{"tf":1.0},"751":{"tf":1.0}},"r":{"df":1,"docs":{"866":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1162":{"tf":1.0},"1260":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"892":{"tf":1.0},"900":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1632":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1285":{"tf":1.0}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1619":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":3,"docs":{"1017":{"tf":1.0},"546":{"tf":1.0},"557":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":5,"docs":{"1259":{"tf":1.0},"1272":{"tf":1.0},"511":{"tf":1.0},"519":{"tf":1.0},"753":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"998":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"1038":{"tf":1.0},"1221":{"tf":1.0},"494":{"tf":1.0},"565":{"tf":1.0},"572":{"tf":1.0},"730":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1039":{"tf":1.0},"1575":{"tf":1.0},"495":{"tf":1.0},"545":{"tf":1.0},"731":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"1068":{"tf":1.0},"145":{"tf":1.0},"1528":{"tf":1.0},"1548":{"tf":1.0},"1558":{"tf":1.0},"165":{"tf":1.0},"249":{"tf":1.0},"322":{"tf":1.0},"399":{"tf":1.0},"54":{"tf":1.0},"628":{"tf":1.0},"827":{"tf":1.0},"837":{"tf":1.0},"918":{"tf":1.0},"937":{"tf":1.0},"948":{"tf":1.0},"951":{"tf":1.0},"962":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"655":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"389":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1074":{"tf":1.0},"122":{"tf":1.0},"1514":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":7,"docs":{"1040":{"tf":1.0},"1576":{"tf":1.0},"289":{"tf":1.0},"496":{"tf":1.0},"547":{"tf":1.0},"558":{"tf":1.0},"732":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"1386":{"tf":1.0},"1584":{"tf":1.0},"1585":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1165":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"o":{"c":{"df":1,"docs":{"1089":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1099":{"tf":1.0},"421":{"tf":1.0},"649":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1447":{"tf":1.0},"1474":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"621":{"tf":1.0},"622":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1655":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"1009":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1343":{"tf":1.0},"314":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"a":{"df":3,"docs":{"1105":{"tf":1.0},"422":{"tf":1.0},"650":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1061":{"tf":1.0},"1355":{"tf":1.0},"1481":{"tf":1.0},"826":{"tf":1.0},"910":{"tf":1.0}}}},"n":{"df":1,"docs":{"44":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1250":{"tf":1.0},"1271":{"tf":1.0},"158":{"tf":1.0},"1629":{"tf":1.0},"183":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1147":{"tf":1.0}}}}}},"t":{"df":13,"docs":{"10":{"tf":1.0},"1229":{"tf":1.0},"1235":{"tf":1.0},"166":{"tf":1.0},"334":{"tf":1.0},"367":{"tf":1.0},"5":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"927":{"tf":1.0},"943":{"tf":1.0},"956":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"3":{"df":3,"docs":{"1572":{"tf":1.0},"1637":{"tf":1.0},"1638":{"tf":1.0}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"364":{"tf":1.0},"801":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1275":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"385":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"350":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1187":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1093":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":54,"docs":{"1153":{"tf":1.0},"1155":{"tf":1.0},"1158":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1505":{"tf":1.0},"1562":{"tf":1.0},"246":{"tf":1.0},"257":{"tf":1.0},"355":{"tf":1.0},"473":{"tf":1.0},"709":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"821":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"842":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0},"884":{"tf":1.0},"886":{"tf":1.0},"894":{"tf":1.0},"895":{"tf":1.0},"912":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"978":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"988":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1417":{"tf":1.0},"1608":{"tf":1.0},"1610":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":4,"docs":{"1350":{"tf":1.0},"1391":{"tf":1.0},"521":{"tf":1.0},"763":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1134":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":33,"docs":{"1013":{"tf":1.0},"1025":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"1088":{"tf":1.0},"1091":{"tf":1.0},"1132":{"tf":1.0},"1188":{"tf":1.0},"1199":{"tf":1.0},"1245":{"tf":1.0},"1253":{"tf":1.0},"1537":{"tf":1.0},"237":{"tf":1.0},"273":{"tf":1.0},"324":{"tf":1.0},"40":{"tf":1.0},"584":{"tf":1.0},"64":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"933":{"tf":1.0},"980":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":27,"docs":{"1063":{"tf":1.0},"1096":{"tf":1.0},"1136":{"tf":1.0},"1181":{"tf":1.0},"1204":{"tf":1.0},"1211":{"tf":1.0},"1247":{"tf":1.0},"1396":{"tf":1.0},"1427":{"tf":1.0},"1450":{"tf":1.0},"1475":{"tf":1.0},"1583":{"tf":1.0},"1614":{"tf":1.0},"1656":{"tf":1.0},"465":{"tf":1.0},"626":{"tf":1.0},"702":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"856":{"tf":1.0},"882":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"945":{"tf":1.0},"958":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1043":{"tf":1.0},"1123":{"tf":1.0},"1137":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1176":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1220":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1597":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1265":{"tf":1.0},"1281":{"tf":1.0},"1283":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"582":{"tf":1.0}}}},"df":18,"docs":{"1252":{"tf":1.0},"1434":{"tf":1.0},"1435":{"tf":1.0},"1438":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"1461":{"tf":1.0},"1649":{"tf":1.0},"172":{"tf":1.0},"190":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"562":{"tf":1.0},"569":{"tf":1.0},"573":{"tf":1.0},"582":{"tf":1.0},"749":{"tf":1.0},"80":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"223":{"tf":1.0},"224":{"tf":1.0},"46":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1021":{"tf":1.0},"1529":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":17,"docs":{"1214":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1429":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1472":{"tf":1.0},"388":{"tf":1.0},"425":{"tf":1.0},"427":{"tf":1.0},"653":{"tf":1.0},"655":{"tf":1.0},"657":{"tf":1.0},"661":{"tf":1.0},"668":{"tf":1.0},"81":{"tf":1.0},"92":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1643":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1594":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"1056":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1381":{"tf":1.0}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"680":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"1003":{"tf":1.0},"1014":{"tf":1.0},"1016":{"tf":1.0},"1073":{"tf":1.0},"1078":{"tf":1.0},"1128":{"tf":1.0},"1208":{"tf":1.0},"1319":{"tf":1.0},"1374":{"tf":1.0},"1387":{"tf":1.0},"1550":{"tf":1.0},"1552":{"tf":1.0},"1553":{"tf":1.0},"160":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"66":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"865":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"781":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"773":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1597":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":70,"docs":{"1004":{"tf":1.0},"1039":{"tf":1.0},"106":{"tf":1.0},"1206":{"tf":1.0},"1210":{"tf":1.0},"1221":{"tf":1.0},"124":{"tf":1.0},"1266":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1307":{"tf":1.0},"1316":{"tf":1.0},"1346":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"1389":{"tf":1.0},"1409":{"tf":1.0},"1431":{"tf":1.0},"1442":{"tf":1.0},"1454":{"tf":1.0},"1465":{"tf":1.0},"1554":{"tf":1.0},"1567":{"tf":1.0},"1582":{"tf":1.0},"209":{"tf":1.0},"269":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"298":{"tf":1.0},"352":{"tf":1.0},"353":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"483":{"tf":1.0},"484":{"tf":1.0},"488":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"516":{"tf":1.0},"525":{"tf":1.0},"533":{"tf":1.0},"541":{"tf":1.0},"547":{"tf":1.0},"548":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"724":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"739":{"tf":1.0},"805":{"tf":1.0},"84":{"tf":1.0},"907":{"tf":1.0},"926":{"tf":1.0},"929":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0}},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"459":{"tf":1.0},"695":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"447":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"446":{"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":1,"docs":{"987":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"1445":{"tf":1.0},"1468":{"tf":1.0},"406":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"1621":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"671":{"tf":1.0},"673":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"986":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1059":{"tf":1.0}}}},"v":{"df":1,"docs":{"17":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"148":{"tf":1.0},"162":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"386":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"1533":{"tf":1.0},"232":{"tf":1.0},"312":{"tf":1.0},"479":{"tf":1.0},"715":{"tf":1.0},"840":{"tf":1.0},"891":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"1370":{"tf":1.0}}}}}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"1147":{"tf":1.0},"417":{"tf":1.0},"645":{"tf":1.0}}}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"110":{"tf":1.0},"114":{"tf":1.0}}}}},"r":{"d":{"df":3,"docs":{"0":{"tf":1.0},"21":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"761":{"tf":1.0}}}}}},"t":{"df":16,"docs":{"1":{"tf":1.0},"1399":{"tf":1.0},"189":{"tf":1.0},"36":{"tf":1.0},"370":{"tf":1.0},"438":{"tf":1.0},"526":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"672":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"803":{"tf":1.0},"897":{"tf":1.0},"9":{"tf":1.0},"907":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":7,"docs":{"887":{"tf":1.0},"888":{"tf":1.0},"910":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"923":{"tf":1.0},"928":{"tf":1.0}}},"u":{"df":8,"docs":{"1083":{"tf":1.0},"1443":{"tf":1.0},"1466":{"tf":1.0},"290":{"tf":1.0},"323":{"tf":1.0},"489":{"tf":1.0},"725":{"tf":1.0},"938":{"tf":1.0}}}},"y":{"df":1,"docs":{"1275":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":38,"docs":{"105":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1284":{"tf":1.0},"1291":{"tf":1.0},"1300":{"tf":1.0},"1311":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1385":{"tf":1.0},"1623":{"tf":1.0},"1635":{"tf":1.0},"184":{"tf":1.0},"213":{"tf":1.0},"240":{"tf":1.0},"279":{"tf":1.0},"306":{"tf":1.0},"333":{"tf":1.0},"34":{"tf":1.0},"366":{"tf":1.0},"397":{"tf":1.0},"434":{"tf":1.0},"502":{"tf":1.0},"536":{"tf":1.0},"552":{"tf":1.0},"561":{"tf":1.0},"589":{"tf":1.0},"669":{"tf":1.0},"745":{"tf":1.0},"75":{"tf":1.0},"95":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1045":{"tf":1.0},"1144":{"tf":1.0},"1531":{"tf":1.0},"1532":{"tf":1.0},"1534":{"tf":1.0},"1538":{"tf":1.0},"1570":{"tf":1.0},"1571":{"tf":1.0},"1636":{"tf":1.0},"1647":{"tf":1.0},"229":{"tf":1.0},"362":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"643":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1030":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"1180":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1389":{"tf":1.0},"532":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1391":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":5,"docs":{"1219":{"tf":1.0},"1352":{"tf":1.0},"343":{"tf":1.0},"518":{"tf":1.0},"535":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"498":{"tf":1.0},"734":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":22,"docs":{"1036":{"tf":1.0},"1073":{"tf":1.0},"1082":{"tf":1.0},"1128":{"tf":1.0},"1156":{"tf":1.0},"1362":{"tf":1.0},"1585":{"tf":1.0},"235":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"292":{"tf":1.0},"313":{"tf":1.0},"405":{"tf":1.0},"426":{"tf":1.0},"53":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"635":{"tf":1.0},"654":{"tf":1.0},"835":{"tf":1.0},"886":{"tf":1.0},"915":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"901":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"126":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1388":{"tf":1.0},"1619":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1055":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":12,"docs":{"1042":{"tf":1.0},"1085":{"tf":1.0},"1098":{"tf":1.0},"1138":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"176":{"tf":1.0},"410":{"tf":1.0},"623":{"tf":1.0},"65":{"tf":1.0},"667":{"tf":1.0},"747":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1622":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"1600":{"tf":1.0},"1604":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1312":{"tf":1.0},"416":{"tf":1.0},"644":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1630":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1208":{"tf":1.0},"1209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1241":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":26,"docs":{"1346":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"293":{"tf":1.0},"351":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"883":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"891":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"905":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":28,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1223":{"tf":1.0},"1224":{"tf":1.0},"1228":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1329":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1471":{"tf":1.0},"1582":{"tf":1.0},"419":{"tf":1.0},"647":{"tf":1.0},"668":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"1320":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1620":{"tf":1.0},"364":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"801":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1000":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"135":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"20":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1481":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"1588":{"tf":1.0},"1589":{"tf":1.0},"1590":{"tf":1.0},"1591":{"tf":1.0},"1592":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1400":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1372":{"tf":1.0},"1559":{"tf":1.0},"297":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1014":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1578":{"tf":1.0}}}},"l":{"df":1,"docs":{"1010":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"946":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":15,"docs":{"1189":{"tf":1.0},"1240":{"tf":1.0},"1256":{"tf":1.0},"1338":{"tf":1.0},"1349":{"tf":1.0},"304":{"tf":1.0},"40":{"tf":1.0},"508":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"533":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.0},"930":{"tf":1.0},"992":{"tf":1.0}},"n":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1586":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"986":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1521":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"396":{"tf":1.0}}},"k":{"df":3,"docs":{"1376":{"tf":1.0},"277":{"tf":1.0},"920":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1295":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.0}}},"t":{"df":1,"docs":{"1380":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1078":{"tf":1.0},"888":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1227":{"tf":1.0},"1253":{"tf":1.0},"505":{"tf":1.0},"71":{"tf":1.0},"73":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"1302":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"1058":{"tf":1.0},"1279":{"tf":1.0},"149":{"tf":1.0},"1593":{"tf":1.0},"1652":{"tf":1.0},"181":{"tf":1.0},"328":{"tf":1.0},"393":{"tf":1.0},"99":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"1594":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":21,"docs":{"1002":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1033":{"tf":1.0},"1081":{"tf":1.0},"1182":{"tf":1.0},"1196":{"tf":1.0},"1267":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.0},"325":{"tf":1.0},"810":{"tf":1.0},"990":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1082":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1236":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"690":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"454":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1313":{"tf":1.0},"185":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":3,"docs":{"1220":{"tf":1.0},"1385":{"tf":1.0},"528":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":14,"docs":{"1298":{"tf":1.0},"220":{"tf":1.0},"263":{"tf":1.0},"337":{"tf":1.0},"457":{"tf":1.0},"55":{"tf":1.0},"585":{"tf":1.0},"63":{"tf":1.0},"667":{"tf":1.0},"693":{"tf":1.0},"800":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"103":{"tf":1.0},"410":{"tf":1.0},"433":{"tf":1.0},"623":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1425":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1645":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"1216":{"tf":1.0},"895":{"tf":1.0}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1554":{"tf":1.0},"270":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1405":{"tf":1.0},"1433":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"203":{"tf":1.0},"234":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"348":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"492":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"728":{"tf":1.0},"879":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"687":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"688":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"451":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"452":{"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":6,"docs":{"1084":{"tf":1.0},"119":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"318":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"1061":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"466":{"tf":1.0},"567":{"tf":1.0},"703":{"tf":1.0}}}},"df":50,"docs":{"1103":{"tf":1.0},"1109":{"tf":1.0},"1115":{"tf":1.0},"1121":{"tf":1.0},"1125":{"tf":1.0},"1159":{"tf":1.0},"1161":{"tf":1.0},"1195":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"133":{"tf":1.0},"1339":{"tf":1.0},"1353":{"tf":1.0},"1422":{"tf":1.0},"173":{"tf":1.0},"280":{"tf":1.0},"301":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"376":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"439":{"tf":1.0},"512":{"tf":1.0},"520":{"tf":1.0},"528":{"tf":1.0},"568":{"tf":1.0},"570":{"tf":1.0},"574":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"673":{"tf":1.0},"752":{"tf":1.0},"754":{"tf":1.0},"764":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"818":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"497":{"tf":1.0},"614":{"tf":1.0},"733":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"89":{"tf":1.0},"994":{"tf":1.0}}},"2":{"df":1,"docs":{"296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{"df":3,"docs":{"437":{"tf":1.0},"467":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1620":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1010":{"tf":1.0},"1014":{"tf":1.0},"1161":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1172":{"tf":1.0},"1505":{"tf":1.0},"1556":{"tf":1.0},"1562":{"tf":1.0},"1594":{"tf":1.0},"1610":{"tf":1.0},"320":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"821":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1083":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":14,"docs":{"1234":{"tf":1.0},"1422":{"tf":1.0},"1508":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1613":{"tf":1.0},"1626":{"tf":1.0},"1627":{"tf":1.0},"180":{"tf":1.0},"207":{"tf":1.0},"414":{"tf":1.0},"642":{"tf":1.0},"743":{"tf":1.0},"982":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1200":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1374":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"658":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1579":{"tf":1.0},"259":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1391":{"tf":1.0},"521":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":39,"docs":{"1019":{"tf":1.0},"1021":{"tf":1.0},"1026":{"tf":1.0},"1040":{"tf":1.0},"1048":{"tf":1.0},"1053":{"tf":1.0},"1058":{"tf":1.0},"1072":{"tf":1.0},"1141":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"1312":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1364":{"tf":1.0},"1378":{"tf":1.0},"1414":{"tf":1.0},"1419":{"tf":1.0},"1551":{"tf":1.0},"1555":{"tf":1.0},"1575":{"tf":1.0},"1576":{"tf":1.0},"1584":{"tf":1.0},"1590":{"tf":1.0},"160":{"tf":1.0},"1654":{"tf":1.0},"233":{"tf":1.0},"256":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"352":{"tf":1.0},"354":{"tf":1.0},"483":{"tf":1.0},"51":{"tf":1.0},"719":{"tf":1.0},"846":{"tf":1.0},"929":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"460":{"tf":1.0},"696":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":56,"docs":{"1005":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"1266":{"tf":1.0},"1293":{"tf":1.0},"1296":{"tf":1.0},"1318":{"tf":1.0},"1351":{"tf":1.0},"1383":{"tf":1.0},"1401":{"tf":1.0},"1404":{"tf":1.0},"1432":{"tf":1.0},"1455":{"tf":1.0},"1486":{"tf":1.0},"1499":{"tf":1.0},"1514":{"tf":1.0},"1581":{"tf":1.0},"1603":{"tf":1.0},"1609":{"tf":1.0},"1611":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"196":{"tf":1.0},"204":{"tf":1.0},"211":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"270":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"349":{"tf":1.0},"404":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"485":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"545":{"tf":1.0},"634":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"721":{"tf":1.0},"727":{"tf":1.0},"732":{"tf":1.0},"805":{"tf":1.0},"855":{"tf":1.0},"878":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"682":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"448":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1592":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1591":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"684":{"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":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1327":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"679":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"51":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"683":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"445":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1081":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"145":{"tf":1.0},"1484":{"tf":1.0},"1564":{"tf":1.0},"1616":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"823":{"tf":1.0},"862":{"tf":1.0},"881":{"tf":1.0},"944":{"tf":1.0},"957":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"657":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":14,"docs":{"1061":{"tf":1.0},"1189":{"tf":1.0},"124":{"tf":1.0},"1301":{"tf":1.0},"132":{"tf":1.0},"1352":{"tf":1.0},"253":{"tf":1.0},"51":{"tf":1.0},"984":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1629":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1420":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{},"e":{"b":{"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":{"177":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1323":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"110":{"tf":1.0},"114":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"475":{"tf":1.0},"711":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1015":{"tf":1.0},"1027":{"tf":1.0},"1183":{"tf":1.0},"1197":{"tf":1.0},"1390":{"tf":1.0},"1504":{"tf":1.0},"241":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"344":{"tf":1.0},"486":{"tf":1.0},"556":{"tf":1.0},"722":{"tf":1.0},"738":{"tf":1.0},"876":{"tf":1.0},"908":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":12,"docs":{"1313":{"tf":1.0},"1356":{"tf":1.0},"1407":{"tf":1.0},"1410":{"tf":1.0},"1505":{"tf":1.0},"208":{"tf":1.0},"275":{"tf":1.0},"294":{"tf":1.0},"30":{"tf":1.0},"44":{"tf":1.0},"904":{"tf":1.0},"95":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"28":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"505":{"tf":1.0},"760":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1324":{"tf":1.0}}}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"402":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}}},"z":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":2,"docs":{"1515":{"tf":1.0},"77":{"tf":1.0}}}}}}}}},"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/jacs/docs/jacsbook/src/advanced/security.md b/jacs/docs/jacsbook/src/advanced/security.md index 9735370d..080dceac 100644 --- a/jacs/docs/jacsbook/src/advanced/security.md +++ b/jacs/docs/jacsbook/src/advanced/security.md @@ -171,7 +171,7 @@ Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC- export JACS_PRIVATE_KEY_PASSWORD="secure-password" # Option 2: OS keychain (recommended for developer workstations) -jacs keychain set +jacs keychain set --agent-id ``` > **Important**: The CLI can prompt for the password during `jacs init`, but scripts and servers must set `JACS_PRIVATE_KEY_PASSWORD` as an environment variable or use the OS keychain. @@ -183,11 +183,11 @@ On macOS and Linux desktops, JACS can store and retrieve the private key passwor - **macOS**: Uses Security.framework (Keychain Access) - **Linux**: Uses the freedesktop.org D-Bus Secret Service API (GNOME Keyring, KDE Wallet, KeePassXC) -Store your password once with `jacs keychain set`, and all subsequent JACS operations will find it automatically. The password resolution order is: +Each password is keyed by agent ID, so multiple agents can coexist on the same machine without overwriting each other. Store your password once with `jacs keychain set --agent-id `, and all subsequent JACS operations will find it automatically. The password resolution order is: 1. `JACS_PRIVATE_KEY_PASSWORD` env var (highest priority -- explicit always wins) 2. `JACS_PASSWORD_FILE` / legacy `.jacs_password` file -3. OS keychain (lowest priority among explicit sources) +3. OS keychain keyed by agent ID (lowest priority among explicit sources) To disable keychain lookups (recommended for CI and headless environments): @@ -564,7 +564,7 @@ chmod 600 ./jacs_keys/private.pem export JACS_PRIVATE_KEY_PASSWORD="$(pass show jacs/key-password)" # Option B: Use OS keychain (developer workstations) -jacs keychain set # stores password securely in OS credential store +jacs keychain set --agent-id # stores password securely in OS credential store # Option C: Disable keychain for headless/CI environments export JACS_KEYCHAIN_BACKEND=disabled diff --git a/jacs/docs/jacsbook/src/getting-started/quick-start.md b/jacs/docs/jacsbook/src/getting-started/quick-start.md index 8e1ed12b..d938ef2f 100644 --- a/jacs/docs/jacsbook/src/getting-started/quick-start.md +++ b/jacs/docs/jacsbook/src/getting-started/quick-start.md @@ -15,7 +15,7 @@ Rust CLI quickstart requires a password source. Choose one: export JACS_PRIVATE_KEY_PASSWORD='use-a-strong-password' # Option B: OS keychain (recommended for developer workstations) -jacs keychain set # prompts once, then all JACS commands find the password automatically +jacs keychain set --agent-id # prompts once, then JACS finds the password automatically # Option C: Password file (CLI convenience) export JACS_PASSWORD_FILE=/secure/path/jacs-password.txt diff --git a/jacs/docs/jacsbook/src/reference/cli-commands.md b/jacs/docs/jacsbook/src/reference/cli-commands.md index b993226a..28745800 100644 --- a/jacs/docs/jacsbook/src/reference/cli-commands.md +++ b/jacs/docs/jacsbook/src/reference/cli-commands.md @@ -87,37 +87,39 @@ Manage private key passwords in the OS keychain (macOS Keychain or Linux Secret > Requires the `keychain` feature (enabled by default in `jacs-cli`). > Set `JACS_KEYCHAIN_BACKEND=disabled` to skip keychain lookups in CI/headless environments. +Every keychain command requires `--agent-id` so that each agent's password is stored separately. This prevents collisions when multiple agents coexist on the same machine. + ```bash # Store a password interactively (prompts for input) -jacs keychain set +jacs keychain set --agent-id # Store a password non-interactively (for scripting) -jacs keychain set --password "YourStr0ng!Pass#Here" +jacs keychain set --agent-id --password "YourStr0ng!Pass#Here" # Retrieve the stored password (prints to stdout, for piping) -export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get) +export JACS_PRIVATE_KEY_PASSWORD=$(jacs keychain get --agent-id ) # Remove the stored password -jacs keychain delete +jacs keychain delete --agent-id # Check keychain availability and whether a password is stored -jacs keychain status +jacs keychain status --agent-id ``` | Subcommand | Description | |------------|-------------| -| `jacs keychain set` | Store a password (prompts interactively) | -| `jacs keychain set --password ` | Store a specific password (for scripting) | -| `jacs keychain get` | Print stored password to stdout | -| `jacs keychain delete` | Remove stored password from OS keychain | -| `jacs keychain status` | Check keychain availability and storage state | +| `jacs keychain set --agent-id ` | Store a password for an agent (prompts interactively) | +| `jacs keychain set --agent-id --password ` | Store a specific password (for scripting) | +| `jacs keychain get --agent-id ` | Print stored password to stdout | +| `jacs keychain delete --agent-id ` | Remove stored password from OS keychain | +| `jacs keychain status --agent-id ` | Check keychain availability and storage state | **Output conventions:** Human-friendly messages go to stderr; machine-friendly data goes to stdout. This means `jacs keychain get` output can be safely piped or captured in a variable. **Password resolution order:** When JACS needs the private key password, it checks sources in this order: 1. `JACS_PRIVATE_KEY_PASSWORD` environment variable (highest priority) 2. `JACS_PASSWORD_FILE` / legacy `.jacs_password` file -3. OS keychain (if `keychain` feature is enabled and not disabled) +3. OS keychain keyed by agent ID (if `keychain` feature is enabled and not disabled) ### `jacs init` Initialize JACS by creating both configuration and agent (with cryptographic keys). Use this for persistent agent setup. diff --git a/jacs/src/agent/loaders.rs b/jacs/src/agent/loaders.rs index a6fdc007..01837d3f 100644 --- a/jacs/src/agent/loaders.rs +++ b/jacs/src/agent/loaders.rs @@ -160,7 +160,11 @@ impl FileLoader for Agent { let binding = self.get_private_key()?; let borrowed_key = binding.expose_secret(); // Use secure decryption - ZeroizingVec will be zeroized when it goes out of scope - let key_vec = super::decrypt_with_agent_password(borrowed_key, self.password.as_deref())?; + let key_vec = super::decrypt_with_agent_password( + borrowed_key, + self.password.as_deref(), + self.id.as_deref(), + )?; self.save_private_key(&absolute_private_key_path, key_vec.as_slice())?; @@ -591,7 +595,7 @@ impl FileLoader for Agent { })?; if filename.ends_with(".enc") { // Use secure decryption - the ZeroizingVec will be zeroized after we extract the bytes - let decrypted = super::decrypt_with_agent_password(&loaded_key, self.password.as_deref()).map_err(|e| { + let decrypted = super::decrypt_with_agent_password(&loaded_key, self.password.as_deref(), self.id.as_deref()).map_err(|e| { format!( "Failed to decrypt private key from '{}': {}. \ Verify that JACS_PRIVATE_KEY_PASSWORD is set to the correct password used during key generation.", @@ -614,14 +618,16 @@ impl FileLoader for Agent { ) -> Result { // SECURITY: Require encryption password. Never write private keys unencrypted. // Use agent-scoped password if available, otherwise resolve from env/jenv/keychain. - let resolved_pw = - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref()) - .map_err(|_| { - JacsError::from( - "SECURITY: Refusing to save private key without encryption. \ + let resolved_pw = crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + self.id.as_deref(), + ) + .map_err(|_| { + JacsError::from( + "SECURITY: Refusing to save private key without encryption. \ Set JACS_PRIVATE_KEY_PASSWORD, JACS_PASSWORD_FILE, or configure OS keychain.", - ) - })?; + ) + })?; let encrypted_key = crate::crypt::aes_encrypt::encrypt_private_key_with_password( private_key, diff --git a/jacs/src/agent/mod.rs b/jacs/src/agent/mod.rs index 66872440..97602dc3 100644 --- a/jacs/src/agent/mod.rs +++ b/jacs/src/agent/mod.rs @@ -234,8 +234,9 @@ pub type SecretPrivateKey = SecretBox>; pub(crate) fn decrypt_with_agent_password( key: &[u8], password: Option<&str>, + agent_id: Option<&str>, ) -> Result { - let resolved = crate::crypt::aes_encrypt::resolve_private_key_password(password)?; + let resolved = crate::crypt::aes_encrypt::resolve_private_key_password(password, agent_id)?; crate::crypt::aes_encrypt::decrypt_private_key_secure_with_password(key, &resolved) } @@ -255,7 +256,7 @@ pub struct Agent { /// the resolver might ahve trouble TEST document_schemas: Arc>>, /// everything needed for the agent to sign things - id: Option, + pub(crate) id: Option, version: Option, public_key: Option>, private_key: Option, @@ -632,7 +633,10 @@ impl Agent { /// Resolve the private key password using the agent-scoped password if available, /// falling back to env/jenv/keychain. pub fn resolve_password(&self) -> Result { - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref()) + crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + self.id.as_deref(), + ) } /// Build an `FsEncryptedStore` from the agent's `key_paths` and `password`. @@ -918,8 +922,10 @@ impl Agent { public_key: Vec, key_algorithm: &str, ) -> Result<(), JacsError> { - let resolved_pw = - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref())?; + let resolved_pw = crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + self.id.as_deref(), + )?; let private_key_encrypted = crate::crypt::aes_encrypt::encrypt_private_key_with_password( &private_key, &resolved_pw, diff --git a/jacs/src/cli_utils/create.rs b/jacs/src/cli_utils/create.rs index ef23af80..1563467a 100644 --- a/jacs/src/cli_utils/create.rs +++ b/jacs/src/cli_utils/create.rs @@ -121,11 +121,8 @@ fn resolve_cli_password_for_config_create() -> Result, JacsError> return Ok(Some(password)); } - // Try OS keychain as a fallback - if let Ok(Some(pw)) = crate::keystore::keychain::get_password() { - println!("Using password from OS keychain."); - return Ok(Some(pw)); - } + // Note: OS keychain lookup requires an agent_id and is handled at agent + // creation time, not during config creation. Ok(None) } @@ -259,22 +256,8 @@ pub fn handle_config_create() -> Result<(), JacsError> { } }; - // Store the password in the OS keychain when available so future - // operations "just work" without env vars or password files. - if crate::keystore::keychain::is_available() { - match crate::keystore::keychain::store_password(&jacs_private_key_password) { - Ok(()) => { - println!("Password stored in OS keychain."); - } - Err(e) => { - eprintln!( - "Warning: Could not store password in OS keychain: {}. \ - You will need to set JACS_PRIVATE_KEY_PASSWORD for future operations.", - e - ); - } - } - } + // Note: keychain storage is deferred to agent creation, which has + // the agent_id needed for per-agent keychain entries. let jacs_use_security = request_string("Use experimental security features", "false"); let jacs_data_directory = request_string("Directory for data storage", "./jacs"); diff --git a/jacs/src/crypt/aes_encrypt.rs b/jacs/src/crypt/aes_encrypt.rs index 2ac9fa10..5d4ec5e2 100644 --- a/jacs/src/crypt/aes_encrypt.rs +++ b/jacs/src/crypt/aes_encrypt.rs @@ -310,7 +310,7 @@ fn derive_key_from_password(password: &str, salt: &[u8]) -> [u8; AES_256_KEY_SIZ /// 0. `explicit_password` parameter (agent-scoped, no global state) /// 1. `JACS_PRIVATE_KEY_PASSWORD` environment variable /// 2. `JACS_PASSWORD_FILE` env var or legacy `./jacs_keys/.jacs_password` file -/// 3. OS keychain (if `keychain` feature is enabled and not disabled via config/env) +/// 3. OS keychain keyed by `agent_id` (if provided, feature enabled, and not disabled) /// 4. Error with helpful message /// /// This is the single source of truth for password resolution. All encryption/decryption @@ -320,7 +320,14 @@ fn derive_key_from_password(password: &str, salt: &[u8]) -> [u8; AES_256_KEY_SIZ /// when an `Agent` carries a password, it passes `Some(&pw)` and the resolver /// returns it immediately without touching env/jenv. This is what makes /// concurrent multi-agent usage safe. -pub fn resolve_private_key_password(explicit_password: Option<&str>) -> Result { +/// +/// The `agent_id` parameter is required for keychain lookup. When `None`, +/// the keychain step is skipped (callers without an agent context won't +/// accidentally collide on a shared "default" entry). +pub fn resolve_private_key_password( + explicit_password: Option<&str>, + agent_id: Option<&str>, +) -> Result { // 0. Explicit password (highest priority — agent-scoped, no global state) if let Some(pw) = explicit_password { if pw.trim().is_empty() { @@ -377,11 +384,13 @@ pub fn resolve_private_key_password(explicit_password: Option<&str>) -> Result) -> Result` to store in OS keychain" .to_string(), )) } @@ -415,7 +424,7 @@ fn is_keychain_disabled() -> bool { /// The password is resolved via `resolve_private_key_password()` which checks /// the env var, OS keychain, and password file in priority order. pub fn encrypt_private_key(private_key: &[u8]) -> Result, JacsError> { - let password = resolve_private_key_password(None)?; + let password = resolve_private_key_password(None, None)?; encrypt_private_key_with_password(private_key, &password) } @@ -513,7 +522,7 @@ pub fn decrypt_private_key(encrypted_key_with_salt_and_nonce: &[u8]) -> Result Result { - let password = resolve_private_key_password(None)?; + let password = resolve_private_key_password(None, None)?; decrypt_private_key_secure_with_password(encrypted_key_with_salt_and_nonce, &password) } @@ -1466,7 +1475,7 @@ mod tests { #[test] fn test_resolve_password_explicit_override() { // Explicit password should be returned directly, no env needed - let result = resolve_private_key_password(Some("explicit_pass")).unwrap(); + let result = resolve_private_key_password(Some("explicit_pass"), None).unwrap(); assert_eq!(result, "explicit_pass"); } @@ -1476,7 +1485,7 @@ mod tests { use crate::storage::jenv::set_env_var; set_env_var("JACS_PRIVATE_KEY_PASSWORD", "env_pass").unwrap(); - let result = resolve_private_key_password(Some("explicit_pass")).unwrap(); + let result = resolve_private_key_password(Some("explicit_pass"), None).unwrap(); assert_eq!(result, "explicit_pass", "explicit should win over env"); let _ = crate::storage::jenv::clear_env_var("JACS_PRIVATE_KEY_PASSWORD"); @@ -1488,7 +1497,7 @@ mod tests { use crate::storage::jenv::set_env_var; set_env_var("JACS_PRIVATE_KEY_PASSWORD", "env_pass").unwrap(); - let result = resolve_private_key_password(None).unwrap(); + let result = resolve_private_key_password(None, None).unwrap(); assert_eq!(result, "env_pass", "None should fall back to env"); let _ = crate::storage::jenv::clear_env_var("JACS_PRIVATE_KEY_PASSWORD"); @@ -1496,7 +1505,7 @@ mod tests { #[test] fn test_resolve_password_explicit_empty_fails() { - let result = resolve_private_key_password(Some("")); + let result = resolve_private_key_password(Some(""), None); assert!(result.is_err(), "empty explicit password should fail"); let err = result.unwrap_err().to_string(); assert!( @@ -1508,7 +1517,7 @@ mod tests { #[test] fn test_resolve_password_explicit_whitespace_fails() { - let result = resolve_private_key_password(Some(" ")); + let result = resolve_private_key_password(Some(" "), None); assert!( result.is_err(), "whitespace-only explicit password should fail" diff --git a/jacs/src/crypt/mod.rs b/jacs/src/crypt/mod.rs index 9c06c884..fac94886 100644 --- a/jacs/src/crypt/mod.rs +++ b/jacs/src/crypt/mod.rs @@ -255,11 +255,12 @@ impl Agent { }; (raw, ks) } else { - let decrypted = - crate::agent::decrypt_with_agent_password(binding.expose_secret(), self.password()) - .map_err(|e| { - format!("Byte signing failed: could not decrypt private key: {}", e) - })?; + let decrypted = crate::agent::decrypt_with_agent_password( + binding.expose_secret(), + self.password(), + self.id.as_deref(), + ) + .map_err(|e| format!("Byte signing failed: could not decrypt private key: {}", e))?; ( decrypted.as_slice().to_vec(), Box::new(self.build_fs_store()?) as Box, @@ -359,6 +360,7 @@ impl KeyManager for Agent { let decrypted = crate::agent::decrypt_with_agent_password( binding.expose_secret(), self.password(), + self.id.as_deref(), ) .map_err(|e| { format!( @@ -453,15 +455,18 @@ impl KeyManager for Agent { }; (raw, ks) } else { - let decrypted = - crate::agent::decrypt_with_agent_password(binding.expose_secret(), self.password()) - .map_err(|e| { - format!( - "Batch signing failed: could not decrypt private key. \ + let decrypted = crate::agent::decrypt_with_agent_password( + binding.expose_secret(), + self.password(), + self.id.as_deref(), + ) + .map_err(|e| { + format!( + "Batch signing failed: could not decrypt private key. \ Check that the password is correct. Error: {}", - e - ) - })?; + e + ) + })?; ( decrypted.as_slice().to_vec(), Box::new(self.build_fs_store()?) as Box, diff --git a/jacs/src/keystore/keychain.rs b/jacs/src/keystore/keychain.rs index c5bef118..357b6c42 100644 --- a/jacs/src/keystore/keychain.rs +++ b/jacs/src/keystore/keychain.rs @@ -4,13 +4,15 @@ //! to store/retrieve JACS private key passwords in the OS credential store //! (macOS Keychain, Linux Secret Service via D-Bus). //! +//! Every password is keyed by agent_id so that multiple agents can coexist +//! without overwriting each other. +//! //! When the feature is disabled, stub functions return `None`/errors so callers //! can call `keychain::get_password()` unconditionally without `#[cfg]` at every call site. use crate::error::JacsError; pub const SERVICE_NAME: &str = "jacs-private-key"; -pub const DEFAULT_USER: &str = "default"; // ============================================================================= // Feature-enabled implementation @@ -45,24 +47,19 @@ mod inner { } } - fn make_entry(user: &str) -> Result { - Entry::new(SERVICE_NAME, user).map_err(map_keyring_error) + fn make_entry(agent_id: &str) -> Result { + Entry::new(SERVICE_NAME, agent_id).map_err(map_keyring_error) } - pub fn store_password(password: &str) -> Result<(), JacsError> { + pub fn store_password(agent_id: &str, password: &str) -> Result<(), JacsError> { if is_runtime_disabled() { return Ok(()); // silently skip when keychain is disabled } - if password.is_empty() { + if agent_id.is_empty() { return Err(JacsError::ConfigError( - "Cannot store an empty password in the OS keychain.".to_string(), + "Cannot store password in OS keychain without an agent_id.".to_string(), )); } - let entry = make_entry(DEFAULT_USER)?; - entry.set_password(password).map_err(map_keyring_error) - } - - pub fn store_password_for_agent(agent_id: &str, password: &str) -> Result<(), JacsError> { if password.is_empty() { return Err(JacsError::ConfigError( "Cannot store an empty password in the OS keychain.".to_string(), @@ -72,19 +69,13 @@ mod inner { entry.set_password(password).map_err(map_keyring_error) } - pub fn get_password() -> Result, JacsError> { + pub fn get_password(agent_id: &str) -> Result, JacsError> { if is_runtime_disabled() { return Ok(None); } - let entry = make_entry(DEFAULT_USER)?; - match entry.get_password() { - Ok(pw) => Ok(Some(pw)), - Err(KeyringError::NoEntry) => Ok(None), - Err(e) => Err(map_keyring_error(e)), + if agent_id.is_empty() { + return Ok(None); } - } - - pub fn get_password_for_agent(agent_id: &str) -> Result, JacsError> { let entry = make_entry(agent_id)?; match entry.get_password() { Ok(pw) => Ok(Some(pw)), @@ -93,16 +84,12 @@ mod inner { } } - pub fn delete_password() -> Result<(), JacsError> { - let entry = make_entry(DEFAULT_USER)?; - match entry.delete_credential() { - Ok(()) => Ok(()), - Err(KeyringError::NoEntry) => Ok(()), // idempotent - Err(e) => Err(map_keyring_error(e)), + pub fn delete_password(agent_id: &str) -> Result<(), JacsError> { + if agent_id.is_empty() { + return Err(JacsError::ConfigError( + "Cannot delete password from OS keychain without an agent_id.".to_string(), + )); } - } - - pub fn delete_password_for_agent(agent_id: &str) -> Result<(), JacsError> { let entry = make_entry(agent_id)?; match entry.delete_credential() { Ok(()) => Ok(()), @@ -128,36 +115,18 @@ mod inner { mod inner { use super::*; - pub fn store_password(_password: &str) -> Result<(), JacsError> { - Err(JacsError::ConfigError( - "OS keychain support is not enabled. Recompile with the 'keychain' feature flag." - .to_string(), - )) - } - - pub fn store_password_for_agent(_agent_id: &str, _password: &str) -> Result<(), JacsError> { + pub fn store_password(_agent_id: &str, _password: &str) -> Result<(), JacsError> { Err(JacsError::ConfigError( "OS keychain support is not enabled. Recompile with the 'keychain' feature flag." .to_string(), )) } - pub fn get_password() -> Result, JacsError> { + pub fn get_password(_agent_id: &str) -> Result, JacsError> { Ok(None) } - pub fn get_password_for_agent(_agent_id: &str) -> Result, JacsError> { - Ok(None) - } - - pub fn delete_password() -> Result<(), JacsError> { - Err(JacsError::ConfigError( - "OS keychain support is not enabled. Recompile with the 'keychain' feature flag." - .to_string(), - )) - } - - pub fn delete_password_for_agent(_agent_id: &str) -> Result<(), JacsError> { + pub fn delete_password(_agent_id: &str) -> Result<(), JacsError> { Err(JacsError::ConfigError( "OS keychain support is not enabled. Recompile with the 'keychain' feature flag." .to_string(), @@ -191,12 +160,7 @@ mod tests { #[test] fn test_stub_get_returns_none() { - assert!(get_password().unwrap().is_none()); - } - - #[test] - fn test_stub_get_for_agent_returns_none() { - assert!(get_password_for_agent("test-agent").unwrap().is_none()); + assert!(get_password("some-agent").unwrap().is_none()); } #[test] @@ -206,12 +170,12 @@ mod tests { #[test] fn test_stub_store_returns_error() { - assert!(store_password("test").is_err()); + assert!(store_password("some-agent", "test").is_err()); } #[test] fn test_stub_delete_returns_error() { - assert!(delete_password().is_err()); + assert!(delete_password("some-agent").is_err()); } } @@ -224,22 +188,20 @@ mod tests { use super::*; use serial_test::serial; - // Use a unique service-scoped user to avoid collisions with real data. - // Tests clean up after themselves. - const TEST_USER: &str = "__jacs_test_keychain__"; - const TEST_AGENT: &str = "__jacs_test_agent_id__"; + const TEST_AGENT_A: &str = "__jacs_test_agent_a__"; + const TEST_AGENT_B: &str = "__jacs_test_agent_b__"; fn cleanup() { - let _ = delete_password(); - let _ = delete_password_for_agent(TEST_AGENT); + let _ = delete_password(TEST_AGENT_A); + let _ = delete_password(TEST_AGENT_B); } #[test] #[serial(keychain_env)] fn test_store_and_get_password() { cleanup(); - store_password("Test!Strong#Pass123").unwrap(); - let pw = get_password().unwrap(); + store_password(TEST_AGENT_A, "Test!Strong#Pass123").unwrap(); + let pw = get_password(TEST_AGENT_A).unwrap(); assert_eq!(pw, Some("Test!Strong#Pass123".to_string())); cleanup(); } @@ -248,7 +210,7 @@ mod tests { #[serial(keychain_env)] fn test_get_password_when_none_stored() { cleanup(); - let pw = get_password().unwrap(); + let pw = get_password(TEST_AGENT_A).unwrap(); assert!(pw.is_none()); } @@ -256,9 +218,9 @@ mod tests { #[serial(keychain_env)] fn test_delete_password() { cleanup(); - store_password("Test!Strong#Pass123").unwrap(); - delete_password().unwrap(); - let pw = get_password().unwrap(); + store_password(TEST_AGENT_A, "Test!Strong#Pass123").unwrap(); + delete_password(TEST_AGENT_A).unwrap(); + let pw = get_password(TEST_AGENT_A).unwrap(); assert!(pw.is_none()); } @@ -266,8 +228,8 @@ mod tests { #[serial(keychain_env)] fn test_delete_when_none_stored() { cleanup(); - // Should not error — idempotent - delete_password().unwrap(); + // Should not error -- idempotent + delete_password(TEST_AGENT_A).unwrap(); } #[test] @@ -280,7 +242,14 @@ mod tests { #[serial(keychain_env)] fn test_store_empty_password_rejected() { cleanup(); - let result = store_password(""); + let result = store_password(TEST_AGENT_A, ""); + assert!(result.is_err()); + } + + #[test] + #[serial(keychain_env)] + fn test_store_empty_agent_id_rejected() { + let result = store_password("", "SomePassword!123"); assert!(result.is_err()); } @@ -288,30 +257,33 @@ mod tests { #[serial(keychain_env)] fn test_store_overwrite() { cleanup(); - store_password("PasswordA!123").unwrap(); - store_password("PasswordB!456").unwrap(); - let pw = get_password().unwrap(); + store_password(TEST_AGENT_A, "PasswordA!123").unwrap(); + store_password(TEST_AGENT_A, "PasswordB!456").unwrap(); + let pw = get_password(TEST_AGENT_A).unwrap(); assert_eq!(pw, Some("PasswordB!456".to_string())); cleanup(); } #[test] #[serial(keychain_env)] - fn test_agent_specific_password() { + fn test_agent_passwords_are_isolated() { cleanup(); - store_password("Default!Pass123").unwrap(); - store_password_for_agent(TEST_AGENT, "Agent!Pass456").unwrap(); + store_password(TEST_AGENT_A, "PasswordA!123").unwrap(); + store_password(TEST_AGENT_B, "PasswordB!456").unwrap(); - assert_eq!(get_password().unwrap(), Some("Default!Pass123".to_string())); assert_eq!( - get_password_for_agent(TEST_AGENT).unwrap(), - Some("Agent!Pass456".to_string()) + get_password(TEST_AGENT_A).unwrap(), + Some("PasswordA!123".to_string()) + ); + assert_eq!( + get_password(TEST_AGENT_B).unwrap(), + Some("PasswordB!456".to_string()) ); - delete_password_for_agent(TEST_AGENT).unwrap(); - assert!(get_password_for_agent(TEST_AGENT).unwrap().is_none()); - // Default still intact - assert!(get_password().unwrap().is_some()); + delete_password(TEST_AGENT_B).unwrap(); + assert!(get_password(TEST_AGENT_B).unwrap().is_none()); + // Agent A still intact + assert!(get_password(TEST_AGENT_A).unwrap().is_some()); cleanup(); } } @@ -329,16 +301,24 @@ mod tests { #[test] fn test_store_empty_password_rejected() { - let result = store_password(""); + let result = store_password("test-agent", ""); assert!(result.is_err()); let err_msg = result.unwrap_err().to_string(); assert!(err_msg.contains("empty")); } #[test] - fn test_store_empty_password_for_agent_rejected() { - let result = store_password_for_agent("test", ""); + fn test_store_empty_agent_id_rejected() { + let result = store_password("", "SomePass!123"); assert!(result.is_err()); + let err_msg = result.unwrap_err().to_string(); + assert!(err_msg.contains("agent_id")); + } + + #[test] + fn test_get_empty_agent_id_returns_none() { + let result = get_password("").unwrap(); + assert!(result.is_none()); } } diff --git a/jacs/src/keystore/mod.rs b/jacs/src/keystore/mod.rs index 623652ef..9ee9851f 100644 --- a/jacs/src/keystore/mod.rs +++ b/jacs/src/keystore/mod.rs @@ -115,8 +115,11 @@ pub trait KeyStore: Send + Sync + fmt::Debug { /// or an error describing what the user needs to do. This is the single /// policy-enforcement point used by `save_private_key` to ensure keys are /// never written unencrypted. -pub fn require_encryption_password(explicit_password: Option<&str>) -> Result<(), JacsError> { - crate::crypt::aes_encrypt::resolve_private_key_password(explicit_password)?; +pub fn require_encryption_password( + explicit_password: Option<&str>, + agent_id: Option<&str>, +) -> Result<(), JacsError> { + crate::crypt::aes_encrypt::resolve_private_key_password(explicit_password, agent_id)?; Ok(()) } @@ -295,8 +298,10 @@ impl KeyStore for FsEncryptedStore { let pub_path = self.paths.public_key_path(); let final_priv_path = self.paths.private_key_enc_path(); - let resolved_pw = - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref())?; + let resolved_pw = crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + None, + )?; let enc = crate::crypt::aes_encrypt::encrypt_private_key_with_password(&priv_key, &resolved_pw).map_err(|e| { format!( "Failed to encrypt private key for storage: {}. Check your JACS_PRIVATE_KEY_PASSWORD meets the security requirements.", @@ -334,8 +339,10 @@ impl KeyStore for FsEncryptedStore { let storage = Self::storage_for_key_dir(key_dir)?; let priv_path = self.paths.private_key_path(); let enc_path = self.paths.private_key_enc_path(); - let _password = - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref())?; + let _password = crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + None, + )?; let bytes = storage.get_file(&priv_path, None).or_else(|e1| { storage.get_file(&enc_path, None).map_err(|e2| { @@ -349,8 +356,10 @@ impl KeyStore for FsEncryptedStore { })?; // Use secure decryption with agent-scoped password if available - let resolved_pw = - crate::crypt::aes_encrypt::resolve_private_key_password(self.password.as_deref())?; + let resolved_pw = crate::crypt::aes_encrypt::resolve_private_key_password( + self.password.as_deref(), + None, + )?; let decrypted = crate::crypt::aes_encrypt::decrypt_private_key_secure_with_password( &bytes, &resolved_pw, diff --git a/jacs/src/simple/advanced.rs b/jacs/src/simple/advanced.rs index 0f9d1aee..2a1f1224 100644 --- a/jacs/src/simple/advanced.rs +++ b/jacs/src/simple/advanced.rs @@ -653,7 +653,7 @@ pub fn quickstart( } // Resolve password from env var, OS keychain, or fail with helpful message. - let password = crate::crypt::aes_encrypt::resolve_private_key_password(None)?; + let password = crate::crypt::aes_encrypt::resolve_private_key_password(None, None)?; // Use create_with_params for full control let algo = match algorithm.unwrap_or("pq2025") { @@ -678,9 +678,12 @@ pub fn quickstart( // Store the password in the OS keychain when available (PRD Decision #1). // This means future operations "just work" without env vars or password files. if crate::keystore::keychain::is_available() { - match crate::keystore::keychain::store_password(&password) { + match crate::keystore::keychain::store_password(&result.1.agent_id, &password) { Ok(()) => { - info!("Password stored in OS keychain (service: jacs-private-key)"); + info!( + "Password stored in OS keychain (service: jacs-private-key, agent: {})", + result.1.agent_id + ); } Err(e) => { warn!("Could not store password in OS keychain: {}", e); diff --git a/jacs/src/simple/core.rs b/jacs/src/simple/core.rs index eab8e1aa..7fcfa92d 100644 --- a/jacs/src/simple/core.rs +++ b/jacs/src/simple/core.rs @@ -416,7 +416,7 @@ impl SimpleAgent { let password = if !params.password.is_empty() { params.password.clone() } else { - match crate::crypt::aes_encrypt::resolve_private_key_password(None) { + match crate::crypt::aes_encrypt::resolve_private_key_password(None, None) { Ok(pw) if !pw.is_empty() => pw, Ok(_) => { return Err(JacsError::ConfigError( diff --git a/jacs/tests/keychain_linux_tests.rs b/jacs/tests/keychain_linux_tests.rs index 3f345d5a..bebef06e 100644 --- a/jacs/tests/keychain_linux_tests.rs +++ b/jacs/tests/keychain_linux_tests.rs @@ -1,7 +1,7 @@ //! Linux keychain integration tests. //! //! These tests exercise the `keyring` crate's `sync-secret-service` backend -//! (D-Bus Secret Service — GNOME Keyring, KDE Wallet, KeePassXC) on Linux. +//! (D-Bus Secret Service -- GNOME Keyring, KDE Wallet, KeePassXC) on Linux. //! //! **Mock backend (CI-safe):** //! Tests gated with `#[cfg(all(target_os = "linux", feature = "keychain-tests"))]` @@ -20,6 +20,9 @@ use jacs::crypt::aes_encrypt::resolve_private_key_password; use jacs::keystore::keychain; use serial_test::serial; +const TEST_AGENT: &str = "__test_linux_agent__"; +const TEST_PASSWORD: &str = "Test!LinuxKeychain#Str0ng2026"; + /// RAII guard that restores JACS_PRIVATE_KEY_PASSWORD env var on drop. struct EnvGuard { previous_password: Option, @@ -65,37 +68,28 @@ impl Drop for EnvGuard { } fn cleanup() { - let _ = keychain::delete_password(); + let _ = keychain::delete_password(TEST_AGENT); } -const TEST_PASSWORD: &str = "Test!LinuxKeychain#Str0ng2026"; - // ============================================================================= // Mock-backend tests (always safe to run in headless CI) // ============================================================================= -// NOTE: These tests exercise the keychain module's store/get/delete functions. -// On Linux in CI, the real Secret Service backend may not be available. -// The keychain module will return errors from Entry::new() if D-Bus is missing, -// which is acceptable — these tests verify the code paths handle that gracefully. -// For full end-to-end keychain testing on Linux, set JACS_TEST_REAL_KEYRING=1 -// and ensure a D-Bus session with keyring daemon is running. - #[test] #[serial] fn test_linux_keychain_store_and_retrieve() { cleanup(); - // Attempt to store — may fail if no D-Bus session - match keychain::store_password(TEST_PASSWORD) { + // Attempt to store -- may fail if no D-Bus session + match keychain::store_password(TEST_AGENT, TEST_PASSWORD) { Ok(()) => { // Stored successfully, verify retrieval - let pw = keychain::get_password().unwrap(); + let pw = keychain::get_password(TEST_AGENT).unwrap(); assert_eq!(pw, Some(TEST_PASSWORD.to_string())); cleanup(); } Err(e) => { - // Expected in headless CI without D-Bus — the test verifies graceful error handling + // Expected in headless CI without D-Bus eprintln!("Skipping real keychain test (no D-Bus session): {}", e); } } @@ -106,11 +100,11 @@ fn test_linux_keychain_store_and_retrieve() { fn test_linux_keychain_delete() { cleanup(); - match keychain::store_password(TEST_PASSWORD) { + match keychain::store_password(TEST_AGENT, TEST_PASSWORD) { Ok(()) => { // Delete and verify - keychain::delete_password().unwrap(); - let pw = keychain::get_password().unwrap(); + keychain::delete_password(TEST_AGENT).unwrap(); + let pw = keychain::get_password(TEST_AGENT).unwrap(); assert!(pw.is_none()); } Err(e) => { @@ -128,12 +122,12 @@ fn test_linux_keychain_resolve_password_falls_back_to_keychain() { let _guard = EnvGuard::new(); cleanup(); - match keychain::store_password(TEST_PASSWORD) { + match keychain::store_password(TEST_AGENT, TEST_PASSWORD) { Ok(()) => { // Unset env var so resolve_private_key_password falls back to keychain _guard.unset_password(); - let pw = resolve_private_key_password().unwrap(); + let pw = resolve_private_key_password(None, Some(TEST_AGENT)).unwrap(); assert_eq!(pw, TEST_PASSWORD); cleanup(); @@ -153,7 +147,7 @@ fn test_linux_keychain_env_var_takes_priority() { let _guard = EnvGuard::new(); cleanup(); - match keychain::store_password("KeychainPassword!Linux123") { + match keychain::store_password(TEST_AGENT, "KeychainPassword!Linux123") { Ok(()) => { // Set a different password in env var unsafe { @@ -161,7 +155,7 @@ fn test_linux_keychain_env_var_takes_priority() { } // resolve should prefer env var - let pw = resolve_private_key_password().unwrap(); + let pw = resolve_private_key_password(None, Some(TEST_AGENT)).unwrap(); assert_eq!(pw, "EnvVarPassword!Linux456"); cleanup(); @@ -178,7 +172,7 @@ fn test_linux_keychain_respects_disabled_backend() { let _guard = EnvGuard::new(); cleanup(); - match keychain::store_password(TEST_PASSWORD) { + match keychain::store_password(TEST_AGENT, TEST_PASSWORD) { Ok(()) => { // Unset password env var _guard.unset_password(); @@ -188,8 +182,8 @@ fn test_linux_keychain_respects_disabled_backend() { std::env::set_var("JACS_KEYCHAIN_BACKEND", "disabled"); } - // Should fail — keychain is disabled and no env var - let result = resolve_private_key_password(); + // Should fail -- keychain is disabled and no env var + let result = resolve_private_key_password(None, Some(TEST_AGENT)); assert!(result.is_err()); cleanup(); @@ -226,14 +220,14 @@ mod real_backend_tests { } cleanup(); - keychain::store_password(TEST_PASSWORD) - .expect("Failed to store in real keyring — is D-Bus session + daemon running?"); + keychain::store_password(TEST_AGENT, TEST_PASSWORD) + .expect("Failed to store in real keyring -- is D-Bus session + daemon running?"); - let pw = keychain::get_password().unwrap(); + let pw = keychain::get_password(TEST_AGENT).unwrap(); assert_eq!(pw, Some(TEST_PASSWORD.to_string())); - keychain::delete_password().unwrap(); - let pw = keychain::get_password().unwrap(); + keychain::delete_password(TEST_AGENT).unwrap(); + let pw = keychain::get_password(TEST_AGENT).unwrap(); assert!(pw.is_none()); } } diff --git a/jacs/tests/keychain_macos_tests.rs b/jacs/tests/keychain_macos_tests.rs index dddaa081..eaf7ef91 100644 --- a/jacs/tests/keychain_macos_tests.rs +++ b/jacs/tests/keychain_macos_tests.rs @@ -13,6 +13,9 @@ use jacs::simple::{CreateAgentParams, SimpleAgent}; use serial_test::serial; use tempfile::TempDir; +const TEST_AGENT: &str = "__test_macos_agent__"; +const TEST_PASSWORD: &str = "Test!Keychain#Str0ng2026"; + /// RAII guard that restores JACS_PRIVATE_KEY_PASSWORD and JACS_KEYCHAIN_BACKEND env vars on drop. struct EnvGuard { previous_password: Option, @@ -61,11 +64,9 @@ impl Drop for EnvGuard { } fn cleanup() { - let _ = keychain::delete_password(); + let _ = keychain::delete_password(TEST_AGENT); } -const TEST_PASSWORD: &str = "Test!Keychain#Str0ng2026"; - #[test] #[serial] fn test_macos_keychain_resolve_password_prefers_env_var() { @@ -73,7 +74,7 @@ fn test_macos_keychain_resolve_password_prefers_env_var() { cleanup(); // Store one password in keychain - keychain::store_password("KeychainPassword!123").unwrap(); + keychain::store_password(TEST_AGENT, "KeychainPassword!123").unwrap(); // Set a different password in env var unsafe { @@ -81,7 +82,7 @@ fn test_macos_keychain_resolve_password_prefers_env_var() { } // resolve should prefer env var - let pw = resolve_private_key_password().unwrap(); + let pw = resolve_private_key_password(None, Some(TEST_AGENT)).unwrap(); assert_eq!(pw, "EnvVarPassword!456"); cleanup(); @@ -94,13 +95,13 @@ fn test_macos_keychain_resolve_password_falls_back_to_keychain() { cleanup(); // Store password in keychain - keychain::store_password(TEST_PASSWORD).unwrap(); + keychain::store_password(TEST_AGENT, TEST_PASSWORD).unwrap(); // Unset env var _guard.unset(); // resolve should fall back to keychain - let pw = resolve_private_key_password().unwrap(); + let pw = resolve_private_key_password(None, Some(TEST_AGENT)).unwrap(); assert_eq!(pw, TEST_PASSWORD); cleanup(); @@ -115,7 +116,7 @@ fn test_macos_keychain_resolve_password_fails_when_both_empty() { // No env var, no keychain _guard.unset(); - let result = resolve_private_key_password(); + let result = resolve_private_key_password(None, Some(TEST_AGENT)); assert!(result.is_err()); let err = result.unwrap_err().to_string(); assert!(err.contains("No private key password available")); @@ -123,6 +124,25 @@ fn test_macos_keychain_resolve_password_fails_when_both_empty() { cleanup(); } +#[test] +#[serial] +fn test_macos_keychain_resolve_skips_keychain_without_agent_id() { + let _guard = EnvGuard::new(); + cleanup(); + + // Store password in keychain + keychain::store_password(TEST_AGENT, TEST_PASSWORD).unwrap(); + + // Unset env var + _guard.unset(); + + // resolve with no agent_id should NOT find the keychain password + let result = resolve_private_key_password(None, None); + assert!(result.is_err()); + + cleanup(); +} + #[test] #[serial] fn test_macos_keychain_resolve_respects_disabled_backend() { @@ -130,7 +150,7 @@ fn test_macos_keychain_resolve_respects_disabled_backend() { cleanup(); // Store password in keychain - keychain::store_password(TEST_PASSWORD).unwrap(); + keychain::store_password(TEST_AGENT, TEST_PASSWORD).unwrap(); // Unset password env var _guard.unset(); @@ -140,8 +160,8 @@ fn test_macos_keychain_resolve_respects_disabled_backend() { std::env::set_var("JACS_KEYCHAIN_BACKEND", "disabled"); } - // Should fail — keychain is disabled and no env var - let result = resolve_private_key_password(); + // Should fail -- keychain is disabled and no env var + let result = resolve_private_key_password(None, Some(TEST_AGENT)); assert!(result.is_err()); // EnvGuard restores JACS_KEYCHAIN_BACKEND on drop @@ -149,7 +169,7 @@ fn test_macos_keychain_resolve_respects_disabled_backend() { } /// End-to-end test: store password in keychain FIRST, then create agent, -/// sign, verify — all without JACS_PRIVATE_KEY_PASSWORD env var. +/// sign, verify -- all without JACS_PRIVATE_KEY_PASSWORD env var. /// This proves the full stack works from keychain to signed document. #[test] #[serial] @@ -159,16 +179,18 @@ fn test_macos_keychain_agent_sign_verify_no_env_var() { let password = "Test!EndToEnd#Str0ng2026"; - // 1. Store password in keychain and unset env var - keychain::store_password(password).unwrap(); + // 1. Store password in keychain under a known agent_id and unset env var + let agent_id = "__test_e2e_agent__"; + keychain::store_password(agent_id, password).unwrap(); _guard.unset(); // Remove JACS_PRIVATE_KEY_PASSWORD from env AND jenv store // Sanity check: keychain has the password, env var does not assert_eq!( - keychain::get_password().unwrap(), + keychain::get_password(agent_id).unwrap(), Some(password.to_string()) ); - let resolved = resolve_private_key_password().expect("resolve should find keychain password"); + let resolved = resolve_private_key_password(None, Some(agent_id)) + .expect("resolve should find keychain password"); assert_eq!(resolved, password); // 2. Create agent in a temp directory. The password param is required for @@ -188,13 +210,13 @@ fn test_macos_keychain_agent_sign_verify_no_env_var() { .config_path(config_path.to_str().unwrap()) .build(); let (_agent, _info) = SimpleAgent::create_with_params(params).expect("create agent"); - // Drop the agent — we'll reload from disk to prove keychain path works + // Drop the agent -- we'll reload from disk to prove keychain path works drop(_agent); // 3. Ensure env var is still cleared (create_with_params restores on drop) _guard.unset(); - // 4. Load agent from disk — password resolved via keychain + // 4. Load agent from disk -- password resolved via keychain let loaded_agent = SimpleAgent::load(Some(config_path.to_str().unwrap()), None) .expect("load agent from disk with keychain password"); @@ -211,5 +233,6 @@ fn test_macos_keychain_agent_sign_verify_no_env_var() { result.errors ); + let _ = keychain::delete_password(agent_id); cleanup(); } diff --git a/jacs/tests/security_hardening_tests.rs b/jacs/tests/security_hardening_tests.rs index 772e3a34..742242fd 100644 --- a/jacs/tests/security_hardening_tests.rs +++ b/jacs/tests/security_hardening_tests.rs @@ -251,7 +251,7 @@ mod save_private_key_no_plaintext { #[serial] fn require_password_rejects_empty() { let _guard = EnvVarGuard::unset("JACS_PRIVATE_KEY_PASSWORD"); - let result = jacs::keystore::require_encryption_password(None); + let result = jacs::keystore::require_encryption_password(None, None); assert!( result.is_err(), "Must reject missing JACS_PRIVATE_KEY_PASSWORD" @@ -262,7 +262,7 @@ mod save_private_key_no_plaintext { #[serial] fn require_password_rejects_whitespace_only() { let _guard = EnvVarGuard::set("JACS_PRIVATE_KEY_PASSWORD", " "); - let result = jacs::keystore::require_encryption_password(None); + let result = jacs::keystore::require_encryption_password(None, None); assert!( result.is_err(), "Must reject whitespace-only JACS_PRIVATE_KEY_PASSWORD" @@ -273,7 +273,7 @@ mod save_private_key_no_plaintext { #[serial] fn require_password_accepts_valid() { let _guard = EnvVarGuard::set("JACS_PRIVATE_KEY_PASSWORD", "strong-password-123"); - let result = jacs::keystore::require_encryption_password(None); + let result = jacs::keystore::require_encryption_password(None, None); assert!(result.is_ok(), "Must accept valid password"); } } From ff9345fc7949657da0432a58694e7087c421cde2 Mon Sep 17 00:00:00 2001 From: Jonathan Hendler Date: Sun, 22 Mar 2026 14:45:26 -0700 Subject: [PATCH 2/3] storage cleanup --- jacs/src/simple/core.rs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/jacs/src/simple/core.rs b/jacs/src/simple/core.rs index 7fcfa92d..c979358b 100644 --- a/jacs/src/simple/core.rs +++ b/jacs/src/simple/core.rs @@ -1100,6 +1100,30 @@ impl SimpleAgent { Ok(agent_id.to_string()) } + /// Replace the agent's document storage backend. + /// + /// After loading an agent from a filesystem config, call this with a + /// `"memory"` backend to avoid filesystem writes for subsequent + /// `sign_message()` / `create_document_and_load()` calls. + /// + /// # Example + /// + /// ```rust,ignore + /// use jacs::storage::MultiStorage; + /// + /// let agent = SimpleAgent::load(Some("./jacs.config.json"), None)?; + /// let mem = MultiStorage::new("memory".to_string())?; + /// agent.set_storage(mem)?; + /// // sign_message() now persists documents in-memory only + /// ``` + pub fn set_storage(&self, storage: crate::storage::MultiStorage) -> Result<(), JacsError> { + let mut agent = self.agent.lock().map_err(|e| JacsError::Internal { + message: format!("Failed to acquire agent lock: {}", e), + })?; + agent.set_storage(storage); + Ok(()) + } + /// Signs a file with optional content embedding. /// /// # IMPORTANT: Signing is Sacred From e147d7877c11584e645e3bb4bfbdd35a08822810 Mon Sep 17 00:00:00 2001 From: Jonathan Hendler Date: Sun, 22 Mar 2026 14:53:58 -0700 Subject: [PATCH 3/3] bump jacs versions --- CHANGELOG.md | 4 ++++ binding-core/Cargo.toml | 4 ++-- jacs-cli/Cargo.toml | 6 +++--- jacs-duckdb/Cargo.toml | 4 ++-- jacs-mcp/Cargo.toml | 6 +++--- jacs-mcp/contract/jacs-mcp-contract.json | 2 +- jacs-postgresql/Cargo.toml | 4 ++-- jacs-redb/Cargo.toml | 4 ++-- jacs-surrealdb/Cargo.toml | 4 ++-- jacs/Cargo.toml | 2 +- jacsgo/lib/Cargo.toml | 2 +- jacsnpm/Cargo.toml | 2 +- jacsnpm/package.json | 2 +- jacspy/Cargo.toml | 2 +- jacspy/pyproject.toml | 2 +- 15 files changed, 27 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfe5a792..b8efa7ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.9.10 + +(unreleased) + ## 0.9.9 (unreleased) diff --git a/binding-core/Cargo.toml b/binding-core/Cargo.toml index 5be81dbe..18259a03 100644 --- a/binding-core/Cargo.toml +++ b/binding-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-binding-core" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" resolver = "3" @@ -19,7 +19,7 @@ attestation = ["jacs/attestation"] pq-tests = [] [dependencies] -jacs = { version = "0.9.9", path = "../jacs" } +jacs = { version = "0.9.10", path = "../jacs" } serde_json = "1.0" base64 = "0.22.1" serde = { version = "1.0", features = ["derive"] } diff --git a/jacs-cli/Cargo.toml b/jacs-cli/Cargo.toml index ab98ddb7..a557c5c9 100644 --- a/jacs-cli/Cargo.toml +++ b/jacs-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-cli" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" description = "JACS CLI: command-line interface for JSON AI Communication Standard" @@ -23,8 +23,8 @@ attestation = ["jacs/attestation"] keychain = ["jacs/keychain"] [dependencies] -jacs = { version = "0.9.9", path = "../jacs" } -jacs-mcp = { version = "0.9.9", path = "../jacs-mcp", features = ["mcp", "full-tools"], optional = true } +jacs = { version = "0.9.10", path = "../jacs" } +jacs-mcp = { version = "0.9.10", path = "../jacs-mcp", features = ["mcp", "full-tools"], optional = true } clap = { version = "4.5.4", features = ["derive", "cargo"] } rpassword = "7.3.1" reqwest = { version = "0.13.2", default-features = false, features = ["blocking", "json", "rustls"] } diff --git a/jacs-duckdb/Cargo.toml b/jacs-duckdb/Cargo.toml index 06a35fdd..a3f90745 100644 --- a/jacs-duckdb/Cargo.toml +++ b/jacs-duckdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-duckdb" -version = "0.1.3" +version = "0.1.4" edition = "2024" rust-version.workspace = true description = "DuckDB storage backend for JACS documents" @@ -13,7 +13,7 @@ keywords = ["cryptography", "json", "duckdb", "storage"] categories = ["database", "data-structures"] [dependencies] -jacs = { version = "0.9.9", path = "../jacs", default-features = false } +jacs = { version = "0.9.10", path = "../jacs", default-features = false } duckdb = { version = "1.4", features = ["bundled", "json"] } serde_json = "1.0" diff --git a/jacs-mcp/Cargo.toml b/jacs-mcp/Cargo.toml index b249e68e..4f4f92bf 100644 --- a/jacs-mcp/Cargo.toml +++ b/jacs-mcp/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-mcp" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" description = "MCP server for JACS: data provenance and cryptographic signing of agent state" @@ -45,8 +45,8 @@ tracing = "0.1" tracing-subscriber = { version = "0.3", features = ["fmt", "env-filter"] } rmcp = { version = "0.12", features = ["client", "server", "transport-io", "transport-child-process", "macros"], optional = true } tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "time"], optional = true } -jacs = { version = "0.9.9", path = "../jacs", default-features = true } -jacs-binding-core = { version = "0.9.9", path = "../binding-core", features = ["a2a"] } +jacs = { version = "0.9.10", path = "../jacs", default-features = true } +jacs-binding-core = { version = "0.9.10", path = "../binding-core", features = ["a2a"] } serde = { version = "1", features = ["derive"] } serde_json = "1" schemars = "1.0" diff --git a/jacs-mcp/contract/jacs-mcp-contract.json b/jacs-mcp/contract/jacs-mcp-contract.json index 1a79082e..6400757a 100644 --- a/jacs-mcp/contract/jacs-mcp-contract.json +++ b/jacs-mcp/contract/jacs-mcp-contract.json @@ -3,7 +3,7 @@ "server": { "name": "jacs-mcp", "title": "JACS MCP Server", - "version": "0.9.9", + "version": "0.9.10", "website_url": "https://humanassisted.github.io/JACS/", "instructions": "This MCP server provides data provenance and cryptographic signing for agent state files and agent-to-agent messaging. Agent state tools: jacs_sign_state (sign files), jacs_verify_state (verify integrity), jacs_load_state (load with verification), jacs_update_state (update and re-sign), jacs_list_state (list signed docs), jacs_adopt_state (adopt external files). Memory tools: jacs_memory_save (save a memory), jacs_memory_recall (search memories by query), jacs_memory_list (list all memories), jacs_memory_forget (soft-delete a memory), jacs_memory_update (update an existing memory). Messaging tools: jacs_message_send (create and sign a message), jacs_message_update (update and re-sign a message), jacs_message_agree (co-sign/agree to a message), jacs_message_receive (verify and extract a received message). Agent management: jacs_create_agent (create new agent with keys), jacs_reencrypt_key (rotate private key password). A2A artifacts: jacs_wrap_a2a_artifact (sign artifact with provenance), jacs_verify_a2a_artifact (verify wrapped artifact), jacs_assess_a2a_agent (assess remote agent trust level). A2A discovery: jacs_export_agent_card (export Agent Card), jacs_generate_well_known (generate .well-known documents), jacs_export_agent (export full agent JSON). Trust store: jacs_trust_agent (add agent to trust store), jacs_untrust_agent (remove from trust store, requires JACS_MCP_ALLOW_UNTRUST=true), jacs_list_trusted_agents (list all trusted agent IDs), jacs_is_trusted (check if agent is trusted), jacs_get_trusted_agent (get trusted agent JSON). Attestation: jacs_attest_create (create signed attestation with claims), jacs_attest_verify (verify attestation, optionally with evidence checks), jacs_attest_lift (lift signed document into attestation), jacs_attest_export_dsse (export attestation as DSSE envelope). Security: jacs_audit (read-only security audit and health checks). Audit trail: jacs_audit_log (record events as signed audit entries), jacs_audit_query (search audit trail by action, target, time range), jacs_audit_export (export audit trail as signed bundle). Search: jacs_search (unified search across all signed documents)." }, diff --git a/jacs-postgresql/Cargo.toml b/jacs-postgresql/Cargo.toml index 31647244..0a522e2a 100644 --- a/jacs-postgresql/Cargo.toml +++ b/jacs-postgresql/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-postgresql" -version = "0.1.3" +version = "0.1.4" edition = "2024" rust-version.workspace = true description = "PostgreSQL storage backend for JACS documents" @@ -13,7 +13,7 @@ keywords = ["cryptography", "json", "postgresql", "storage"] categories = ["database", "data-structures"] [dependencies] -jacs = { version = "0.9.9", path = "../jacs", default-features = false } +jacs = { version = "0.9.10", path = "../jacs", default-features = false } sqlx = { version = "0.8.6", default-features = false, features = ["runtime-tokio-rustls", "postgres"] } tokio = { version = "1.0", features = ["rt-multi-thread"] } serde_json = "1.0" diff --git a/jacs-redb/Cargo.toml b/jacs-redb/Cargo.toml index 3c16be30..d75f99e4 100644 --- a/jacs-redb/Cargo.toml +++ b/jacs-redb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-redb" -version = "0.1.3" +version = "0.1.4" edition = "2024" rust-version.workspace = true readme.workspace = true @@ -13,7 +13,7 @@ categories.workspace = true description = "Redb (pure-Rust embedded KV) storage backend for JACS documents" [dependencies] -jacs = { version = "0.9.9", path = "../jacs", default-features = false } +jacs = { version = "0.9.10", path = "../jacs", default-features = false } redb = "3.1" chrono = "0.4.40" serde_json = "1.0" diff --git a/jacs-surrealdb/Cargo.toml b/jacs-surrealdb/Cargo.toml index cc6f957a..107978c7 100644 --- a/jacs-surrealdb/Cargo.toml +++ b/jacs-surrealdb/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs-surrealdb" -version = "0.1.3" +version = "0.1.4" edition = "2024" rust-version.workspace = true description = "SurrealDB storage backend for JACS documents" @@ -13,7 +13,7 @@ keywords = ["cryptography", "json", "surrealdb", "storage"] categories = ["database", "data-structures"] [dependencies] -jacs = { version = "0.9.9", path = "../jacs", default-features = false } +jacs = { version = "0.9.10", path = "../jacs", default-features = false } surrealdb = { version = "3.0.2", default-features = false, features = ["kv-mem"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/jacs/Cargo.toml b/jacs/Cargo.toml index d736f231..7c65be6a 100644 --- a/jacs/Cargo.toml +++ b/jacs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacs" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" resolver = "3" diff --git a/jacsgo/lib/Cargo.toml b/jacsgo/lib/Cargo.toml index 2f41dedc..946b06f4 100644 --- a/jacsgo/lib/Cargo.toml +++ b/jacsgo/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacsgo" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" resolver = "3" diff --git a/jacsnpm/Cargo.toml b/jacsnpm/Cargo.toml index 9bd1bfd7..f481126b 100644 --- a/jacsnpm/Cargo.toml +++ b/jacsnpm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacsnpm" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" resolver = "3" diff --git a/jacsnpm/package.json b/jacsnpm/package.json index 105b6e78..3b6d9699 100644 --- a/jacsnpm/package.json +++ b/jacsnpm/package.json @@ -1,6 +1,6 @@ { "name": "@hai.ai/jacs", - "version": "0.9.9", + "version": "0.9.10", "description": "JACS (JSON Agent Communication Standard) - Data provenance and cryptographic signing for AI agents", "main": "index.js", "types": "index.d.ts", diff --git a/jacspy/Cargo.toml b/jacspy/Cargo.toml index d866d7a5..6d3eb8b8 100644 --- a/jacspy/Cargo.toml +++ b/jacspy/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "jacspy" -version = "0.9.9" +version = "0.9.10" edition = "2024" rust-version = "1.93" resolver = "3" diff --git a/jacspy/pyproject.toml b/jacspy/pyproject.toml index e1dc8521..7a282090 100644 --- a/jacspy/pyproject.toml +++ b/jacspy/pyproject.toml @@ -3,7 +3,7 @@ requires = ["maturin>=1.0,<2.0"] build-backend = "maturin" [project] name = "jacs" -version = "0.9.9" +version = "0.9.10" description = "JACS - JSON AI Communication Standard: Cryptographic signing and verification for AI agents." readme = "README.md" requires-python = ">=3.10"